/*
Theme Name: Snyder Editorial Services
Theme URI: https://snydereditorial.com
Author: Snyder Editorial Services
Author URI: https://snydereditorial.com
Description: A warm, professional theme for Snyder Editorial Services — editing and writing since 1999.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: snyder-editorial
Tags: one-column, two-columns, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* =========================================================
   CSS VARIABLES
   ========================================================= */
:root {
  --cream:       #FAF7F2;
  --warm-white:  #FFF9F4;
  --sand:        #EDE5D8;
  --tan:         #C9B99A;
  --terracotta:  #B5623E;
  --brick:       #8C3D22;
  --forest:      #2E4A35;
  --forest-light:#3D6347;
  --ink:         #1E1A16;
  --ink-mid:     #3D3530;
  --ink-light:   #6B5F56;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Serif 4', Georgia, serif;
  --font-sans:    'DM Sans', Helvetica, sans-serif;
  --max-width:    1160px;
  --radius:       4px;
  --transition:   0.25s ease;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--terracotta); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brick); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.25;
  font-weight: 700;
}

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
li { margin-bottom: 0.4rem; }

/* =========================================================
   UTILITY
   ========================================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 0.75rem;
}

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
}
.btn-primary:hover {
  background: var(--brick);
  border-color: var(--brick);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

/* =========================================================
   SITE HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--warm-white);
  border-bottom: 1px solid var(--sand);
  box-shadow: 0 1px 12px rgba(30,26,22,0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-branding a {
  display: flex;
  flex-direction: column;
  color: var(--ink);
}
.site-branding a:hover { color: var(--ink); }

.site-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}

.site-tagline {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-top: 2px;
}

.main-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.main-navigation a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-mid);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: var(--terracotta);
}

.nav-cta a {
  background: var(--terracotta) !important;
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav-cta a:hover {
  background: var(--brick) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all var(--transition);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: var(--forest);
  position: relative;
  overflow: hidden;
  padding: 7rem 0 6rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(181,98,62,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,185,154,0.12) 0%, transparent 60%);
}

.hero-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--tan);
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--warm-white);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero h1 em {
  color: var(--tan);
  font-style: italic;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(250,247,242,0.8);
  margin-bottom: 2.25rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-card {
  background: rgba(250,247,242,0.07);
  border: 1px solid rgba(201,185,154,0.25);
  border-radius: 8px;
  padding: 2.5rem;
  backdrop-filter: blur(4px);
}

.hero-card-stat {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201,185,154,0.2);
}
.hero-card-stat:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.hero-card-stat .number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--tan);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero-card-stat .label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(250,247,242,0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =========================================================
   INTRO BAND
   ========================================================= */
.intro-band {
  background: var(--sand);
  padding: 3rem 0;
  border-bottom: 1px solid var(--tan);
}

.intro-band .container {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.intro-band-quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--ink-mid);
  flex: 1;
  line-height: 1.6;
}

.intro-band-divider {
  width: 1px;
  height: 60px;
  background: var(--tan);
  flex-shrink: 0;
}

.intro-band-meta {
  flex-shrink: 0;
  text-align: right;
}

.intro-band-meta strong {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  display: block;
}

/* =========================================================
   SERVICES SECTION
   ========================================================= */
.services-section {
  padding: 6rem 0;
  background: var(--warm-white);
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--ink-light);
  max-width: 560px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 8px;
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(30,26,22,0.1);
  transform: translateY(-3px);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.7;
}

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about-section {
  padding: 6rem 0;
  background: var(--cream);
}

.about-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-frame {
  background: var(--sand);
  border-radius: 8px;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}

.about-frame-inner {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--tan) 0%, var(--forest) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  text-align: center;
  padding: 2rem;
}

.about-frame-inner svg {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--terracotta);
  color: #fff;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  box-shadow: 0 4px 20px rgba(181,98,62,0.35);
}

.about-badge .badge-year {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge .badge-text {
  font-size: 0.62rem;
  font-family: var(--font-sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.about-content h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--ink-mid);
  margin-bottom: 1.25rem;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--ink-mid);
}

