/* ─────────────────────────────────────────────────────
   Lumen Obscura — style.css
   ───────────────────────────────────────────────────── */

/* ── Custom Properties ── */
:root {
  --color-base: #F7F5F2;
  --color-text: #1A1917;
  --color-text-muted: #6B6560;
  --color-accent: #B5674A;
  --color-line: #E8E5E0;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.6s var(--ease-out);

  --text-hero:    clamp(2.6rem, 6.5vw, 6rem);
  --text-display: clamp(1.7rem, 4vw, 3.2rem);
  --text-title:   clamp(1.2rem, 2.5vw, 1.7rem);
  --text-body:    clamp(0.875rem, 1.3vw, 1rem);
  --text-small:   0.8rem;
  --text-label:   0.72rem;

  --max-width: 1320px;
  --gutter: clamp(1.5rem, 5vw, 6rem);
  --section-gap: clamp(48px, 6vw, 90px);
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background-color: var(--color-base);
  color: var(--color-text);
  font-family: 'Syne', sans-serif;
  font-size: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-gap);
}

/* ── Accessibility ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Typography Helpers ── */
.label {
  font-size: var(--text-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  color: var(--color-text-muted);
}

/* ── Dividers ── */
hr.divider {
  border: none;
  height: 1px;
  background: var(--color-line);
  width: 100%;
}

hr.divider-reveal {
  border: none;
  height: 1px;
  background: var(--color-line);
  width: 0;
  transition: width 0.9s var(--ease-out);
}

hr.divider-reveal.in-view {
  width: 100%;
}

/* ── Page Transitions ── */
body.page-enter {
  opacity: 0;
}

body.page-visible {
  opacity: 1;
  transition: opacity 0.4s var(--ease-out);
}

body.page-exit {
  opacity: 0;
  transition: opacity 0.25s var(--ease-in-out);
  pointer-events: none;
}

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: var(--transition-base);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.reveal-group > * {
  --i: 0;
  opacity: 0;
  transform: translateY(24px);
  transition: var(--transition-base);
  transition-delay: calc(var(--i) * 90ms);
}

.reveal-group.in-view > * {
  opacity: 1;
  transform: none;
}

/* ── Buttons ── */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65em 1.5em;
  border: 1px solid var(--color-text);
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  min-height: 44px;
  white-space: nowrap;
}

.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
  z-index: -1;
}

.btn-ghost:hover {
  color: var(--color-base);
  border-color: var(--color-accent);
}

.btn-ghost:hover::before {
  transform: translateX(0);
}

/* ═══════════════════════════════
   NAVIGATION
   ═══════════════════════════════ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  background: rgba(247, 245, 242, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26, 25, 23, 0.08);
  transition: transform 0.4s var(--ease-in-out);
}

.site-nav.nav-hidden {
  transform: translateY(-100%);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.nav-links {
  display: none;
}

.nav-cta-wrap {
  display: none;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1001;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--color-text);
  transition: transform 0.3s var(--ease-out), opacity 0.25s, background 0.3s;
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  background: #F7F5F2;
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  background: #F7F5F2;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #1A1917;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.mobile-nav-links li {
  overflow: hidden;
}

.mobile-nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 300;
  color: #F7F5F2;
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), color 0.3s;
}

.mobile-menu.is-open .mobile-nav-links a {
  opacity: 1;
  transform: none;
}

.mobile-nav-links a:hover {
  color: var(--color-accent);
}

/* Desktop Nav */
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-links a {
    font-family: 'Syne', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--color-text);
    position: relative;
    padding-bottom: 6px;
    transition: color 0.3s;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .nav-links a[aria-current="page"]::after {
    opacity: 1;
  }

  .nav-cta-wrap {
    display: flex;
    flex-shrink: 0;
  }
}

/* ═══════════════════════════════
   FOOTER
   ═══════════════════════════════ */

.site-footer {
  background: #1A1917;
  color: #F7F5F2;
  padding-top: clamp(40px, 5vw, 65px);
  margin-top: 0;
}

.footer-main {
  display: grid;
  gap: 2rem;
  padding-bottom: clamp(24px, 3.5vw, 48px);
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 300;
  margin-bottom: 0.5rem;
  color: #F7F5F2;
}

