/* ========================================
   ALEE PRODUCTIONS — Design System
   Editorial luxury aesthetic
   ======================================== */

:root {
  /* Color palette — ink, cream, antique gold */
  --ink: #0E0E0C;
  --ink-soft: #1A1A17;
  --cream: #F5F0E6;
  --cream-warm: #EDE5D3;
  --bone: #FAF7F0;
  --gold: #B89968;
  --gold-deep: #8C6E3F;
  --gold-light: #D4BB8A;
  --muted: #5A5A52;
  --line: rgba(14, 14, 12, 0.12);
  --line-cream: rgba(245, 240, 230, 0.18);

  /* Typography */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', 'Manrope', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Layout */
  --container: 1320px;
  --gutter: clamp(1.5rem, 4vw, 3rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  overflow-x: hidden;
}

/* ====== Typography ====== */
.display {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: normal;
  letter-spacing: -0.02em;
  line-height: 0.95;
  font-variation-settings: "SOFT" 50, "WONK" 0;
}

.display em, .display i {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  color: var(--gold);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.eyebrow.light { color: var(--gold-light); }

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

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

/* ====== Layout ====== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-wide {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ====== Navigation ====== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.4rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s var(--ease);
  mix-blend-mode: difference;
}

.nav.scrolled {
  mix-blend-mode: normal;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem var(--gutter);
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--cream);
  transition: color 0.4s;
}

.nav-brand .amp {
  color: var(--gold-light);
  font-style: italic;
}

.nav.scrolled .nav-brand { color: var(--ink); }
.nav.scrolled .nav-brand .amp { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2.4rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.nav.scrolled .nav-links a { color: var(--ink); }

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

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 0.7rem 1.4rem !important;
  border: 1px solid var(--cream);
  border-radius: 999px;
  transition: all 0.3s !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--cream);
  color: var(--ink) !important;
}

.nav.scrolled .nav-cta {
  border-color: var(--ink);
}

.nav.scrolled .nav-cta:hover {
  background: var(--ink);
  color: var(--cream) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--cream);
}

.nav.scrolled .nav-toggle { color: var(--ink); }

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: currentColor;
  margin: 6px 0;
  transition: all 0.3s;
}

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  border: 1px solid;
  border-radius: 999px;
  background: transparent;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}

.btn-ghost:hover {
  background: var(--cream);
  color: var(--ink);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn .arrow {
  transition: transform 0.4s var(--ease);
  display: inline-block;
}

.btn:hover .arrow { transform: translateX(6px); }

/* ====== Hero ====== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 0 0 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: contrast(1.05) saturate(0.85);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,14,12,0.35) 0%, rgba(14,14,12,0.2) 35%, rgba(14,14,12,0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-cream);
}

.hero-title {
  font-size: clamp(3.5rem, 9.5vw, 9.5rem);
  margin-bottom: 0;
  letter-spacing: -0.035em;
}

.hero-eyebrow {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  content: '';
  width: 50px;
  height: 1px;
  background: var(--gold-light);
}

.hero-sub {
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  max-width: 480px;
  color: rgba(245, 240, 230, 0.78);
  line-height: 1.65;
  font-weight: 300;
}

.hero-detail {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.6);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: right;
}

.hero-detail span:first-child {
  color: var(--gold-light);
  font-size: 0.7rem;
}

/* Hero scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.6);
}

.scroll-indicator .line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--gold-light), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.6); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ====== Sections ====== */
section {
  padding: clamp(5rem, 12vh, 10rem) 0;
  position: relative;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: end;
}

.section-head h2 {
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  letter-spacing: -0.025em;
}

.section-head p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.75;
}

.section-head .eyebrow {
  display: block;
  margin-bottom: 1.2rem;
}

/* ====== Intro / Manifesto ====== */
.manifesto {
  background: var(--bone);
  padding: clamp(6rem, 14vh, 12rem) 0;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.manifesto-text h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  margin: 1.5rem 0 2rem;
  letter-spacing: -0.025em;
}

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

.manifesto-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.manifesto-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.manifesto-image:hover img { transform: scale(1.05); }

.manifesto-image .tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(14, 14, 12, 0.7);
  backdrop-filter: blur(10px);
  color: var(--cream);
  padding: 0.6rem 1.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* ====== Services ====== */
.services {
  background: var(--ink);
  color: var(--cream);
}

.services .section-head h2 { color: var(--cream); }
.services .section-head p { color: rgba(245,240,230,0.65); }

.services-list {
  border-top: 1px solid var(--line-cream);
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr auto;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line-cream);
  transition: padding 0.5s var(--ease), background 0.5s var(--ease);
  cursor: pointer;
  position: relative;
}

