/* ============================================================
   POSTGRAIN STUDIO — v2 stylesheet
   Cream/Dark alternating · Bricolage Grotesque + DM Sans
   ============================================================ */

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

:root {
  /* Cream theme */
  --cream:        #E8E4DC;
  --cream-deep:   #D8D4CB;
  --cream-text:   #1A1814;
  --cream-muted:  #5E5953;
  --cream-border: #C8C4BB;

  /* Dark theme */
  --dark:         #0E0C0A;
  --dark-surface: #181612;
  --dark-card:    #1E1C18;
  --dark-border:  #2E2A25;
  --dark-muted:   #AAA49B;
  --dark-text:    #F0EDE6;

  /* Accent */
  --sage:         #8FAF9F;
  --sage-dim:     #6A8A7A;
  --sage-light:   #B8D4C8;

  /* Type */
  --font-brand:  'Bricolage Grotesque', system-ui, sans-serif;
  --font-body:   'DM Sans', system-ui, sans-serif;

  /* Layout */
  --max-w:    1160px;
  --gutter:   clamp(1.25rem, 5vw, 3.5rem);
  --section:  clamp(5rem, 10vw, 8rem);
}

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

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

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── SECTION THEMES ─────────────────────────────────────── */
.section-cream {
  background: var(--cream);
  color: var(--cream-text);
}
.section-dark {
  background: var(--dark);
  color: var(--dark-text);
}

/* ─── CONTAINER ──────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─── GRAIN TEXTURE ──────────────────────────────────────── */
.grain-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  opacity: 0.045;
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  padding: 0.75rem 1.75rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.22s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-dark {
  background: var(--cream-text);
  color: var(--cream);
  border-color: var(--cream-text);
}
.btn-dark:hover { background: #2E2A24; border-color: #2E2A24; }

.btn-outline-dark {
  background: transparent;
  color: var(--cream-text);
  border-color: var(--cream-border);
}
.btn-outline-dark:hover { border-color: var(--cream-text); }

.btn-sage {
  background: var(--sage);
  color: var(--dark);
  border-color: var(--sage);
  font-weight: 400;
}
.btn-sage:hover { background: var(--sage-light); border-color: var(--sage-light); }

.btn-outline-light {
  background: transparent;
  color: var(--dark-text);
  border-color: var(--dark-border);
}
.btn-outline-light:hover { border-color: var(--dark-muted); }

.btn-full { width: 100%; text-align: center; }

/* ─── SECTION TYPOGRAPHY ─────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}
.section-header { margin-bottom: 3.5rem; }
.section-header h2 {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.section-header h2 em { font-style: italic; font-weight: 400; }
.section-sub {
  font-size: 1rem;
  color: var(--dark-muted);
  line-height: 1.7;
  max-width: 52ch;
}

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--gutter);
  transition: background 0.35s, border-bottom 0.35s, backdrop-filter 0.35s;
}
.nav.scrolled {
  background: rgba(232, 228, 220, 0.92);
  border-bottom: 1px solid var(--cream-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.nav-logo-main {
  font-family: var(--font-brand);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream-text);
  letter-spacing: -0.01em;
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  color: var(--cream-muted);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--cream-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream-text); }
.nav-links .nav-cta {
  color: var(--cream-text);
  border: 1px solid var(--cream-border);
  padding: 0.45rem 1.1rem;
  border-radius: 3px;
  font-weight: 400;
  transition: all 0.2s;
}
.nav-links .nav-cta:hover {
  background: var(--cream-text);
  color: var(--cream);
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream-text);
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── MOBILE MENU ────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--cream);
  padding: 5.5rem var(--gutter) 3rem;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--cream-border);
}
.mobile-menu a {
  display: block;
  font-family: var(--font-brand);
  font-size: clamp(1.75rem, 7vw, 2.5rem);
  font-weight: 600;
  color: var(--cream-text);
  padding: 1rem 0;
  border-bottom: 1px solid var(--cream-border);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu a:hover { color: var(--sage); padding-left: 0.5rem; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 3rem;
  overflow: visible;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  opacity: 0.04;
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 0;
}
.hero-left {
  position: relative;
  z-index: 1;
  padding-top: 5rem;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--sage-dim);
  margin-bottom: 1.5rem;
  display: block;
}
.hero-headline {
  font-family: var(--font-brand);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--cream-text);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}
.hero-headline span { display: block; overflow: hidden; }
.hero-headline .accent-word {
  font-style: italic;
  font-weight: 400;
  color: var(--cream-muted);
}
.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: var(--cream-muted);
  line-height: 1.75;
  max-width: 46ch;
  margin-bottom: 2.25rem;
}
.hero-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--cream-muted);
}
.badge-icon { color: var(--sage-dim); font-size: 0.9rem; }

/* Hero right — image */
.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  padding-top: 5rem;
}
.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.hero-image-inner {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.hero-cinema-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Spinning badge */
.hero-image-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-ring-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 18s linear infinite;
}
.badge-ring-text {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 400;
  fill: var(--cream-muted);
  letter-spacing: 0.08em;
}
.badge-ring-icon {
  font-size: 0;
  width: 28px;
  height: 28px;
  background: var(--cream-text);
  border-radius: 2px;
  position: relative;
  z-index: 1;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Vertical label */
.hero-image-label {
  position: absolute;
  right: -2.25rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center center;
  display: flex;
  gap: 1rem;
  align-items: center;
  white-space: nowrap;
}
.hero-image-label span {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--cream-muted);
  text-transform: uppercase;
}