.footer-tagline {
  font-size: var(--text-small);
  color: rgba(247, 245, 242, 0.45);
  font-family: 'Syne', sans-serif;
  line-height: 1.5;
}

.footer-nav-group {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-nav-col a {
  font-size: var(--text-small);
  color: rgba(247, 245, 242, 0.55);
  font-family: 'Syne', sans-serif;
  transition: color 0.3s;
}

.footer-nav-col a:hover {
  color: #F7F5F2;
}

.footer-inquiry .label {
  color: rgba(247, 245, 242, 0.35);
  margin-bottom: 0.6rem;
  display: block;
}

.footer-inquiry a {
  font-size: var(--text-small);
  color: rgba(247, 245, 242, 0.55);
  font-family: 'Syne', sans-serif;
  transition: color 0.3s;
}

.footer-inquiry a:hover {
  color: #F7F5F2;
}

.footer-bottom {
  border-top: 1px solid rgba(247, 245, 242, 0.1);
  padding-block: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: var(--text-small);
  color: rgba(247, 245, 242, 0.35);
  font-family: 'Syne', sans-serif;
}

.back-to-top {
  font-size: var(--text-small);
  color: rgba(247, 245, 242, 0.35);
  font-family: 'Syne', sans-serif;
  transition: color 0.3s;
  cursor: pointer;
}

.back-to-top:hover {
  color: #F7F5F2;
}

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

/* ═══════════════════════════════
   HERO — index.php
   ═══════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 68px;
  padding-inline: var(--gutter);
  padding-bottom: clamp(36px, 5vw, 60px);
  max-width: var(--max-width);
  margin-inline: auto;
  position: relative;
}

.hero-label {
  margin-bottom: clamp(1rem, 2vw, 1.75rem);
  opacity: 0;
  animation: fade-in-label 0.6s var(--ease-out) 0.1s forwards;
}

@keyframes fade-in-label {
  to { opacity: 1; }
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-hero);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 820px;
}

.hero-headline .line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

.hero-headline .line.in-view {
  opacity: 1;
  transform: none;
}

.hero-cta {
  opacity: 0;
  animation: fade-in-label 0.6s var(--ease-out) 0.8s forwards;
  align-self: flex-start;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1px;
}

.hero-scroll-line {
  width: 1px;
  height: 0;
  background: var(--color-text);
  animation: grow-line 0.8s var(--ease-out) 1.4s forwards;
}

@keyframes grow-line {
  from { height: 0; }
  to   { height: 60px; }
}

/* ═══════════════════════════════
   SELECTED WORK TEASER — index.php
   ═══════════════════════════════ */

.selected-work {
  padding-top: 0;
}

.selected-work .section-label {
  margin-bottom: 2rem;
}

.work-teaser-grid {
  display: grid;
  gap: 0.625rem;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}

.work-teaser-grid .item-large,
.work-teaser-grid .item-small {
  overflow: hidden;
}

.work-teaser-grid .item-large img,
.work-teaser-grid .item-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}

.work-teaser-grid .item-large:hover img,
.work-teaser-grid .item-small:hover img {
  transform: scale(1.03);
}

.work-teaser-grid .item-large {
  aspect-ratio: 4/3;
}

.work-teaser-grid .item-small {
  aspect-ratio: 4/3;
}

@media (min-width: 768px) {
  .work-teaser-grid {
    grid-template-columns: 3fr 2fr;
    grid-template-rows: 252px 252px;
  }

  .work-teaser-grid .item-large {
    grid-row: span 2;
    aspect-ratio: unset;
  }

  .work-teaser-grid .item-small {
    aspect-ratio: unset;
  }
}

.work-teaser-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.work-teaser-footer a {
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text);
  transition: color 0.3s;
}

.work-teaser-footer a:hover {
  color: var(--color-accent);
}

/* ═══════════════════════════════
   MANIFESTO — index.php
   ═══════════════════════════════ */

.manifesto-wrap {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.manifesto-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.9rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 2rem;
}

.manifesto-body p {
  font-size: var(--text-body);
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  text-align: left;
}

.manifesto-body p:last-child {
  margin-bottom: 0;
}