.service-row:hover {
  padding-left: 1.5rem;
  background: linear-gradient(90deg, rgba(184,153,104,0.06), transparent);
}

.service-number {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  font-style: italic;
}

.service-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.1;
  transition: color 0.4s;
}

.service-row:hover .service-name { color: var(--gold-light); }

.service-desc {
  color: rgba(245,240,230,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 520px;
}

.service-arrow {
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.4s var(--ease);
}

.service-row:hover .service-arrow { transform: translateX(8px) rotate(-45deg); }

/* ====== Featured Work ====== */
.featured-work {
  background: var(--cream);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.work-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

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

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

.work-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14,14,12,0.85));
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.5s;
}

.work-item:hover .overlay { opacity: 1; }

.work-item .overlay-content {
  color: var(--cream);
  transform: translateY(20px);
  transition: transform 0.5s var(--ease);
}

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

.work-item .overlay-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  margin-bottom: 0.3rem;
}

.work-item .overlay-meta {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.work-item.large { grid-column: span 8; aspect-ratio: 16/10; }
.work-item.medium { grid-column: span 4; aspect-ratio: 4/5; }
.work-item.wide { grid-column: span 7; aspect-ratio: 4/3; }
.work-item.tall { grid-column: span 5; aspect-ratio: 4/5; }
.work-item.square { grid-column: span 4; aspect-ratio: 1/1; }

/* ====== Stats / Numbers ====== */
.stats {
  background: var(--ink);
  color: var(--cream);
  padding: 6rem 0;
  border-top: 1px solid var(--line-cream);
  border-bottom: 1px solid var(--line-cream);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  text-align: center;
}

.stat-item {
  border-right: 1px solid var(--line-cream);
  padding: 0 2rem;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.stat-number em { font-style: italic; color: var(--gold); }

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.55);
}

/* ====== Testimonials ====== */
.testimonial-section {
  background: var(--cream-warm);
  padding: clamp(6rem, 12vh, 10rem) 0;
}

.testimonial {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonial .quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  font-style: italic;
  line-height: 0.5;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-style: italic;
}

.testimonial cite {
  display: block;
  margin-top: 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-style: normal;
}

/* ====== CTA Section ====== */
.cta-section {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(6rem, 14vh, 12rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(184,153,104,0.18), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(184,153,104,0.08), transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.cta-content h2 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  margin: 1.5rem 0 2rem;
  letter-spacing: -0.025em;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(245,240,230,0.7);
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

/* ====== Footer ====== */
.footer {
  background: #060604;
  color: var(--cream);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.footer-brand em { color: var(--gold); font-style: italic; }

.footer-tagline {
  color: rgba(245,240,230,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 360px;
}

.footer-heading {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: rgba(245,240,230,0.75);
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid var(--line-cream);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(245,240,230,0.5);
  letter-spacing: 0.06em;
}

/* ====== Page header (interior pages) ====== */
.page-header {
  background: var(--ink);
  color: var(--cream);
  padding: 12rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(184,153,104,0.15), transparent 50%);
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: -0.035em;
  margin: 1.5rem 0 1.5rem;
  max-width: 1100px;
}

.page-header .lede {
  font-size: 1.15rem;
  color: rgba(245,240,230,0.7);
  max-width: 540px;
  line-height: 1.7;
}

.breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.breadcrumb a { color: rgba(245,240,230,0.5); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ====== Inquire (Contact) Form ====== */
.inquire-section {
  padding: 6rem 0;
  background: var(--bone);
}

.inquire-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6rem;
}

.inquire-info h2 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 1.5rem 0 2rem;
  letter-spacing: -0.025em;
}

.inquire-info p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.contact-block {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.8rem;
}

.contact-item .label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.contact-item .value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
  font-weight: 300;
}

.contact-item .value:hover { color: var(--gold); }

/* Form */
.form-card {
  background: var(--cream);
  padding: 3.5rem;
  position: relative;
  border: 1px solid var(--line);
}

.form-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 40px;
  height: 40px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.form-card::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 40px;
  height: 40px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.form-eyebrow {
  margin-bottom: 0.5rem;
}

.form-title {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.form-title em { color: var(--gold); font-style: italic; }

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

.form-field {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.6rem;
}

.form-field label .req { color: var(--gold); }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  font-weight: 300;
  transition: border-color 0.3s;
}

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

.form-field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23B89968'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right center; background-size: 18px; padding-right: 24px; }

.form-field textarea {
  resize: vertical;
  min-height: 100px;
  font-family: var(--font-body);
}

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

/* Event type chips */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.chip {
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--muted);
  background: transparent;
  font-family: var(--font-body);
}