/* ─── TRUST STRIP ────────────────────────────────────────── */
.trust {
  background: var(--cream-deep);
  border-top: 1px solid var(--cream-border);
  border-bottom: 1px solid var(--cream-border);
  padding: 1.5rem var(--gutter);
  overflow: hidden;
}
.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--cream-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-logos {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  flex-wrap: wrap;
  align-items: center;
}
.trust-logo {
  font-family: var(--font-brand);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cream-muted);
  transition: color 0.25s;
  cursor: default;
  white-space: nowrap;
}
.trust-logo:hover { color: var(--cream-text); }
.trust-verify {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  color: var(--sage-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, color 0.25s;
}
.trust-verify:hover { color: var(--sage); border-color: var(--sage); }

/* ─── SERVICES ───────────────────────────────────────────── */
.services {
  padding: var(--section) 0;
}
.services .section-header h2 { color: var(--dark-text); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--dark-border);
  border: 1px solid var(--dark-border);
  border-radius: 4px;
  overflow: hidden;
}
.service-card {
  background: var(--dark-card);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: background 0.2s;
}
.service-card:hover { background: #242018; }
.service-card--featured {
  background: #1A2820;
}
.service-card--featured:hover { background: #1E3025; }
.service-card--addons {
  background: var(--dark-surface);
  justify-content: flex-start;
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.service-icon {
  width: 36px;
  height: 36px;
  color: var(--sage-dim);
}
.service-icon svg { width: 100%; height: 100%; }

.service-from {
  font-size: 0.72rem;
  color: var(--sage);
  letter-spacing: 0.04em;
}
.service-badge {
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  color: var(--sage);
  border: 1px solid var(--sage-dim);
  padding: 0.18rem 0.55rem;
  border-radius: 2px;
}
.service-card h3 {
  font-family: var(--font-brand);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1.25;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--dark-muted);
  line-height: 1.65;
  flex: 1;
}
.service-list {
  border-top: 1px solid var(--dark-border);
  padding-top: 0.875rem;
}
.service-list li {
  font-size: 0.8rem;
  color: var(--dark-muted);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sage-dim);
  flex-shrink: 0;
}
.service-tiers {
  border-top: 1px solid var(--dark-border);
  padding-top: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--dark-border);
}
.tier span { color: var(--dark-muted); }
.tier strong { color: var(--dark-text); font-weight: 400; }

.addon-list { display: flex; flex-direction: column; gap: 0; }
.addon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--dark-border);
  gap: 1rem;
}
.addon span { color: var(--dark-muted); }
.addon strong { color: var(--dark-text); font-weight: 400; white-space: nowrap; }

