/* ─── DESIGN TOKENS ─────────────────────────────────────────────────────── */
:root {
  --color-bg:           #0a0806;
  --color-surface:      #141008;
  --color-saffron:      #C4922A;
  --color-jade:         #4E8B72;
  --color-cream:        #F2EDE6;
  --color-muted:        #7A6E64;
  --color-border:       rgba(196, 146, 42, 0.15);
  --color-saffron-glow: rgba(196, 146, 42, 0.08);

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-serif:   'Playfair Display', serif;

  --max-width:    1100px;
  --section-pad:  100px;
  --nav-height:   72px;
  --radius:       4px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  background-color: var(--color-bg);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
fieldset { border: none; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }

h1 { font-size: clamp(3rem, 6.5vw, 6rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); font-weight: 700; color: var(--color-cream); margin-bottom: 1.5rem; }
h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.eyebrow--saffron { color: var(--color-saffron); }
.eyebrow--jade    { color: var(--color-jade); }

.body-text { color: rgba(242, 237, 230, 0.8); margin-bottom: 1.25rem; }

.section-subhead {
  color: var(--color-muted);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

/* ─── LAYOUT ─────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section--surface {
  background-color: var(--color-surface);
}

.section-rule {
  border: none;
  border-top: 1px solid rgba(78, 139, 114, 0.2);
  margin: 0;
}

/* ─── SCROLL REVEAL ──────────────────────────────────────────────────────── */
.reveal-section { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal-section.is-visible { opacity: 1; transform: none; }

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.btn--primary {
  background-color: var(--color-saffron);
  color: var(--color-bg);
}
.btn--primary:hover { background-color: #d4a030; }

.btn--outline {
  background-color: transparent;
  color: var(--color-cream);
  border: 1px solid var(--color-cream);
}
.btn--outline:hover {
  background-color: var(--color-saffron);
  border-color: var(--color-saffron);
  color: var(--color-bg);
}

.btn--dark {
  background-color: var(--color-bg);
  color: var(--color-saffron);
  border: 1px solid var(--color-saffron);
}
.btn--dark:hover {
  background-color: var(--color-saffron);
  color: var(--color-bg);
}

.btn--full { width: 100%; justify-content: center; }

/* ─── NAVIGATION ─────────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background-color 0.3s, backdrop-filter 0.3s;
}

#nav.scrolled {
  background-color: rgba(10, 8, 6, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--color-cream);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo-mark {
  color: var(--color-saffron);
  margin-left: 0.25em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(242, 237, 230, 0.8);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-saffron);
  transition: width 0.25s var(--ease-out);
}

.nav-links a:hover { color: var(--color-cream); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.55rem 1.25rem;
  border: 1px solid var(--color-saffron);
  border-radius: var(--radius);
  color: var(--color-saffron);
  white-space: nowrap;
  transition: background-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { background-color: var(--color-saffron); color: var(--color-bg); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--color-cream);
  transition: transform 0.25s, opacity 0.25s;
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: rgba(10, 8, 6, 0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-overlay.is-open { display: flex; }

.nav-overlay ul { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.nav-overlay a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-cream);
  transition: color 0.2s;
}
.nav-overlay a:hover { color: var(--color-saffron); }
.nav-overlay .nav-cta { font-family: var(--font-body); font-size: 0.9rem; }

.nav-overlay-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--color-muted);
  padding: 0.5rem;
  transition: color 0.2s;
}
.nav-overlay-close:hover { color: var(--color-cream); }

/* ─── HERO ───────────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(10,8,6,0.75) 0%, rgba(10,8,6,0.45) 100%),
    radial-gradient(ellipse at 30% 50%, #221608 0%, #0d0908 40%, #0a0806 70%);
  background-size: cover;
  background-position: center;
  /* When img/hero-bg.jpg is available:
     background-image: linear-gradient(...), url('img/hero-bg.jpg'); */
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
  opacity: 0.03;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  padding-top: calc(var(--nav-height) + 2rem);
}

.hero-eyebrow {
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) 0.2s forwards;
}

.hero-h1 {
  color: var(--color-cream);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}

.hero-word {
  display: block;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) forwards;
}
.hero-word:nth-child(1) { animation-delay: 0.4s; }
.hero-word:nth-child(2) { animation-delay: 0.6s; }

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(242, 237, 230, 0.8);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) 0.85s forwards;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) 1s forwards;
}