.chip:hover { border-color: var(--gold); color: var(--ink); }

.chip.selected {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* ====== About Page Specific ====== */
.story-section {
  padding: clamp(5rem, 10vh, 8rem) 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.story-grid.reverse .story-image { order: 2; }

.story-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 1.5rem 0 2rem;
  letter-spacing: -0.025em;
}

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

.specialty-list {
  background: var(--ink);
  color: var(--cream);
  padding: 5rem 0;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-cream);
  margin-top: 4rem;
  border: 1px solid var(--line-cream);
}

.specialty-item {
  background: var(--ink);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: background 0.4s;
  cursor: default;
  border-right: none;
}

.specialty-item:hover {
  background: var(--ink-soft);
}

.specialty-item .icon {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 0.8rem;
}

.specialty-item .name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: -0.005em;
}

/* ====== Portfolio Page ====== */
.portfolio-filters {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

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

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/5;
}

.portfolio-item:nth-child(4n+1) { aspect-ratio: 4/5; }
.portfolio-item:nth-child(4n+2) { aspect-ratio: 4/5; }
.portfolio-item:nth-child(4n+3) { aspect-ratio: 4/5; }
.portfolio-item:nth-child(6n) { grid-row: span 1; }

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 0.5s;
}

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

.portfolio-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14,14,12,0.85));
  display: flex;
  align-items: flex-end;
  padding: 1.8rem;
  opacity: 0;
  transition: opacity 0.5s;
}

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

.portfolio-item .overlay-content {
  color: var(--cream);
}

.portfolio-item .overlay-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 0.2rem;
}

.portfolio-item .overlay-meta {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ====== Services Page ====== */
.service-detail {
  padding: clamp(4rem, 8vh, 7rem) 0;
  border-bottom: 1px solid var(--line);
}

.service-detail:nth-child(even) {
  background: var(--cream);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.service-detail .number {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.05em;
}

.service-detail h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  margin: 1rem 0 1.5rem;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.service-detail .desc {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.service-detail .image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-detail .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail .feature-list {
  list-style: none;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.service-detail .feature-list li {
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.service-detail .feature-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.8rem;
}

/* ====== Animations ====== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ====== Marquee ====== */
.marquee {
  background: var(--cream-warm);
  padding: 2.5rem 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 4rem;
}

.marquee-item em {
  color: var(--gold);
  font-style: italic;
}

.marquee-item::after {
  content: '✦';
  color: var(--gold);
  font-size: 1rem;
  display: inline-block;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ====== Mobile menu ====== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 99;
  display: none;
  flex-direction: column;
  padding: 6rem var(--gutter) 3rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.mobile-menu ul li {
  border-bottom: 1px solid var(--line-cream);
}

.mobile-menu ul a {
  display: block;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  font-weight: 300;
}

.mobile-menu ul a:hover { color: var(--gold-light); }

/* ====== Responsive ====== */
@media (max-width: 1024px) {
  .work-item.large,
  .work-item.medium,
  .work-item.wide,
  .work-item.tall,
  .work-item.square {
    grid-column: span 6;
    aspect-ratio: 4/3;
  }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .specialty-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .section-head,
  .manifesto-grid,
  .story-grid,
  .inquire-grid,
  .service-detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-grid.reverse .story-image { order: 0; }

  .footer-grid { gap: 2.5rem; }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .work-item.large,
  .work-item.medium,
  .work-item.wide,
  .work-item.tall,
  .work-item.square {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }

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

  .service-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .service-row .service-arrow { display: none; }
  .service-number { font-size: 0.9rem; }

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

  .form-card { padding: 2rem; }

  .hero-meta { flex-direction: column; align-items: flex-start; }
  .hero-detail { text-align: left; }
}

@media (max-width: 480px) {
  .specialty-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--line-cream); padding-bottom: 2rem; }
  .stat-item:last-child { border-bottom: none; }
}

/* ============================================
   WEDDING INTAKE FORM
   ============================================ */

.intake-wrapper {
  background: var(--bone);
  padding: 4rem 0 6rem;
  position: relative;
}

.intake-layout {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Sticky progress rail */
.progress-rail {
  position: sticky;
  top: 7rem;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-top: 1rem;
}

.progress-dot {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  padding: 0;
  font-family: var(--font-body);
  color: var(--muted);
  opacity: 0.5;
  transition: opacity 0.3s, color 0.3s;
}

.progress-dot .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  flex-shrink: 0;
  transition: all 0.4s var(--ease);
}

.progress-dot .label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
}

.progress-dot:hover { opacity: 1; }
.progress-dot:hover .label { opacity: 1; }

.progress-dot.passed { opacity: 0.7; }
.progress-dot.passed .dot { background: var(--gold-deep); }

.progress-dot.active {
  opacity: 1;
  color: var(--ink);
}

.progress-dot.active .dot {
  background: var(--gold);
  transform: scale(1.6);
  box-shadow: 0 0 0 4px rgba(184, 153, 104, 0.18);
}

.progress-dot.active .label { opacity: 1; color: var(--gold-deep); font-weight: 500; }

/* Intake card */
.intake-card {
  background: var(--cream);
  padding: 4rem;
  position: relative;
  border: 1px solid var(--line);
}

.intake-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 50px;
  height: 50px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.intake-card::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 50px;
  height: 50px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

/* Section block */
.intake-section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 6rem;
}

.intake-section:first-of-type { padding-top: 0; }
.intake-section:last-of-type { border-bottom: none; }

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

.section-number {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-number::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-left: 0.5rem;
  max-width: 80px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.section-title em { color: var(--gold); font-style: italic; }

.section-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 580px;
}

/* Sub-section heading inside a section */
.sub-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  margin: 2rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--line);
  font-style: italic;
}