/* ─── WHY ────────────────────────────────────────────────── */
.why {
  padding: var(--section) 0;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  opacity: 0.05;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.why-header {
  margin-bottom: 3.5rem;
}
.why-header h2 {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--cream-text);
  max-width: 18ch;
}
.why-header h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--cream-muted);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--cream-border);
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  border-bottom: 1px solid var(--cream-border);
  border-right: 1px solid var(--cream-border);
  transition: background 0.2s;
}
.why-item:nth-child(even) { border-right: none; }
.why-item:nth-child(3),
.why-item:nth-child(4) { border-bottom: none; }
.why-item:hover { background: rgba(0,0,0,0.02); }

.why-number {
  font-family: var(--font-brand);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cream-text);
  line-height: 1;
  min-width: 70px;
  flex-shrink: 0;
}
.why-item-text h3 {
  font-family: var(--font-brand);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream-text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.why-item-text p {
  font-size: 0.875rem;
  color: var(--cream-muted);
  line-height: 1.7;
}

/* ─── ABOUT ──────────────────────────────────────────────── */
.about {
  padding: var(--section) 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.about-svg {
  width: 100%;
  border-radius: 4px;
}
.about-img-tag {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about-img-tag span {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(240,237,230,0.5);
  text-transform: uppercase;
}
.about-text .section-tag { color: var(--sage); }
.about-text h2 {
  font-family: var(--font-brand);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
}
.about-text p {
  font-size: 0.925rem;
  color: var(--dark-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 50ch;
}
.about-lang {
  font-size: 0.8rem !important;
  color: var(--sage-dim) !important;
  border-top: 1px solid var(--dark-border);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
}
.about-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ─── WORKFLOW ───────────────────────────────────────────── */
.workflow {
  padding: var(--section) 0;
  position: relative;
  overflow: hidden;
}
.workflow::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  opacity: 0.05;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.workflow .section-header h2 { color: var(--cream-text); }
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--cream-border);
  position: relative;
}
.workflow-step {
  padding: 2.25rem 2rem;
  border-bottom: 1px solid var(--cream-border);
  border-right: 1px solid var(--cream-border);
  transition: background 0.2s;
}
.workflow-step:nth-child(even) { border-right: none; }
.workflow-step:nth-child(3),
.workflow-step:nth-child(4) { border-bottom: none; }
.workflow-step:hover { background: rgba(0,0,0,0.02); }

.step-num {
  font-family: var(--font-brand);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--cream-muted);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.step-body h3 {
  font-family: var(--font-brand);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream-text);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.step-body p {
  font-size: 0.875rem;
  color: var(--cream-muted);
  line-height: 1.75;
  max-width: 42ch;
}

/* ─── CONTACT ────────────────────────────────────────────── */
.contact {
  padding: var(--section) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact-text .section-tag { color: var(--sage); }
.contact-text h2 {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--dark-text);
  margin-bottom: 1.25rem;
}
.contact-text h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--dark-muted);
}
.contact-text > p {
  font-size: 0.95rem;
  color: var(--dark-muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.contact-email a {
  color: var(--sage);
  font-size: 0.875rem;
  border-bottom: 1px solid var(--sage-dim);
  padding-bottom: 1px;
  transition: color 0.2s;
}
.contact-email a:hover { color: var(--sage-light); }
.contact-lang {
  font-size: 0.78rem !important;
  color: var(--dark-muted) !important;
  margin-top: 0.5rem;
}
.contact-info {
  margin-top: 2rem;
  border: 1px solid var(--dark-border);
  border-radius: 3px;
  overflow: hidden;
}
.contact-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--dark-border);
  gap: 1rem;
}
.contact-info-item:last-child { border-bottom: none; }
.ci-label {
  font-size: 0.75rem;
  color: var(--dark-muted);
}
.ci-value {
  font-size: 0.8rem;
  color: var(--dark-text);
  font-weight: 400;
  text-align: right;
}