.hero-chevron {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-saffron);
  opacity: 0.7;
  z-index: 1;
  animation: bounce 2s ease-in-out 1.5s infinite;
  transition: opacity 0.2s;
}
.hero-chevron:hover { opacity: 1; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─── ABOUT ──────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  color: var(--color-saffron);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 0.3rem;
}

.about-visual {
  position: relative;
  height: 400px;
}

.about-card {
  position: absolute;
  width: 220px;
  height: 160px;
  border-radius: 6px;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  border: 1px solid var(--color-border);
}

.about-card span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-cream);
  letter-spacing: 0.05em;
}

.about-card--1 {
  top: 0; left: 0;
  background: linear-gradient(135deg, #1a1208 0%, #231a0c 100%);
  transform: rotate(-3deg);
  border-color: rgba(196,146,42,0.25);
}
.about-card--2 {
  top: 80px; left: 90px;
  background: linear-gradient(135deg, #0d1410 0%, #131e18 100%);
  transform: rotate(2deg);
  border-color: rgba(78,139,114,0.25);
  z-index: 1;
}
.about-card--3 {
  top: 190px; left: 20px;
  background: linear-gradient(135deg, #140f08 0%, #1c1508 100%);
  transform: rotate(-1deg);
}

/* ─── SERVICES ───────────────────────────────────────────────────────────── */
#services .container > h2,
#services .container > .eyebrow {
  text-align: left;
}

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

.service-card {
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background-color: var(--color-bg);
  border-left: 3px solid transparent;
  transition: border-left-color 0.25s, transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.service-card:hover {
  border-left-color: var(--color-jade);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.service-icon {
  width: 32px;
  height: 32px;
  color: var(--color-jade);
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 { color: var(--color-cream); margin-bottom: 0.75rem; }
.service-card p  { color: var(--color-muted); font-size: 0.9rem; line-height: 1.7; }

.services-cta-banner {
  background-color: var(--color-saffron);
  border-radius: 6px;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.services-cta-banner p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-bg);
  line-height: 1.5;
}

/* ─── PORTFOLIO ──────────────────────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.portfolio-card a {
  display: block;
  height: 100%;
}

.portfolio-card-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease-out);
}

.portfolio-card:hover .portfolio-card-img { transform: scale(1.05); }

.portfolio-card-img--veda {
  background: linear-gradient(135deg, #1a1208 0%, #2a1e0f 50%, #1a1208 100%);
  /* When img/portfolio/veda-yoga.jpg is available:
     background-image: url('img/portfolio/veda-yoga.jpg'); */
}
.portfolio-card-img--tracy {
  background: linear-gradient(135deg, #0d1410 0%, #141e18 50%, #0d1410 100%);
}
.portfolio-card-img--olga {
  background: linear-gradient(135deg, #0f0c1a 0%, #18123a 50%, #0f0c1a 100%);
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(196, 146, 42, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}

.portfolio-card:hover .portfolio-card-overlay { opacity: 1; }

.portfolio-card-overlay h3 {
  color: var(--color-bg);
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.portfolio-category {
  color: rgba(10,8,6,0.7);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.portfolio-footer {
  margin-top: 2rem;
  text-align: right;
}

.portfolio-more-link {
  color: var(--color-muted);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.portfolio-more-link:hover { color: var(--color-saffron); }

/* ─── PACKAGES ───────────────────────────────────────────────────────────── */
#packages { text-align: center; }
#packages h2 { text-align: center; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 0 0 2rem;
  text-align: left;
}

.package-card {
  position: relative;
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background-color: var(--color-surface);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.package-card--featured {
  border-color: var(--color-saffron);
  box-shadow: 0 0 0 1px var(--color-saffron), 0 8px 40px rgba(196,146,42,0.12);
}

.package-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-saffron);
  color: var(--color-bg);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.package-header h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-cream);
  margin-bottom: 0.5rem;
}

.price-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--color-saffron);
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.package-features li {
  font-size: 0.875rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--color-cream);
}

.package-features li::before {
  position: absolute;
  left: 0;
}

.feature--check { color: var(--color-cream); }
.feature--check::before { content: '✓'; color: var(--color-jade); }
.feature--none  { color: var(--color-muted); }
.feature--none::before  { content: '—'; color: var(--color-muted); }
.feature--info  { color: rgba(242,237,230,0.7); }
.feature--info::before  { content: '◦'; color: var(--color-saffron); }

.packages-footnote {
  font-size: 0.8rem;
  color: var(--color-muted);
  text-align: center;
  line-height: 1.8;
}

/* ─── TESTIMONIALS ───────────────────────────────────────────────────────── */
.testimonials-heading {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--color-cream);
  margin-bottom: 3.5rem;
}

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

.testimonial-card {
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background-color: var(--color-bg);
}

.testimonial-quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-saffron);
  margin-bottom: -1rem;
}

.testimonial-card blockquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(242, 237, 230, 0.9);
  margin-bottom: 1.5rem;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial-name {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-saffron);
}