/* ═══════════════════════════════
   CLIENT CARDS — index.php
   ═══════════════════════════════ */

.client-logos {
  padding-top: clamp(2rem, 4vw, 3.5rem);
}

.client-logos .label {
  display: block;
  margin-bottom: 2rem;
}

.client-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}

.client-card {
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--color-text);
  border: 1px solid var(--color-line);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: border-color 0.35s, color 0.35s, background 0.35s;
}

.client-card:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(181, 103, 74, 0.04);
}

@media (min-width: 640px) {
  .client-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .client-card-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ═══════════════════════════════
   TESTIMONIALS TEASER — index.php
   ═══════════════════════════════ */

.testimonials-teaser .section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.testimonials-teaser-grid {
  display: grid;
  gap: 3rem;
}

.testimonials-teaser-grid .testimonial-item {
  padding-top: 2rem;
  border-top: 1px solid var(--color-line);
}

.testimonial-item blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.testimonial-attr {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  font-family: 'Syne', sans-serif;
}

.all-testimonials-link a {
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: color 0.3s;
}

.all-testimonials-link a:hover {
  color: var(--color-accent);
}

@media (min-width: 768px) {
  .testimonials-teaser-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ═══════════════════════════════
   WORK PAGE
   ═══════════════════════════════ */

.work-page-header {
  padding-top: calc(68px + clamp(50px, 8vw, 90px));
  padding-bottom: 3rem;
}

.work-page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-display);
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.filter-tabs {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--color-line);
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
}

.filter-tab {
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 0 0 8px 0;
  position: relative;
  transition: color 0.3s;
  min-height: 44px;
  display: flex;
  align-items: flex-end;
  background: none;
  border: none;
}

.filter-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--color-accent);
  transition: width 0.35s var(--ease-out);
}

.filter-tab.active {
  color: var(--color-text);
}

.filter-tab.active::after {
  width: 100%;
}

.work-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.work-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-line);
  transition: opacity 0.35s var(--ease-out);
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}

.work-item:hover img {
  transform: scale(1.04);
}

.work-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 25, 23, 0.78);
  padding: 1.5rem 1.75rem;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}

.work-item:hover .work-item-overlay {
  transform: translateY(0);
}

.work-item-title {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 300;
  color: #F7F5F2;
  margin-bottom: 0.3rem;
}

.work-item-cat {
  font-family: 'Syne', sans-serif;
  font-size: var(--text-small);
  color: rgba(247, 245, 242, 0.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-item.filtered-out {
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 768px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 340px;
  }

  .work-item.span-wide {
    grid-column: span 2;
  }

  .work-item.span-tall {
    grid-row: span 2;
  }
}

@media (min-width: 1024px) {
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 310px;
  }
}

/* ═══════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════ */

.about-opening {
  padding-top: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

.about-pull-quote {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.about-pull-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--color-text);
}

.about-body {
  display: grid;
  gap: 3rem;
  align-items: start;
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

.about-text p {
  font-size: var(--text-body);
  line-height: 1.85;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-image-wrap {
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

@media (min-width: 1024px) {
  .about-body {
    grid-template-columns: 3fr 2fr;
  }

  .about-image-wrap {
    position: sticky;
    top: 88px;
  }

  .about-text-col {
    order: -1;
  }
}

/* Press strip */
.press-strip {
  border-top: 1px solid var(--color-line);
  padding-top: 2rem;
  margin-bottom: 0;
}

.press-strip .label {
  display: block;
  margin-bottom: 1.75rem;
}

.press-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  align-items: center;
}

.press-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  opacity: 0.38;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

/* Timeline */
.about-timeline {
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

.about-timeline .label {
  display: block;
  margin-bottom: 2.5rem;
}

.timeline-items {
  border-left: 1px solid var(--color-accent);
  padding-left: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 680px;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.6rem;
  top: 0.35em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.timeline-year {
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.timeline-event {
  font-family: 'Syne', sans-serif;
  font-size: var(--text-body);
  color: var(--color-text);
  line-height: 1.6;
}

/* ═══════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════ */

/* Hero */
.services-hero {
  position: relative;
  height: clamp(360px, 52vw, 620px);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
  margin-top: 68px;
}

.services-hero-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.services-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.services-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,25,23,0.82) 0%, rgba(26,25,23,0.15) 65%);
}

.services-hero-content {
  position: relative;
  z-index: 1;
  color: #F7F5F2;
}

.services-hero-content .label {
  color: rgba(247,245,242,0.5);
  display: block;
  margin-bottom: 1rem;
}

.services-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-display);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.services-hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(247,245,242,0.6);
}