/* ─── FORM ───────────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 4px;
  padding: 2rem;
}
.form-row { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row-half { flex-direction: row; gap: 1rem; }
.form-row-half > div { flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }

label {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--dark-muted);
}
input, select, textarea {
  background: var(--dark);
  border: 1px solid var(--dark-border);
  border-radius: 3px;
  color: var(--dark-text);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  padding: 0.65rem 0.875rem;
  width: 100%;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--dark-muted); }
input:focus, select:focus, textarea:focus {
  border-color: var(--sage-dim);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A756E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
select option { background: var(--dark-surface); color: var(--dark-text); }
textarea { resize: vertical; min-height: 90px; }
.form-note {
  font-size: 0.72rem;
  color: var(--dark-muted);
  text-align: center;
  margin-top: -0.25rem;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--dark-surface);
  border-top: 1px solid var(--dark-border);
  padding: 3.5rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--dark-border);
}
.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: fit-content;
}
.footer-logo-main {
  font-family: var(--font-brand);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-text);
  letter-spacing: -0.01em;
}
.footer-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  color: var(--dark-muted);
}
.footer-brand p {
  font-size: 0.82rem;
  color: var(--dark-muted);
  line-height: 1.6;
}
.footer-location {
  font-size: 0.75rem !important;
  color: var(--dark-muted) !important;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col-title {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--dark-muted);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.footer-col a {
  font-size: 0.82rem;
  color: var(--dark-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--dark-text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--dark-muted);
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */
/* Reveal: lines slide up from clip */
.reveal-line {
  display: block;
  overflow: hidden;
}
.reveal-line-inner {
  display: block;
  transform: translateY(105%);
  opacity: 0;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.5s ease;
}
.reveal-line.visible .reveal-line-inner {
  transform: translateY(0);
  opacity: 1;
}

/* Reveal: fade up */
.reveal-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reveal: card up */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reveal: slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.42s !important; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 5rem;
    min-height: auto;
    gap: 2rem;
  }
  .hero-right { display: none; }
  .hero-left { padding-top: 3rem; }

  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: repeat(3, 1fr); }

  .why-grid { grid-template-columns: 1fr; }
  .why-item { border-right: none !important; }
  .why-item:nth-child(3) { border-bottom: 1px solid var(--cream-border) !important; }

  .workflow-steps { grid-template-columns: 1fr; }
  .workflow-step { border-right: none !important; }
  .workflow-step:nth-child(3) { border-bottom: 1px solid var(--cream-border) !important; }
}

@media (max-width: 640px) {
  .service-grid { grid-template-columns: 1fr; }
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .form-row-half { flex-direction: column; }
  .hero-badges { gap: 1rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ─── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal-line-inner,
  .reveal-fade,
  .reveal-up,
  .reveal-left {
    transform: none !important;
    opacity: 1 !important;
  }
}


/* ─── V3 REFINEMENTS ─────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.026;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 260 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.9'/%3E%3C/svg%3E");
  background-size: 210px 210px;
  mix-blend-mode: multiply;
}

.trust-note {
  margin-top: .35rem;
  max-width: 35ch;
  font-size: .68rem;
  line-height: 1.5;
  color: var(--cream-muted);
}

.service-grid--focused {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-addon-strip {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
}
.service-addon-strip span {
  border: 1px solid var(--dark-border);
  border-radius: 999px;
  padding: .42rem .75rem;
  font-size: .72rem;
  color: var(--dark-muted);
}
.service-addon-strip span:first-child {
  border-color: transparent;
  padding-left: 0;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.pricing-note {
  margin-top: .8rem;
  color: var(--dark-muted);
  font-size: .72rem;
}

.faq {
  padding: var(--section) 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: .85fr 1.35fr;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}
.faq-intro {
  position: sticky;
  top: 7rem;
}
.faq-intro h2 {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--cream-text);
  margin-bottom: 1.25rem;
}
.faq-intro h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--cream-muted);
}
.faq-intro > p:last-child {
  max-width: 42ch;
  color: var(--cream-muted);
  font-size: .9rem;
  line-height: 1.75;
}
.faq-list {
  border-top: 1px solid var(--cream-border);
}
.faq-item {
  border-bottom: 1px solid var(--cream-border);
  padding: 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 1.35rem 2.25rem 1.35rem 0;
  color: var(--cream-text);
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: .25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cream-muted);
  font-size: 1.25rem;
  font-weight: 300;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p {
  margin: -.25rem 2rem 1.4rem 0;
  color: var(--cream-muted);
  font-size: .875rem;
  line-height: 1.75;
  max-width: 68ch;
}

a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--sage-dim);
}
.form-note a { color: var(--sage-dim); text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 1024px) {
  .service-grid--focused { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
}


/* ─── LANGUAGE SWITCH ─────────────────────────────────────── */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 2px;
  border: 1px solid var(--cream-border);
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}
.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--cream-muted);
  font: 500 .68rem/1 var(--font-body);
  letter-spacing: .08em;
  padding: .43rem .55rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.lang-btn:hover { color: var(--cream-text); }