.sub-heading:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

/* Form grids */
.field-grid {
  display: grid;
  gap: 1.5rem 1.8rem;
}

.field-grid-2 { grid-template-columns: 1fr 1fr; }
.field-grid-3 { grid-template-columns: 1fr 1fr 1fr; }

.field-full { grid-column: 1 / -1; }

/* Reuse form-field styles, but adapt */
.intake-card .form-field { margin-bottom: 0; }

/* Vendor grid */
.vendor-list {
  display: grid;
  gap: 1.5rem;
}

.vendor-row {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.vendor-row:last-child { border-bottom: none; }

.vendor-label {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink);
  font-style: italic;
}

.vendor-row input {
  width: 100%;
  padding: 0.7rem 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 300;
  transition: border-color 0.3s;
}

.vendor-row input:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.vendor-row input::placeholder {
  color: rgba(90, 90, 82, 0.4);
  font-size: 0.85rem;
}

/* Acknowledgment block */
.acknowledgment {
  background: var(--bone);
  padding: 2.5rem;
  margin-top: 2rem;
  border: 1px solid var(--line);
}

.acknowledgment p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.5;
}

.checkbox-row input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid var(--gold-deep);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
  transition: all 0.3s;
}

.checkbox-row input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}

.checkbox-row input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Submit area */
.intake-submit {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

.intake-submit .btn {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  padding: 1.2rem 2.5rem;
}

.intake-submit-note {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 1.5rem;
  line-height: 1.6;
}

/* Success / Error banners */
.success-banner,
.error-banner {
  max-width: 900px;
  margin: 0 auto 3rem;
  padding: 2.5rem;
  text-align: center;
  position: relative;
}

.success-banner {
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--gold);
}

.success-banner::before {
  content: '✦';
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.success-banner h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.success-banner h3 em { color: var(--gold-light); font-style: italic; }

.success-banner p {
  color: rgba(245, 240, 230, 0.75);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

.error-banner {
  background: rgba(184, 60, 60, 0.06);
  border: 1px solid rgba(184, 60, 60, 0.3);
  color: #6b2828;
}

.error-banner h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

/* Field error highlight */
.form-field.error input,
.form-field.error select,
.form-field.error textarea {
  border-bottom-color: #b83c3c !important;
}

.form-field .error-text,
.checkbox-row .error-text {
  font-size: 0.78rem;
  color: #b83c3c;
  margin-top: 0.4rem;
  display: none;
  letter-spacing: 0.02em;
}

.form-field.error .error-text,
.checkbox-row.error .error-text { display: block; }

.checkbox-row.error {
  background: rgba(184, 60, 60, 0.04);
  padding: 0.8rem;
  margin: -0.8rem;
  border-left: 2px solid #b83c3c;
}

.checkbox-row.error input[type="checkbox"] {
  border-color: #b83c3c;
  box-shadow: 0 0 0 3px rgba(184, 60, 60, 0.12);
}

/* Responsive */
@media (max-width: 1024px) {
  .intake-layout { grid-template-columns: 1fr; gap: 2rem; }
  .progress-rail {
    position: relative;
    top: 0;
    flex-direction: row;
    overflow-x: auto;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    gap: 0.6rem;
  }
  .progress-dot .label { display: none; }
  .progress-dot .dot { width: 10px; height: 10px; }
}

@media (max-width: 768px) {
  .intake-card { padding: 2rem; }
  .field-grid-2,
  .field-grid-3 { grid-template-columns: 1fr; }
  .vendor-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.5rem 0;
  }
  .vendor-row input { padding: 0.5rem 0; }
}