/* Service cards */
.services-list {
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

.service-card {
  border-top: 1px solid var(--color-line);
  padding-block: clamp(1.75rem, 3.5vw, 2.75rem);
  transition: background 0.4s;
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.service-card-left {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
}

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 300;
  color: var(--color-accent);
  opacity: 0.55;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.service-card-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
}

.service-price-tag {
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  padding: 0.45em 1.1em;
  white-space: nowrap;
  align-self: flex-start;
  flex-shrink: 0;
}

.service-details {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .service-details {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .service-details {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-detail dt {
  font-size: var(--text-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
  font-family: 'Syne', sans-serif;
  font-weight: 500;
}

.service-detail dd {
  font-size: var(--text-body);
  color: var(--color-text);
  font-family: 'Syne', sans-serif;
  line-height: 1.55;
}

.service-note {
  font-family: 'Syne', sans-serif;
  font-style: italic;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--color-line);
}

.services-cta {
  text-align: center;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--color-line);
}

.services-cta-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
}

/* ═══════════════════════════════
   TESTIMONIALS PAGE
   ═══════════════════════════════ */

.testimonials-header {
  padding-top: calc(68px + clamp(50px, 8vw, 90px));
  padding-bottom: 1rem;
}

.testimonials-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-display);
  font-weight: 300;
  margin-bottom: 1rem;
}

.testimonials-intro {
  font-size: var(--text-body);
  color: var(--color-text-muted);
  font-family: 'Syne', sans-serif;
  max-width: 480px;
  line-height: 1.7;
}

.testimonial-full {
  padding-block: clamp(28px, 3.5vw, 44px);
  border-top: 1px solid var(--color-line);
}

.testimonial-full blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 1.75rem;
  max-width: 860px;
}

.testimonial-full-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  align-items: center;
  margin-bottom: 0.6rem;
}

.t-name {
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: var(--text-small);
  color: var(--color-text);
}

.t-role {
  font-family: 'Syne', sans-serif;
  font-size: var(--text-small);
  color: var(--color-text-muted);
}

.t-context {
  font-family: 'Syne', sans-serif;
  font-size: var(--text-small);
  color: var(--color-accent);
  line-height: 1.5;
}

.testimonials-cta {
  text-align: center;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--color-line);
}

.testimonials-cta-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 2rem;
}

/* ═══════════════════════════════
   BOOKING PAGE
   ═══════════════════════════════ */

.booking-header {
  padding-top: calc(68px + clamp(50px, 8vw, 90px));
  padding-bottom: 3rem;
}

.booking-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-display);
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.booking-subline {
  font-size: var(--text-body);
  color: var(--color-text-muted);
  font-family: 'Syne', sans-serif;
}

/* Stepper */
.booking-stepper {
  display: flex;
  align-items: center;
  margin-bottom: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-line);
  gap: 0;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  flex-shrink: 0;
}

.step-circle.active {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #F7F5F2;
}

.step-circle.completed {
  border-color: var(--color-accent);
  background: transparent;
  color: var(--color-accent);
}

.step-label-text {
  font-family: 'Syne', sans-serif;
  font-size: var(--text-small);
  color: var(--color-text-muted);
  display: none;
  transition: color 0.3s;
}

.step-label-text.active {
  color: var(--color-text);
}

.step-connector {
  flex: 1;
  height: 1px;
  background: var(--color-line);
  margin-inline: 0.75rem;
  max-width: 100px;
}

@media (min-width: 480px) {
  .step-label-text {
    display: block;
  }
}