.lang-btn.active {
  background: var(--cream-text);
  color: var(--cream);
}
.mobile-lang-switch { padding-top: 1.25rem; }
.mobile-lang-switch .lang-switch { width: fit-content; }

.section-dark .section-sub,
.section-dark .service-card p,
.section-dark .service-list,
.section-dark .service-from,
.section-dark .tier span,
.section-dark .addon span,
.section-dark .about-text p,
.section-dark .contact-text > p,
.section-dark .contact-info .ci-label,
.section-dark .form-note {
  color: var(--dark-muted);
}

/* Launch copy: content remains visible even without JavaScript. */
.reveal-line-inner, .reveal-fade, .reveal-up, .reveal-left {
  opacity: 1;
  transform: none;
}
.service-link {
  margin-top: auto;
  padding-top: 1rem;
  color: var(--sage-light);
  text-decoration: underline;
  text-underline-offset: .25em;
}
.festival-pack {
  margin-top: 2rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--sage-dim);
  border-radius: 4px;
  background: #17221c;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.festival-pack h3 {
  font-family: var(--font-brand);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.festival-pack p { color: var(--dark-muted); font-size: .95rem; }
.festival-pack .section-tag { color: var(--sage-light); }
.festival-pack .service-list { margin-bottom: 1rem; }
.festival-pack .festival-scope { font-size: .85rem; margin-bottom: 1.5rem; }
.trust-note { max-width: 60ch; font-size: .82rem; }
.trust-inner { gap: 2rem; }
.form-status { font-size: .85rem; color: var(--dark-text); }
.btn:disabled { cursor: not-allowed; opacity: .5; }
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 10000;
  padding: .75rem 1rem; background: var(--cream); color: var(--cream-text);
}
.skip-link:focus { top: .5rem; }
[tabindex="-1"]:focus { outline: none; }
@media (max-width: 900px) {
  .festival-pack { grid-template-columns: 1fr; }
  .nav-burger { min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }
  .mobile-menu { overflow-y: auto; }
}

/* Photography edition — September 2026 */
.hero {
  max-width: 1440px;
  grid-template-columns: .95fr 1.15fr;
  gap: clamp(2rem, 4vw, 4rem);
  min-height: min(850px, 100svh);
  padding-top: 7rem;
  padding-bottom: 4rem;
}
.hero-left, .hero-right { padding-top: 0; min-width: 0; }
.hero-photo { width: 100%; margin: 0; }
.hero-photo img {
  width: 100%; height: auto; aspect-ratio: 6/5;
  object-fit: cover; object-position: 68% center; border-radius: 3px;
}
.hero-photo figcaption {
  display: flex; justify-content: space-between; gap: 1rem;
  margin-top: .85rem; color: var(--cream-muted);
  font-size: .6rem; letter-spacing: .12em;
}
.festival-photo { margin: 3rem 0 0; overflow: hidden; border-radius: 4px 4px 0 0; }
.festival-photo img {
  width: 100%; height: auto; aspect-ratio: 2.8/1;
  object-fit: cover; object-position: center 52%;
}
.festival-photo + .festival-pack { margin-top: 0; border-radius: 0 0 4px 4px; }
.about { padding: clamp(4rem, 7vw, 6rem) 0; }
.about-grid { display: block; }
.about-text {
  display: grid; grid-template-columns: .9fr 1.1fr;
  column-gap: clamp(2rem, 6vw, 5rem); align-items: start;
}
.about-text > .section-tag { grid-column: 1 / -1; }
.about-text > h2 { grid-column: 1; max-width: 15ch; font-size: clamp(2rem, 4vw, 3.25rem); }
.about-text > .reveal-fade { grid-column: 2; grid-row: 2 / 4; }
.about-text > .about-actions { grid-column: 1; grid-row: 3; margin-top: .75rem; }
.about-text p { max-width: 60ch; }
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 7.5rem; gap: 2.5rem; }
  .hero-right { display: block; }
  .hero-photo img { aspect-ratio: 3/2; object-position: center; }
  .about-text { display: block; }
  .about-text > h2 { max-width: 22ch; }
  .festival-photo img { aspect-ratio: 16/9; }
}
@media (max-width: 480px) {
  .hero-photo figcaption { font-size: .5rem; letter-spacing: .06em; }
  .about-actions .btn { padding-left: 1rem; padding-right: 1rem; }
}

