/* ── TOKENS ────────────────────────────────────────────────── */
:root {
  --bg:        #0C0C0B;
  --surface:   #141412;
  --surface2:  #1A1A18;
  --text:      #F0EBE3;
  --text-dim:  #7A756E;
  --text-mid:  #B0AA9F;
  --gold:      #C4A87A;
  --gold-dim:  #7A6848;
  --rule:      #272520;
  --white:     #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
  --space-2xl: 12rem;

  --max-w: 1200px;
  --max-w-text: 680px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── PLACEHOLDERS ──────────────────────────────────────────── */
.image-placeholder {
  background: var(--surface2);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  width: 100%;
}
.image-placeholder span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  font-style: italic;
  letter-spacing: 0.03em;
}
.image-placeholder.tall { min-height: 520px; }
.image-placeholder.square { min-height: 360px; }
.image-placeholder.gallery-ph { min-height: 280px; height: 100%; }

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  font-weight: 400;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: var(--space-md);
}
.section-heading em {
  font-style: italic;
  color: var(--gold);
}
.body-text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: var(--space-sm);
}
.body-text:last-child { margin-bottom: 0; }
.centered { text-align: center; }
.max-600 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── RULE ──────────────────────────────────────────────────── */
.rule {
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
  margin-bottom: var(--space-lg);
}
.section .centered + .rule,
.rule { margin-left: 0; }

/* ── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--space-lg);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
.nav.scrolled {
  background: rgba(12, 12, 11, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text);
}
.nav-links {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}
.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  color: var(--gold) !important;
  border: 1px solid var(--gold-dim);
  padding: 0.5rem 1.2rem;
  transition: border-color 0.2s, color 0.2s !important;
}
.nav-cta:hover {
  border-color: var(--gold);
}
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: var(--space-xl) var(--space-lg);
}
.hero-image-wrap {
  position: absolute;
  inset: 0;
}
.hero-placeholder {
  width: 100%;
  height: 100%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-placeholder span {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-style: italic;
  letter-spacing: 0.05em;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12,12,11,0.95) 0%,
    rgba(12,12,11,0.5) 50%,
    rgba(12,12,11,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: var(--space-md);
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 480px;
  margin-bottom: var(--space-md);
  line-height: 1.75;
}
.hero-btn {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 0.25rem;
  transition: border-color 0.2s, color 0.2s;
}
.hero-btn:hover { border-color: var(--gold); }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: var(--space-lg);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold-dim));
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── SECTIONS ──────────────────────────────────────────────── */
.section {
  padding: var(--space-xl) var(--space-lg);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ── ABOUT ─────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.about-text { padding-right: var(--space-md); }

/* ── PROCESS ───────────────────────────────────────────────── */
.process-steps {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.process-step.reverse { direction: rtl; }
.process-step.reverse > * { direction: ltr; }

.step-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: var(--space-xs);
}
.step-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  color: var(--text);
}
.process-note {
  margin-top: var(--space-xl);
  font-size: 0.85rem;
  color: var(--text-dim);
  font-style: italic;
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ── GALLERY ───────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1px;
  margin-top: var(--space-lg);
  background: var(--rule);
}
.gallery-item { background: var(--bg); overflow: hidden; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ── PRICING ───────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: var(--space-lg);
  background: var(--rule);
}
.pricing-card {
  background: var(--surface);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}
.pricing-card:hover { background: var(--surface2); }
.pricing-card.featured { background: var(--surface2); }
.pricing-name {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: var(--space-md);
  line-height: 1;
}
.pricing-details {
  flex: 1;
  margin-bottom: var(--space-md);
}
.pricing-details li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--rule);
  font-weight: 300;
  line-height: 1.5;
}
.pricing-details li:first-child { border-top: 1px solid var(--rule); }
.pricing-btn {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 0.85rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}
.pricing-btn:hover {
  border-color: var(--gold);
  background: rgba(196, 168, 122, 0.06);
}
.pricing-note {
  margin-top: var(--space-md);
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
  font-style: italic;
}
.pricing-note a {
  color: var(--gold-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials { background: var(--surface); max-width: 100%; padding: var(--space-xl) var(--space-lg); }
.testimonial-wrap {
  max-width: 680px;
  margin: 0 auto;
}
.testimonial-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: var(--space-md);
}
.testimonial-quote cite {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-style: normal;
}

/* ── STUDIO ────────────────────────────────────────────────── */
.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: center;
}

/* ── CONTACT ───────────────────────────────────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: var(--space-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-group input,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--rule);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold-dim); }
.form-group textarea { min-height: 160px; }
.form-submit {
  align-self: flex-start;
  background: none;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2.5rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.form-submit:hover {
  border-color: var(--gold);
  background: rgba(196, 168, 122, 0.06);
}
.contact-direct { padding-top: var(--space-md); }
.contact-email {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: var(--space-md);
  transition: color 0.2s;
}
.contact-email:hover { color: var(--gold); }
.contact-location {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.8;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--rule);
  padding: var(--space-lg);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--text);
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-dim);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin: var(--space-sm) 0;
}
.footer-nav a {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* ── SCROLL REVEALS ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  :root {
    --space-lg: 2rem;
    --space-xl: 4rem;
  }
  .about-grid,
  .studio-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .about-text { padding-right: 0; }
  .process-step,
  .process-step.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: var(--space-md);
  }
  .pricing-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
}

@media (max-width: 560px) {
  .hero { padding: var(--space-xl) var(--space-sm); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .section { padding: var(--space-lg) var(--space-sm); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll-hint span { animation: none; }
}