/* Booking Steps */
.booking-step {
  display: none;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.booking-step.step-active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

/* Package blocks */
.package-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .package-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.package-block {
  border: 1px solid var(--color-line);
  padding: 2rem 1.75rem;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  min-height: 44px;
}

.package-block:hover {
  border-color: rgba(181, 103, 74, 0.5);
}

.package-block.selected {
  border-color: var(--color-accent);
  background: rgba(181, 103, 74, 0.04);
}

.pkg-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 300;
  margin-bottom: 0.4rem;
}

.pkg-price {
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.pkg-desc {
  font-family: 'Syne', sans-serif;
  font-size: var(--text-small);
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* Step navigation */
.step-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 2.5rem;
  gap: 1.5rem;
}

.step-nav.has-back {
  justify-content: space-between;
}

.btn-step-prev {
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  transition: color 0.3s;
  padding: 0.5em 0;
}

.btn-step-prev:hover {
  color: var(--color-text);
}

.btn-step-next {
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  background: var(--color-text);
  color: var(--color-base);
  padding: 0.75em 2.25em;
  min-height: 44px;
  transition: background 0.3s;
  letter-spacing: 0.03em;
}

.btn-step-next:hover {
  background: var(--color-accent);
}

/* Form */
.form-grid {
  display: grid;
  gap: 2.25rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-field.full-width {
    grid-column: span 2;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-size: var(--text-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-family: 'Syne', sans-serif;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--color-line);
  background: transparent;
  padding: 12px 0;
  font-family: 'Syne', sans-serif;
  font-size: var(--text-body);
  color: var(--color-text);
  outline: none;
  min-height: 44px;
  transition: border-bottom-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--color-accent);
}

.form-field input.error,
.form-field select.error,
.form-field textarea.error {
  border-bottom-color: #C0392B;
}

.form-field .error-msg {
  font-size: 0.72rem;
  color: #C0392B;
  font-family: 'Syne', sans-serif;
  display: none;
  margin-top: 0.2rem;
}

.form-field.has-error .error-msg {
  display: block;
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
  padding-top: 12px;
}

.form-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6560' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 20px;
}

.btn-submit {
  width: 100%;
  padding: 1em;
  background: var(--color-text);
  color: var(--color-base);
  border: none;
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  min-height: 54px;
  transition: background 0.3s;
  margin-top: 2.5rem;
}

.btn-submit:hover {
  background: var(--color-accent);
}

.form-footer-note {
  text-align: center;
  font-size: var(--text-small);
  color: var(--color-text-muted);
  font-family: 'Syne', sans-serif;
  font-style: italic;
  margin-top: 1.25rem;
}

/* Booking confirmation (step 3) */
.booking-confirm {
  text-align: center;
  padding-block: clamp(36px, 5vw, 64px);
}

.confirm-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.confirm-text {
  font-size: var(--text-body);
  color: var(--color-text-muted);
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ═══════════════════════════════
   PAGE HERO BANNER (shared)
   ═══════════════════════════════ */

.page-hero {
  position: relative;
  height: clamp(240px, 32vw, 400px);
  margin-top: 68px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
}

.page-hero-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.page-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 25, 23, 0.16);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  color: #F7F5F2;
  width: 100%;
}

.page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-display);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.page-hero-content .page-hero-sub {
  font-family: 'Syne', sans-serif;
  font-size: var(--text-small);
  color: rgba(247, 245, 242, 0.62);
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════
   GENERAL PAGE PADDING
   ═══════════════════════════════ */

.page-top-pad {
  padding-top: calc(68px + clamp(50px, 8vw, 90px));
}

/* ═══════════════════════════════
   SHAPE GALLERY (selected moments)
   ═══════════════════════════════ */

.diamond-gallery {
  padding-block: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid var(--color-line);
}

.diamond-gallery .label {
  display: block;
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.diamond-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 4vw, 5rem);
  flex-wrap: wrap;
}

.diamond-wrap {
  width: clamp(120px, 14vw, 190px);
  height: clamp(120px, 14vw, 190px);
  overflow: hidden;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  flex-shrink: 0;
}

.diamond-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
  display: block;
}

.diamond-wrap:hover img {
  transform: scale(1.12);
}

.diamond-wrap.diamond-lg {
  width: clamp(170px, 20vw, 270px);
  height: clamp(170px, 20vw, 270px);
}

/* ═══════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