.testimonial-biz {
  font-size: 0.78rem;
  color: var(--color-muted);
}

/* ─── CONTACT ────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-form-col h2 { margin-top: 0.5rem; }

.form-row { display: flex; gap: 1rem; }
.form-row--2 > * { flex: 1; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-field label,
.form-field legend {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-cream);
}

.required { color: var(--color-saffron); }

.form-field input,
.form-field select,
.form-field textarea {
  background-color: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--color-muted);
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237A6E64' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-field select option {
  background-color: var(--color-surface);
  color: var(--color-cream);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-saffron);
  box-shadow: 0 0 0 2px rgba(196, 146, 42, 0.35);
}

.form-field textarea { resize: vertical; min-height: 120px; }

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: rgba(242, 237, 230, 0.8);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  background-color: transparent;
  accent-color: var(--color-jade);
  flex-shrink: 0;
}

.form-status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  text-align: center;
}
.form-status.success {
  background-color: rgba(78, 139, 114, 0.15);
  border: 1px solid rgba(78, 139, 114, 0.3);
  color: var(--color-jade);
}
.form-status.error {
  background-color: rgba(196, 80, 42, 0.1);
  border: 1px solid rgba(196, 80, 42, 0.2);
  color: #e07060;
}

/* Contact info panel */
.contact-info-col {
  padding-top: 4rem;
}

.contact-info-text {
  font-size: 0.95rem;
  color: rgba(242, 237, 230, 0.8);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.contact-rule {
  border: none;
  border-top: 1px solid var(--color-saffron);
  margin-bottom: 1.5rem;
  opacity: 0.4;
}

.contact-info-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.contact-email-link {
  color: var(--color-saffron);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(196,146,42,0.3);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.contact-email-link:hover { border-color: var(--color-saffron); }

.contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(242,237,230,0.7);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.contact-social-link:hover { color: var(--color-cream); }

.contact-cat-mark {
  font-size: 3rem;
  color: var(--color-saffron);
  opacity: 0.1;
  margin-top: 3rem;
  text-align: center;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
#footer {
  background-color: #060504;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--color-cream);
  filter: brightness(0.85);
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 0.25rem;
}

.footer-nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.825rem;
  color: var(--color-muted);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--color-cream); }

.footer-sep { color: var(--color-muted); opacity: 0.4; }

.footer-copy {
  font-size: 0.75rem;
  color: var(--color-muted);
  opacity: 0.6;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-hamburger { display: flex; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-visual { height: 280px; }
  .about-card { width: 170px; height: 120px; }
  .about-card--2 { left: 70px; top: 60px; }
  .about-card--3 { top: 140px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card { aspect-ratio: 16/9; }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto 2rem;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-info-col { padding-top: 0; }

  .services-cta-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  :root { --section-pad: 60px; }

  .form-row--2 { flex-direction: column; }

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

  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .about-stats { flex-direction: column; gap: 1.5rem; }
}

/* ─── REDUCED MOTION ─────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal-section { opacity: 1; transform: none; }
  .hero-eyebrow, .hero-word, .hero-sub, .hero-ctas { opacity: 1; transform: none; animation: none; }
  .hero-chevron { animation: none; }
}