.about-list li::before {
  content: '✦';
  color: var(--terracotta);
  font-size: 0.7rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-section {
  padding: 6rem 0;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '\201C';
  position: absolute;
  top: -2rem;
  left: 2rem;
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}

.testimonials-section .section-label { color: var(--tan); }
.testimonials-section h2 { color: var(--warm-white); margin-bottom: 3rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(250,247,242,0.06);
  border: 1px solid rgba(201,185,154,0.2);
  border-radius: 8px;
  padding: 2rem;
}

.testimonial-stars {
  color: var(--tan);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: var(--font-body);
  font-style: italic;
  color: rgba(250,247,242,0.85);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--tan);
  font-weight: 600;
}

.testimonial-title {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: rgba(201,185,154,0.65);
  margin-top: 2px;
}

/* =========================================================
   PROCESS / HOW IT WORKS
   ========================================================= */
.process-section {
  padding: 6rem 0;
  background: var(--warm-white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 1px;
  background: var(--sand);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sand);
  border: 2px solid var(--tan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--terracotta);
  margin: 0 auto 1.25rem;
  background: var(--cream);
}

.process-step h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--ink-light);
}

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  background: var(--terracotta);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 90% 50%, rgba(140,61,34,0.5) 0%, transparent 70%);
}

.cta-band .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-band h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  color: #fff;
  max-width: 500px;
}

.cta-band-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* =========================================================
   CONTACT SECTION
   ========================================================= */
.contact-section {
  padding: 6rem 0;
  background: var(--cream);
}

.contact-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--ink-light);
  margin-bottom: 2.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 2px;
}

.contact-detail-text span {
  color: var(--ink-mid);
}

.contact-form-wrap {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: 8px;
  padding: 2.5rem;
}

.contact-form-wrap h3 {
  font-size: 1.2rem;
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(181,98,62,0.12);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* =========================================================
   SITE FOOTER
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(250,247,242,0.65);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .site-title {
  color: var(--warm-white);
  font-size: 1.1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 0.75rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-white);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li { margin-bottom: 0.5rem; }

.footer-col ul a {
  color: rgba(250,247,242,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--tan); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(250,247,242,0.35);
}

.footer-bottom a { color: rgba(250,247,242,0.5); }
.footer-bottom a:hover { color: var(--tan); }

/* =========================================================
   PAGE TEMPLATES
   ========================================================= */

/* About Page */
.page-hero {
  background: var(--forest);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 70% at 80% 50%, rgba(181,98,62,0.15) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--warm-white); font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: rgba(250,247,242,0.75); margin-top: 1rem; font-size: 1.1rem; max-width: 540px; }
.breadcrumb {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(201,185,154,0.7);
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
}
.breadcrumb a { color: var(--tan); }
.breadcrumb a:hover { color: #fff; }

.page-content {
  padding: 5rem 0;
}

/* Services Page */
.services-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.service-full-card {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: 8px;
  padding: 2.5rem;
  transition: box-shadow var(--transition);
}

.service-full-card:hover {
  box-shadow: 0 6px 24px rgba(30,26,22,0.08);
}

.service-full-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--forest);
}

.service-full-card p {
  color: var(--ink-light);
  margin-bottom: 1.25rem;
}

.service-full-card ul {
  font-size: 0.9rem;
  color: var(--ink-mid);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .hero .container,
  .about-section .container,
  .contact-section .container {
    grid-template-columns: 1fr;
  }

  .hero-card { display: none; }

  .services-grid,
  .testimonials-grid { grid-template-columns: 1fr 1fr; }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .process-steps::before { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .cta-band .container {
    flex-direction: column;
    text-align: center;
  }

  .services-full-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }

  .services-grid,
  .testimonials-grid,
  .process-steps { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .intro-band .container {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .intro-band-divider { display: none; }

  .footer-grid { grid-template-columns: 1fr; }

  .main-navigation { display: none; }
  .menu-toggle { display: flex; }

  .main-navigation.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--warm-white);
    border-bottom: 1px solid var(--sand);
    padding: 1.5rem;
  }

  .main-navigation.open ul {
    flex-direction: column;
    gap: 0;
  }

  .main-navigation.open ul li { border-bottom: 1px solid var(--sand); padding: 0.75rem 0; }
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }
