@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Inter:wght@300;400;500&display=swap');

/* ─────────────────────────────────────────────────────────
   Design System
───────────────────────────────────────────────────────── */
:root {
  /* Palette */
  --bg:          #F9F6F1;
  --bg-warm:     #F2EDE6;
  --ink:         #1A1612;
  --ink-2:       #6B6560;
  --navy:        #1C2B3A;
  --navy-deep:   #0F1E2B;
  --near-black:  #141210;
  --darkest:     #0F0D0A;
  --gold:        #B59A6A;
  --gold-faint:  rgba(181, 154, 106, 0.14);
  --gold-border: rgba(181, 154, 106, 0.22);
  --white:       #FFFFFF;

  /* Type */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Scale (fluid) */
  --text-xs:   clamp(0.64rem, 0.6rem + 0.2vw, 0.7rem);
  --text-sm:   clamp(0.78rem, 0.72rem + 0.3vw, 0.875rem);
  --text-base: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
  --text-md:   clamp(1rem, 0.95rem + 0.25vw, 1.1rem);
  --text-lg:   clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
  --text-xl:   clamp(1.4rem, 1.1rem + 1.5vw, 2rem);
  --text-2xl:  clamp(2rem, 1.4rem + 3vw, 3.2rem);
  --text-3xl:  clamp(2.6rem, 1.5rem + 5.5vw, 4.4rem);
  --text-hero: clamp(3rem, 1.2rem + 8.5vw, 5.6rem);

  /* Motion */
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast:   180ms;
  --t-med:    500ms;
  --t-slow:   800ms;
  --t-luxe:   1100ms;

  /* Layout */
  --max-w: 1160px;
}

/* ─────────────────────────────────────────────────────────
   Reduced Motion
───────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ─────────────────────────────────────────────────────────
   Reset & Base
───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Paper grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.038;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
}

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

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ─────────────────────────────────────────────────────────
   Labels
───────────────────────────────────────────────────────── */
.label {
  display: inline-block;
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.label--light { color: rgba(181,154,106,0.75); }
.label--gold  { color: var(--gold); }

/* ─────────────────────────────────────────────────────────
   Buttons
───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 0;
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(28,43,58,0.22);
}
.btn-primary:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(28,43,58,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--gold-border);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--ink);
}
.btn-ghost .btn-ghost__arrow {
  display: inline-block;
  transition: transform var(--t-fast) var(--ease);
}
.btn-ghost:hover .btn-ghost__arrow { transform: translateX(5px); }

.btn-book {
  background: var(--navy);
  color: var(--white);
  padding: 11px 24px;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
}
.btn-book:hover { background: var(--navy-deep); }

.btn-white-solid {
  background: var(--white);
  color: var(--ink);
}
.btn-white-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}

.btn-ghost-light {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.22);
}
.btn-ghost-light:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

/* ─────────────────────────────────────────────────────────
   Text links (signature gold-line interaction)
───────────────────────────────────────────────────────── */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-top: 24px;
  position: relative;
}
.text-link::after {
  content: '→';
  display: inline-block;
  transition: transform var(--t-fast) var(--ease);
}
.text-link:hover::after { transform: translateX(5px); }
.text-link--light { color: rgba(181,154,106,0.75); }

/* Gold underline expansion — used on nav + text links */
.text-link-underline {
  position: relative;
}
.text-link-underline::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width var(--t-med) var(--ease);
}
.text-link-underline:hover::before { width: 100%; }

/* ─────────────────────────────────────────────────────────
   Scroll Reveal
───────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--t-slow) var(--ease),
              transform var(--t-slow) var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────────────────
   Navigation
───────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 22px 0;
  transition: background var(--t-med) var(--ease),
              padding var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(249, 246, 241, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom-color: var(--gold-border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo img { height: 64px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__links a {
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  position: relative;
  padding-bottom: 2px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width var(--t-med) var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  width: 36px;
}
.nav__hamburger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: transform var(--t-fast) var(--ease),
              opacity var(--t-fast) var(--ease);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.nav__mobile {
  display: flex;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 190;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease), visibility var(--t-med);
}
.nav__mobile.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.nav__mobile ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  width: 100%;
}
.nav__mobile ul li {
  width: 100%;
  border-bottom: 1px solid var(--gold-border);
}
.nav__mobile ul li:first-child { border-top: 1px solid var(--gold-border); }
.nav__mobile ul a {
  display: block;
  padding: 22px 48px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 300;
  color: var(--ink);
  text-align: center;
  letter-spacing: 0.04em;
  transition: color var(--t-fast) var(--ease);
}
.nav__mobile ul a:hover { color: var(--gold); }

/* ─────────────────────────────────────────────────────────
   Hero
───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Atmospheric background wordmark */
.hero__wordmark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(8rem, 18vw, 20rem);
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--ink);
  opacity: 0.028;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

.hero__inner {
  flex: 1;
  display: flex;
  align-items: center;
}

.hero__layout {
  display: grid;
  grid-template-columns: 56fr 44fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 80px;
}

/* Hero text */
.hero__label { margin-bottom: 24px; }

.hero__title {
  font-family: var(--serif);
  font-size: var(--text-hero);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--navy);
}

.hero__sub {
  font-size: var(--text-base);
  color: var(--ink-2);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 44px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__credence {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

/* Hero collage */
.hero__collage {
  position: relative;
  height: 560px;
}

.hero__photo {
  position: absolute;
  background: #D9D3CB;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.16), 0 4px 16px rgba(0,0,0,0.1);
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(0,0,0,0.06) 100%);
}

.hero__photo--a {
  width: 58%;
  aspect-ratio: 2 / 3;
  top: 4%;
  left: 2%;
  animation: settleA 1s var(--ease) 0.3s both;
}
.hero__photo--b {
  width: 60%;
  aspect-ratio: 3 / 2;
  bottom: 3%;
  right: 0;
  animation: settleB 1s var(--ease) 0.5s both;
}
.hero__photo--c {
  width: 36%;
  aspect-ratio: 1;
  top: 0;
  right: 4%;
  animation: settleC 1s var(--ease) 0.7s both;
}

@keyframes settleA {
  from { opacity: 0; transform: rotate(0deg) scale(0.94) translateY(18px); }
  to   { opacity: 1; transform: rotate(-2deg) scale(1) translateY(0); }
}
@keyframes settleB {
  from { opacity: 0; transform: rotate(0deg) scale(0.94) translateY(18px); }
  to   { opacity: 1; transform: rotate(1.5deg) scale(1) translateY(0); }
}
@keyframes settleC {
  from { opacity: 0; transform: rotate(0deg) scale(0.94) translateY(18px); }
  to   { opacity: 1; transform: rotate(-0.5deg) scale(1) translateY(0); }
}

/* Keep the rotations on rest state */
.hero__photo--a { transform: rotate(-2deg); }
.hero__photo--b { transform: rotate(1.5deg); }
.hero__photo--c { transform: rotate(-0.5deg); }

.hero__badge {
  position: absolute;
  bottom: 22%;
  left: 0;
  background: var(--navy);
  color: var(--white);
  padding: 18px 24px;
  z-index: 4;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  animation: settleA 1s var(--ease) 0.9s both;
}
.hero__badge-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
}
.hero__badge-label {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.45;
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: var(--ink);
  animation: scrollPulse 2s var(--ease-out) infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}
.hero__scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  color: var(--ink-2);
}

/* ─────────────────────────────────────────────────────────
   Marquee
───────────────────────────────────────────────────────── */
.marquee-bar {
  background: var(--navy);
  height: 50px;
  display: flex;
  align-items: center;
  overflow: hidden;
  user-select: none;
  position: sticky;
  bottom: 0;
  z-index: 100;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 45s linear infinite;
}
.marquee-bar:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 0 20px;
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}
.marquee-content em {
  font-style: normal;
  color: var(--gold);
  margin: 0 10px;
}

/* ─────────────────────────────────────────────────────────
   Services
───────────────────────────────────────────────────────── */
.services {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg);
}

.services__header {
  max-width: 640px;
  margin-bottom: clamp(60px, 8vw, 100px);
}
.services__title {
  font-family: var(--serif);
  font-size: var(--text-3xl);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}
.services__title em { font-style: italic; }
.services__intro {
  font-size: var(--text-base);
  color: var(--ink-2);
  line-height: 1.8;
  max-width: 480px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--gold-border);
}

.service {
  position: relative;
  padding: clamp(40px, 5vw, 64px) clamp(28px, 4vw, 48px) clamp(48px, 6vw, 72px) 0;
  border-right: 1px solid var(--gold-border);
  overflow: visible;
  transition: background var(--t-med) var(--ease);
}
.service:last-child { border-right: none; padding-right: 0; }
.service:not(:first-child) { padding-left: clamp(28px, 4vw, 48px); }

.service::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow) var(--ease);
}
.service:hover::after { transform: scaleX(1); }

.service__num {
  position: absolute;
  top: -1px;
  right: clamp(8px, 3vw, 24px);
  font-family: var(--serif);
  font-size: clamp(5rem, 8vw, 8rem);
  font-weight: 300;
  line-height: 0.9;
  color: var(--gold);
  opacity: 0.1;
  pointer-events: none;
  user-select: none;
  transform: translateY(-40%);
}

.service__rule {
  width: 32px;
  height: 1px;
  background: var(--gold-border);
  margin-bottom: 28px;
}

.service__icon {
  width: 28px;
  height: 28px;
  color: var(--ink-2);
  margin-bottom: 20px;
  stroke-width: 1.4;
}

.service__title {
  font-family: var(--serif);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.2;
}

.service__desc {
  font-size: var(--text-sm);
  color: var(--ink-2);
  line-height: 1.8;
  margin-bottom: 4px;
}

/* ─────────────────────────────────────────────────────────
   Editorial Interlude
───────────────────────────────────────────────────────── */
.interlude {
  padding: clamp(80px, 11vw, 130px) 0;
  text-align: center;
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}
.interlude--dark {
  background: var(--navy);
}
.interlude__rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 36px;
  opacity: 0.7;
}
.interlude blockquote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.65;
  letter-spacing: 0.01em;
  padding: 0 clamp(20px, 4vw, 48px);
}
.interlude--dark blockquote { color: rgba(255,255,255,0.82); }
.interlude--dark .interlude__rule { opacity: 0.5; }

/* ─────────────────────────────────────────────────────────
   Feature: The Work
───────────────────────────────────────────────────────── */
.feature-work {
  display: grid;
  grid-template-columns: 48fr 52fr;
  min-height: 640px;
  background: var(--navy);
}

.feature-work__photo {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
}
.feature-work__photo-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #243447 0%, #0F1E2B 60%, #08121A 100%);
}
.feature-work__photo-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  background-size: 200px;
  opacity: 0.06;
  mix-blend-mode: screen;
}
/* Camera icon placeholder */
.feature-work__photo-inner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 56px;
  border: 1.5px solid rgba(181,154,106,0.2);
  border-radius: 8px;
}

.feature-work__content {
  padding: clamp(60px, 8vw, 100px) clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-work__title {
  font-family: var(--serif);
  font-size: var(--text-3xl);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.feature-work__title em { font-style: italic; color: var(--gold); }

.feature-work__desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.58);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 48px;
}

.feature-work__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
}

.feature-stat__divider {
  width: 1px;
  height: 56px;
  background: rgba(181,154,106,0.25);
}

.feature-stat__num {
  display: inline;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.feature-stat__unit {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--gold);
}
.feature-stat__label {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}

/* ─────────────────────────────────────────────────────────
   Rates
───────────────────────────────────────────────────────── */
.rates {
  padding: clamp(80px, 11vw, 130px) 0;
  background: var(--bg-warm);
}

.rates__header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}

.rates__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 18px;
}
.rates__title em { font-style: italic; color: var(--gold); }

.rates__sub {
  color: var(--ink-2);
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.rates__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1.5px solid var(--gold-border);
  border-radius: 16px;
  overflow: hidden;
}

.rate-card {
  background: var(--bg);
  border-right: 1.5px solid var(--gold-border);
  padding: clamp(32px, 4vw, 52px) clamp(28px, 3.5vw, 44px);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 250ms var(--ease), box-shadow 250ms var(--ease);
}
.rate-card:last-child { border-right: none; }
.rate-card:hover {
  background: rgba(181,154,106,0.04);
  box-shadow: inset 0 0 0 1.5px rgba(181,154,106,0.35);
}

/* Middle card gets a subtle highlight */
.rate-card:nth-child(2) {
  background: rgba(181,154,106,0.04);
}
.rate-card:nth-child(2)::before {
  content: 'Most Popular';
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(181,154,106,0.12);
  border: 1px solid rgba(181,154,106,0.3);
  border-radius: 20px;
  padding: 3px 10px;
}

.rate-card__name {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1;
}

.rate-card__divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 22px;
  opacity: 0.5;
}

.rate-card__price {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  line-height: 1;
}

.rate-card__desc {
  font-size: clamp(0.88rem, 1.2vw, 0.96rem);
  color: var(--ink-2);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 36px;
  white-space: pre-line;
}

.rate-card__book {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap 220ms var(--ease), opacity 220ms;
}
.rate-card__book:hover { gap: 16px; }

@media (max-width: 768px) {
  .rates__grid {
    grid-template-columns: 1fr;
    border-radius: 14px;
  }
  .rate-card {
    border-right: none;
    border-bottom: 1.5px solid var(--gold-border);
  }
  .rate-card:last-child { border-bottom: none; }
  .rate-card:nth-child(2)::before { top: 28px; }
}

.rates__loading,
.rates__empty {
  color: var(--ink-2);
  font-size: 0.85rem;
  font-style: italic;
  text-align: center;
  padding: 48px 0;
  grid-column: 1/-1;
}

/* ─────────────────────────────────────────────────────────
   Portfolio
───────────────────────────────────────────────────────── */
.portfolio {
  padding: clamp(80px, 11vw, 130px) 0;
  background: var(--navy-deep);
}

.portfolio__header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 72px);
}

.portfolio__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
}
.portfolio__title em { font-style: italic; color: var(--gold); }

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 10px;
}

.portfolio__item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  cursor: pointer;
}

.portfolio__item--tall,
.portfolio__item:first-child { grid-row: span 2; }

.portfolio__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms var(--ease);
}

.portfolio__item:hover img { transform: scale(1.04); }

.portfolio__item__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: rgba(255,255,255,0.8);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 200ms;
}
.portfolio__item:hover .portfolio__item__label { opacity: 1; }

/* Placeholder skeleton */
.portfolio__placeholder { display: contents; }

.portfolio__ph-item {
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  border: 1px dashed rgba(255,255,255,0.07);
  animation: ph-pulse 2s ease-in-out infinite alternate;
}
.portfolio__ph-item:first-child { grid-row: span 2; }

@keyframes ph-pulse {
  from { opacity: 0.35; }
  to   { opacity: 0.6; }
}

/* ─────────────────────────────────────────────────────────
   Process
───────────────────────────────────────────────────────── */
.process {
  padding: clamp(80px, 11vw, 130px) 0;
  background: var(--bg-warm);
}

.process__header {
  margin-bottom: clamp(60px, 8vw, 96px);
}
.process__title {
  font-family: var(--serif);
  font-size: var(--text-3xl);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 0;
}
.process__title em { font-style: italic; }

.process__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.process__step { padding: 0 0 0 0; }

.process__num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 24px;
}

.process__body h3 {
  font-family: var(--sans);
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.process__body p {
  font-size: var(--text-sm);
  color: var(--ink-2);
  line-height: 1.8;
  max-width: 280px;
}

.process__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 clamp(16px, 3vw, 32px);
  margin-top: clamp(1.8rem, 4vw, 3rem);
  gap: 6px;
}
.process__connector-line {
  display: block;
  width: 1px;
  height: 20px;
  background: var(--gold-border);
}
.process__connector-arrow {
  font-size: 0.9rem;
  color: var(--gold);
  opacity: 0.6;
  letter-spacing: 0;
  transform: rotate(-90deg);
}

/* ─────────────────────────────────────────────────────────
   Gallery Feature
───────────────────────────────────────────────────────── */
.gallery-feature {
  padding: clamp(80px, 11vw, 130px) 0;
  background: var(--bg);
}

.gallery-feature__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.gallery-feature__title {
  font-family: var(--serif);
  font-size: var(--text-2xl);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
}
.gallery-feature__title em { font-style: italic; }

.gallery-feature__desc {
  font-size: var(--text-base);
  color: var(--ink-2);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 440px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--text-sm);
  color: var(--ink-2);
}
.feature-list li svg {
  flex-shrink: 0;
  color: var(--gold);
  stroke-width: 2.5;
}

/* Browser mockup */
.browser-mock {
  background: #0D1117;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.18), 0 8px 24px rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.06);
  transform: rotate(3deg);
  transition: transform var(--t-slow) var(--ease);
}
.browser-mock:hover { transform: rotate(1deg) translateY(-4px); }

.browser-mock__chrome {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.browser-mock__dots { display: flex; gap: 5px; }
.dot {
  width: 9px; height: 9px;
  border-radius: 50%;
}
.dot--r { background: rgba(255, 95, 86, 0.6); }
.dot--y { background: rgba(255, 189, 46, 0.6); }
.dot--g { background: rgba(39, 201, 63, 0.6); }

.browser-mock__url {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 0.68rem;
  font-family: var(--sans);
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.02em;
}

.browser-mock__viewport {
  padding: 16px;
  background: #0D1117;
}
.browser-mock__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-bottom: 12px;
}
.browser-mock__grid span {
  display: block;
  border-radius: 3px;
  background: rgba(255,255,255,0.06);
  aspect-ratio: 3/4;
  animation: mockShimmer 2.5s ease-in-out infinite;
}
.browser-mock__grid span:nth-child(2) { animation-delay: 0.4s; }
.browser-mock__grid span:nth-child(3) { animation-delay: 0.8s; }
.browser-mock__grid span:nth-child(4) { animation-delay: 0.2s; }
.browser-mock__grid span:nth-child(5) { animation-delay: 0.6s; }
.browser-mock__grid span:nth-child(6) { animation-delay: 1s; }
@keyframes mockShimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.browser-mock__footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 4px;
}
.browser-mock__dl {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(28,43,58,0.8);
  border: 1px solid rgba(181,154,106,0.2);
  color: rgba(255,255,255,0.6);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
}

/* ─────────────────────────────────────────────────────────
   Testimonials
───────────────────────────────────────────────────────── */
.testimonials {
  padding: clamp(80px, 11vw, 130px) 0;
  background: var(--navy);
}

.testimonials__header {
  margin-bottom: clamp(52px, 7vw, 80px);
}
.testimonials__title {
  font-family: var(--serif);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.testimonial {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  transition: background var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease);
}
.testimonial:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--gold-border);
}
.testimonial--tall { padding-top: clamp(40px, 5vw, 60px); }

.testimonial__mark {
  position: absolute;
  top: clamp(16px, 3vw, 24px);
  left: clamp(20px, 3vw, 32px);
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.18;
  pointer-events: none;
  user-select: none;
}

.testimonial__stars {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  opacity: 0.85;
}

.testimonial__quote {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(181,154,106,0.2);
  border: 1px solid rgba(181,154,106,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 400;
  flex-shrink: 0;
}
.testimonial__name {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}
.testimonial__role {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* ─────────────────────────────────────────────────────────
   CTA Section
───────────────────────────────────────────────────────── */
.cta-section {
  padding: clamp(80px, 13vw, 150px) 0;
  background: var(--near-black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: 'HACONS';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(8rem, 20vw, 22rem);
  font-weight: 300;
  letter-spacing: 0.16em;
  color: var(--white);
  opacity: 0.022;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--serif);
  font-size: var(--text-3xl);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.cta-title em { font-style: italic; color: var(--gold); }

.cta-sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.cta-email {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  color: var(--gold);
  opacity: 0.7;
}

/* ─────────────────────────────────────────────────────────
   Footer
───────────────────────────────────────────────────────── */
.footer {
  background: var(--darkest);
  color: rgba(255,255,255,0.45);
  padding: clamp(64px, 8vw, 100px) 0 40px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(48px, 6vw, 72px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__logo { margin-bottom: 20px; display: block; }
.footer__logo img { height: 56px; width: auto; opacity: 0.9; }

.footer__about {
  font-size: var(--text-sm);
  line-height: 1.8;
  max-width: 260px;
  margin-bottom: 18px;
}

.footer__instagram {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  color: var(--gold);
  opacity: 0.7;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}
.footer__instagram::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--t-med) var(--ease);
}
.footer__instagram:hover { opacity: 1; }
.footer__instagram:hover::after { width: 100%; }

.footer__heading {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 22px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a,
.footer__links span {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  transition: color var(--t-fast) var(--ease);
  position: relative;
  display: inline-block;
  padding-bottom: 1px;
}
.footer__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--t-med) var(--ease);
}
.footer__links a:hover { color: rgba(255,255,255,0.75); }
.footer__links a:hover::after { width: 100%; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.25);
}
.footer__tagline { letter-spacing: 0.14em; text-transform: uppercase; }

/* ─────────────────────────────────────────────────────────
   Gallery page — dark theme (matches site palette)
───────────────────────────────────────────────────────── */
body.gallery-page {
  background: #0A0D11;
  color: #E8E3DC;
}
body.gallery-page::before { display: none; }

.gallery-header {
  background: rgba(10,13,17,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(181,154,106,0.12);
  padding: 10px 0;
  position: sticky; top: 0; z-index: 50;
}
.gallery-header__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.gallery-header__logo img { height: 48px; width: auto; display: block; }
.gallery-header__info {
  display: flex; align-items: center; gap: 14px;
  flex: 1; justify-content: center;
  min-width: 0;
}
.gallery-header__name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #E8E3DC;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gallery-header__count {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(181,154,106,0.1);
  border: 1px solid rgba(181,154,106,0.22);
  border-radius: 20px;
  padding: 3px 12px;
  flex-shrink: 0;
}
.gallery-header__actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.gallery-main { padding: 40px 0 80px; }

.expiry-notice {
  background: rgba(181,154,106,0.06);
  border: 1px solid rgba(181,154,106,0.2);
  border-radius: 6px;
  padding: 12px 20px; margin-bottom: 32px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: rgba(232,227,220,0.55);
  letter-spacing: 0.01em;
}
.expiry-notice svg { color: var(--gold); flex-shrink: 0; }
.expiry-notice.warning { background: rgba(192,57,43,0.08); border-color: rgba(192,57,43,0.3); }
.expiry-notice.warning svg { color: #e74c3c; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.photo-item {
  border-radius: 4px; overflow: hidden;
  cursor: zoom-in; position: relative;
  background: #111519;
  aspect-ratio: 3 / 4;
}
.photo-item img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center top;
  transition: transform 0.45s var(--ease), opacity 0.3s ease;
  opacity: 0;
}
.photo-item img.loaded { opacity: 1; }
.photo-item:hover img { transform: scale(1.04); }
.photo-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.25s ease;
  display: flex; align-items: flex-end; padding: 12px;
}
.photo-item:hover .photo-item__overlay { opacity: 1; }

.photo-skeleton {
  border-radius: 4px; background: #111519;
  aspect-ratio: 3 / 4;
  animation: shimmer 1.8s ease-in-out infinite;
}
@keyframes shimmer { 0%,100% { opacity: 0.4; } 50% { opacity: 0.8; } }

.download-progress { display: none; align-items: center; gap: 10px; font-size: 0.78rem; color: rgba(181,154,106,0.7); }
.download-progress.active { display: flex; }
.progress-bar-wrap { width: 110px; height: 3px; background: rgba(181,154,106,0.15); border-radius: 2px; overflow: hidden; }
.progress-bar-fill { height: 100%; background: var(--gold); border-radius: 2px; transition: width 0.15s ease; width: 0%; }

/* Gallery page buttons */
body.gallery-page .btn-primary {
  background: var(--navy);
  color: #E8E3DC;
  border: 1px solid rgba(181,154,106,0.3);
  padding: 11px 24px;
  border-radius: 3px;
  box-shadow: none;
  letter-spacing: 0.1em;
}
body.gallery-page .btn-primary:hover {
  background: #243447;
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(181,154,106,0.12);
}
body.gallery-page .btn-ghost {
  color: rgba(232,227,220,0.7);
  border-color: rgba(181,154,106,0.2);
}
body.gallery-page .btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─────────────────────────────────────────────────────────
   Lightbox (preserved)
───────────────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.96);
  display: none; align-items: center; justify-content: center;
  padding: 20px; backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lightbox__img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 6px; display: block; }
.lightbox__close {
  position: fixed; top: 20px; right: 24px;
  color: rgba(255,255,255,0.7); width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,0.08);
  transition: color 0.2s, background 0.2s; z-index: 201; cursor: pointer;
}
.lightbox__close:hover { color: #fff; background: rgba(255,255,255,0.15); }
.lightbox__nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,0.7); width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,0.08);
  transition: color 0.2s, background 0.2s; z-index: 201; cursor: pointer;
}
.lightbox__nav:hover { color: #fff; background: rgba(255,255,255,0.18); }
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__counter {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 0.8rem; letter-spacing: 0.06em;
}

/* ─────────────────────────────────────────────────────────
   404
───────────────────────────────────────────────────────── */
.not-found {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 40px 24px;
  background: var(--bg);
}
.not-found__logo { margin-bottom: 48px; }
.not-found__logo img { height: 56px; }
.not-found__code {
  font-family: var(--serif);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 300; line-height: 1;
  color: rgba(181,154,106,0.15);
  margin-bottom: 8px;
}
.not-found__title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400; color: var(--ink); margin-bottom: 16px;
}
.not-found__sub {
  color: var(--ink-2); max-width: 360px;
  margin-bottom: 40px; line-height: 1.7;
  font-size: var(--text-sm);
}

/* ─────────────────────────────────────────────────────────
   Responsive
───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Switch nav from fixed → sticky so hero content starts naturally below it.
     No padding-top hacks needed — the nav is in document flow.
     No backdrop-filter here: it would break position:fixed on .nav__mobile child. */
  .nav {
    position: sticky;
    top: 0;
    background: rgba(249, 246, 241, 0.98);
    border-bottom-color: var(--gold-border);
  }

  .hero__layout {
    grid-template-columns: 1fr;
    padding-top: 56px;
    padding-bottom: 60px;
    min-height: unset;
  }
  .hero { min-height: auto; }
  /* Mobile hero: full-width image carousel replaces the collage.
     JS hides the whole collage if no images are uploaded yet. */
  .hero__collage {
    display: block;
    height: 420px;
    margin-top: 32px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
  }
  /* Hide all individual photo slots — JS carousel takes over */
  .hero__photo { display: none; }
  /* Badge floats over the carousel */
  .hero__badge {
    bottom: 18px;
    left: 18px;
    z-index: 4;
  }
  .hero__wordmark { font-size: clamp(6rem, 22vw, 14rem); }
  .hero__scroll { display: none; }

  .feature-work {
    grid-template-columns: 1fr;
  }
  .feature-work__photo {
    height: 260px;
  }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .process__connector {
    flex-direction: row;
    padding: 16px 0;
    margin-top: 0;
  }
  .process__connector-arrow { transform: none; }
  .process__connector-line { width: 20px; height: 1px; }

  .gallery-feature__inner {
    grid-template-columns: 1fr;
  }
  .browser-mock { transform: none; max-width: 400px; }
  .browser-mock:hover { transform: none; }

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

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

  .photo-grid { grid-template-columns: repeat(3, 1fr); }
  /* Keep gallery header info visible on tablet — hide only below 480px if space is tight */
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__hamburger { display: flex; }
  .nav { padding: 10px 0; }
  .nav__logo img { height: 36px; }

  .hero__layout { padding-top: 40px; }
  .hero__title { letter-spacing: -0.02em; }

  .services__grid {
    grid-template-columns: 1fr;
    border-top: none;
  }
  .service {
    border-right: none;
    border-top: 1px solid var(--gold-border);
    padding: clamp(36px, 5vw, 52px) 0;
  }
  .service:not(:first-child) { padding-left: 0; }
  .service__num { right: 0; font-size: clamp(4rem, 12vw, 6rem); }

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

  .footer__inner { grid-template-columns: 1fr; gap: 36px; }

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

  /* Rates — stack to single column */
  .rates__grid { grid-template-columns: 1fr; gap: 14px; }

  /* Portfolio feature — shrink height on tablet */
  .portfolio__feature { height: 480px; }
}

@media (max-width: 600px) {
  /* Portfolio feature — stack every image full-width in its own frame */
  .portfolio__feature {
    flex-direction: column;
    height: auto;
    gap: 14px;
  }
  .pf-tall {
    flex: none;
    aspect-ratio: 4 / 5;
    width: 100%;
  }
  .pf-right {
    flex: none;
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 14px;
  }
  .pf-short {
    flex: none;
    width: 100%;
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }

  /* Keep lightbox nav visible on mobile but make it compact */
  .lightbox__nav {
    width: 36px;
    height: 36px;
    bottom: 80px;
    top: auto;
    transform: none;
  }
  .lightbox__prev { left: 12px; }
  .lightbox__next { right: 12px; }

  /* Rates on small phones */
  .rates__title,
  .portfolio__title { font-size: clamp(1.75rem, 8vw, 2.4rem); }

  /* Portfolio — tighter rows on small phones */
  .portfolio__grid { grid-auto-rows: 200px; }

  /* Gallery page — compact header on small screens */
  .gallery-header__logo img { height: 30px; }
  .gallery-header__name { font-size: 1rem; }
  .gallery-header__actions { gap: 6px; }
  .gallery-header__actions .btn { padding: 8px 12px; font-size: 0.65rem; }

  /* Picks bar — hide hint text on small screens */
  .picks-bar__hint { display: none; }

  /* Name modal sizing */
  .name-modal { padding: 32px 24px; }
}