/* Rotating seal, contained within the photograph. */
.hero-photo-frame { position: relative; }
.hero-photo .hero-image-badge {
  left: 1rem; bottom: 1rem; right: auto;
  width: 112px; height: 112px;
  border-radius: 50%;
  background: rgba(14, 12, 10, .78);
  pointer-events: none;
}
.hero-photo .badge-ring-text { fill: var(--cream); }
.hero-photo .badge-ring-icon {
  width: 23px; height: 28px;
  background: transparent;
  border: 1px solid var(--sage-light);
}
.hero-photo .badge-ring-icon::before {
  content: ''; position: absolute; inset: 4px;
  border-left: 2px dotted var(--sage-light);
  border-right: 2px dotted var(--sage-light);
}
@media (max-width: 480px) {
  .hero-photo .hero-image-badge { width: 92px; height: 92px; left: .6rem; bottom: .6rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-photo .badge-ring-svg { animation: none; }
}

/* Pricing: a defined entry service, with custom quotes for other scopes. */
.pricing-panel { scroll-margin-top: 100px; margin-top: 3rem; padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid var(--sage-dim); border-radius: 4px; background: var(--dark-surface); }
.pricing-panel h3 { font: 500 clamp(1.5rem, 3vw, 2.2rem)/1.2 var(--font-brand); margin-bottom: 1.75rem; }
.pricing-heading { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: .5rem 1.5rem; }
.pricing-heading h4 { font: 500 1.2rem/1.4 var(--font-brand); }
.pricing-panel .pricing-amount { color: var(--sage-light); font: 500 clamp(1.8rem, 4vw, 2.8rem)/1.2 var(--font-brand); }
.pricing-panel p { color: var(--dark-muted); margin-bottom: 1rem; max-width: 80ch; }
.pricing-panel .section-tag { color: var(--sage-light); }
.pricing-panel [data-i18n="priceScope"] { color: var(--dark-text); }
.pricing-panel .btn { margin-top: .5rem; }

.pricing-longform { margin: 1.5rem 0; padding-top: 1.5rem; border-top: 1px solid var(--dark-border); }
.pricing-longform h4 { font: 500 1.2rem/1.4 var(--font-brand); margin-bottom: .75rem; }

.form-trap { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
#formPrivacy { font-size: .85rem; margin-bottom: 1rem; color: var(--dark-text); }
#formPrivacy a { text-decoration: underline; text-underline-offset: 3px; }
.privacy-label { display: flex; align-items: flex-start; gap: .65rem; }
.privacy-label input { width: auto; margin-top: .4rem; }
#turnstileWidget { margin-bottom: 1rem; }
.privacy-summary { font-size: .78rem; line-height: 1.65; color: var(--dark-muted); margin-bottom: 1rem; }
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }

.launch-notice { max-width: 55ch; padding: .8rem 1rem; margin-bottom: 1.5rem; border-left: 2px solid var(--sage-dim); background: var(--cream-deep); color: var(--cream-text); font-size: .86rem; line-height: 1.6; }
.launch-form-note { margin-bottom: 1rem; text-align: left; color: var(--sage-light); }