/* ─────────────────────────────────────────────────────────
   Hero Carousel (mobile / tablet ≤ 1024px)
───────────────────────────────────────────────────────── */
/* ── Hero carousel (transform-based, works on all mobile browsers) ── */
.hero-carousel {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
}
.hero-carousel__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.hero-carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.hero-carousel__dots {
  position: absolute;
  bottom: 14px;
  right: 16px;
  display: flex;
  gap: 6px;
  z-index: 3;
}
.hero-carousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.hero-carousel__dot.active { background: #fff; transform: scale(1.3); }

/* ── Portfolio mobile slider ── */
/* ── Portfolio feature: 1 tall + 2 short auto-cycling layout ── */
.portfolio__feature {
  display: flex;
  gap: 10px;
  height: 620px;
}
.pf-tall {
  flex: 0 0 42%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.pf-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pf-short {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
/* Crossfade images */
.pf-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
  will-change: opacity;
}
.pf-img--active { opacity: 1; }

/* Controls reused from slider */
.portfolio-slider {
  width: 100%;
  position: relative;
}
.portfolio-slider__ctrl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}
.portfolio-slider__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(181,154,106,0.12);
  border: 1px solid rgba(181,154,106,0.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.portfolio-slider__arrow:hover { background: rgba(181,154,106,0.22); }
.portfolio-slider__dots {
  display: flex;
  gap: 6px;
}
.portfolio-slider__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(181,154,106,0.4);
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.portfolio-slider__dot.active { background: var(--gold); }

/* ── Portfolio lightbox ──────────────────────────────────── */
.pf-lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.93);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.pf-lightbox.open { opacity: 1; pointer-events: all; }
.pf-lightbox__img-wrap {
  max-width: 90vw; max-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}
.pf-lightbox__img-wrap img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain; border-radius: 6px;
  display: block;
  transition: opacity 0.2s ease;
}
.pf-lightbox__close {
  position: absolute; top: 18px; right: 22px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; border-radius: 50%; width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s;
}
.pf-lightbox__close:hover { background: rgba(255,255,255,0.2); }
.pf-lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; border-radius: 50%; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s;
}
.pf-lightbox__nav:hover { background: rgba(255,255,255,0.22); }
.pf-lightbox__prev { left: 20px; }
.pf-lightbox__next { right: 20px; }

/* Clickable slots */
.pf-tall, .pf-short { cursor: pointer; }

/* ─────────────────────────────────────────────────────────
   Gallery — Proof mode & Final mode additions
───────────────────────────────────────────────────────── */

/* Proof mode banner */
.proof-banner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(181,154,106,0.08);
  border: 1px solid rgba(181,154,106,0.2);
  border-radius: 6px;
  padding: 14px 18px;
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 28px;
}
.proof-banner svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* Picks bar (proof mode — fixed below header) */
.picks-bar {
  background: rgba(28,43,58,0.96);
  border-bottom: 1px solid rgba(181,154,106,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  position: sticky;
  top: 64px;
  z-index: 90;
}
.picks-bar__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.picks-bar__label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 500;
}
.picks-bar__label svg { fill: var(--gold); }
.picks-bar__hint {
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
  flex: 1;
}

/* Select bar (final mode — fixed below header) */
.select-bar {
  background: rgba(28,43,58,0.96);
  border-bottom: 1px solid rgba(181,154,106,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  position: sticky;
  top: 64px;
  z-index: 90;
}
.select-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.select-bar__label {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
}
.select-bar__label span { color: var(--gold); font-weight: 600; }

/* Photo card — overlay with action buttons */
.photo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 10px;
  opacity: 0.45;
  transition: opacity 200ms;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
  pointer-events: none;
}
.photo-overlay > * { pointer-events: all; }
.photo-item:hover .photo-overlay { opacity: 1; }
.photo-item.picked .photo-overlay,
.photo-item.selected .photo-overlay,
.photo-item.liked .photo-overlay { opacity: 1; }

.photo-pick-btn,
.photo-like-btn,
.photo-select-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms, background 180ms, color 180ms;
  flex-shrink: 0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Proof pick / final like — heart */
.photo-pick-btn,
.photo-like-btn {
  background: rgba(0,0,0,0.45);
  color: rgba(255,255,255,0.8);
}
.photo-pick-btn:hover,
.photo-like-btn:hover {
  background: rgba(181,154,106,0.25);
  color: var(--gold);
  transform: scale(1.12);
}
.photo-item.picked .photo-pick-btn,
.photo-item.liked  .photo-like-btn {
  background: rgba(181,154,106,0.8);
  color: #fff;
}

/* Select / check button */
.photo-select-btn {
  background: rgba(0,0,0,0.45);
  color: rgba(255,255,255,0.7);
}
.photo-select-btn:hover { background: rgba(255,255,255,0.18); color: #fff; transform: scale(1.1); }
.photo-item.selected .photo-select-btn {
  background: var(--gold);
  color: #fff;
}

/* Card ring states */
.photo-item.picked   { outline: 2px solid var(--gold); outline-offset: -2px; }
.photo-item.liked    { outline: 2px solid var(--gold); outline-offset: -2px; }
.photo-item.selected { outline: 2px solid rgba(181,154,106,0.6); outline-offset: -2px; }

/* Lightbox — pick button */
.lightbox__pick {
  position: absolute;
  bottom: 56px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 24px;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: border-color 180ms, background 180ms, color 180ms, transform 180ms;
}
.lightbox__pick:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.lightbox__pick.picked {
  border-color: var(--gold);
  background: rgba(181,154,106,0.25);
  color: var(--gold);
}
.lightbox__pick.picked svg { fill: var(--gold); }

/* Lightbox — like + download buttons (final mode) */
.lightbox__like,
.lightbox__download {
  position: absolute;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 24px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--sans);
  cursor: pointer;
  transition: border-color 180ms, background 180ms, color 180ms, transform 180ms;
}
.lightbox__like   { right: 80px; }
.lightbox__download { right: 24px; }
.lightbox__like:hover,
.lightbox__download:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.lightbox__like.liked {
  border-color: var(--gold);
  background: rgba(181,154,106,0.2);
  color: var(--gold);
}
.lightbox__like.liked svg { fill: var(--gold); }
.lightbox__download:disabled { opacity: 0.5; cursor: wait; }

/* Name modal (proof mode gate) */
.name-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,13,17,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms;
}
.name-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.name-modal {
  background: #111519;
  border: 1px solid rgba(181,154,106,0.18);
  border-radius: 12px;
  padding: clamp(32px, 5vw, 52px) clamp(28px, 5vw, 48px);
  width: 100%;
  max-width: 420px;
  text-align: center;
  transform: translateY(24px);
  transition: transform 300ms cubic-bezier(0.16,1,0.3,1);
}
.name-modal-overlay.open .name-modal { transform: translateY(0); }
.name-modal__logo {
  margin-bottom: 24px;
}
.name-modal__logo img {
  height: 56px;
  width: auto;
  margin: 0 auto;
  display: block;
  opacity: 0.85;
}
.name-modal__title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 12px;
}
.name-modal__sub {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 28px;
}
.name-modal__input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(181,154,106,0.22);
  border-radius: 6px;
  padding: 14px 16px;
  color: #fff;
  font-size: 1rem;
  font-family: var(--sans);
  outline: none;
  transition: border-color 180ms;
  margin-bottom: 10px;
  text-align: center;
}
.name-modal__input::placeholder { color: rgba(255,255,255,0.28); }
.name-modal__input:focus { border-color: var(--gold); }
.name-modal__error {
  color: #e74c3c;
  font-size: 0.75rem;
  min-height: 18px;
  margin-bottom: 8px;
}
.name-modal__btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}

/* btn-sm helper for gallery bars */
body.gallery-page .btn-sm {
  padding: 7px 14px;
  font-size: 0.65rem;
}

/* ── Quality preference modal ────────────────────────────────────────────── */
.quality-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms;
}
.quality-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.quality-modal {
  background: #0e1318;
  border: 1px solid rgba(181,154,106,0.18);
  border-radius: 12px;
  padding: 36px 32px;
  width: 100%;
  max-width: 400px;
  transform: translateY(24px);
  transition: transform 260ms cubic-bezier(0.25,0.46,0.45,0.94);
}
.quality-modal-overlay.open .quality-modal {
  transform: translateY(0);
}
.quality-modal__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.quality-modal__logo img {
  height: 32px;
  width: auto;
  opacity: 0.85;
}
.quality-modal__title {
  font-family: var(--font-head, 'Cormorant Garamond', serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
  text-align: center;
  margin-bottom: 6px;
}
.quality-modal__sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-bottom: 24px;
}

/* Quality option cards */
.quality-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  color: #e8e3dc;
  transition: border-color 180ms, background 180ms;
  margin-bottom: 10px;
}
.quality-option:last-of-type { margin-bottom: 0; }
.quality-option:hover {
  border-color: rgba(181,154,106,0.4);
  background: rgba(181,154,106,0.06);
}
.quality-option.selected {
  border-color: var(--gold, #B59A6A);
  background: rgba(181,154,106,0.1);
}
.quality-option__icon {
  flex-shrink: 0;
  color: var(--gold, #B59A6A);
  opacity: 0.8;
}
.quality-option__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.quality-option__text strong {
  font-size: 0.88rem;
  font-weight: 500;
  color: #fff;
}
.quality-option__text span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}
.quality-option__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(181,154,106,0.15);
  border: 1px solid rgba(181,154,106,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold, #B59A6A);
  opacity: 0;
  transition: opacity 160ms;
}
.quality-option.selected .quality-option__check { opacity: 1; }

/* "Don't ask again" checkbox inside quality modal */
.quality-dont-ask {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  cursor: pointer;
  user-select: none;
}
.quality-dont-ask input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.quality-dont-ask__box {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid rgba(181,154,106,0.4);
  background: rgba(181,154,106,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold, #B59A6A);
  transition: background 150ms, border-color 150ms;
}
.quality-dont-ask__box svg { opacity: 0; transition: opacity 150ms; }
.quality-dont-ask input:checked ~ .quality-dont-ask__box {
  background: rgba(181,154,106,0.2);
  border-color: rgba(181,154,106,0.7);
}
.quality-dont-ask input:checked ~ .quality-dont-ask__box svg { opacity: 1; }
.quality-dont-ask__label {
  font-size: 0.78rem;
  color: var(--text-muted, rgba(255,255,255,0.45));
  line-height: 1.3;
}
.quality-dont-ask:hover .quality-dont-ask__box {
  border-color: rgba(181,154,106,0.6);
}

/* Quality toggle button in gallery header */
.gallery-quality-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(181,154,106,0.08);
  border: 1px solid rgba(181,154,106,0.2);
  border-radius: 6px;
  color: rgba(181,154,106,0.8);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: border-color 180ms, background 180ms, color 180ms;
  white-space: nowrap;
}
.gallery-quality-btn:hover {
  border-color: rgba(181,154,106,0.5);
  background: rgba(181,154,106,0.14);
  color: var(--gold, #B59A6A);
}
@media (max-width: 480px) {
  .quality-modal { padding: 28px 20px; }
  .gallery-quality-btn span { display: none; }
  .gallery-quality-btn { padding: 8px 10px; }
}
