/* ============================================================
   PORTRAITS BY CALEB — style.css
   Brand: premium live portrait illustration for weddings & events
   Palette: dark ink / warm parchment / sienna accent
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

/* ============================================================
   0. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* ── Dark surfaces ── */
  --ink:        #1a1816;
  --ink-soft:   #242220;
  --ink-muted:  #2e2c2a;

  /* ── Warm off-white surfaces ── */
  --parchment:       #f5f2ec;
  --parchment-warm:  #ede9e2;
  --parchment-deep:  #e5e0d8;

  /* ── Text ── */
  --text-dark:   #1a1816;
  --text-mid:    #4a4542;
  --text-muted:  #7a7570;
  --text-light:  #f0ede8;
  --text-faint:  #9a9590;

  /* ── Accent ── */
  --sienna:       #7a5c48;
  --sienna-light: #c4a898;

  /* ── Dividers ── */
  --divider-dark:   rgba(240, 237, 232, 0.12);
  --divider-light:  rgba(26, 24, 22, 0.12);

  /* ── Fonts ── */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  /* ── Spacing tokens ── */
  --s1:  0.25rem;
  --s2:  0.5rem;
  --s3:  0.75rem;
  --s4:  1rem;
  --s5:  1.25rem;
  --s6:  1.5rem;
  --s8:  2rem;
  --s10: 2.5rem;
  --s12: 3rem;
  --s16: 4rem;
  --s20: 5rem;
  --s24: 6rem;
  --s32: 8rem;

  /* ── Type scale (fluid) ── */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.8rem);
  --text-sm:   clamp(0.875rem, 0.82rem + 0.25vw, 0.9375rem);
  --text-base: clamp(1rem,     0.95rem + 0.2vw,  1.0625rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.6vw,  1.375rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.2vw,  2rem);
  --text-2xl:  clamp(2rem,     1.4rem  + 2.2vw,  3.25rem);
  --text-3xl:  clamp(2.5rem,   1.2rem  + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    7rem);

  /* ── Layout widths ── */
  --narrow:  640px;
  --default: 960px;
  --wide:    1200px;

  /* ── Section padding ── */
  --section-pad: clamp(var(--s12), 8vw, var(--s24));
  --container-px: clamp(var(--s6), 5vw, var(--s12));

  /* ── Transitions ── */
  --ease-out: 220ms cubic-bezier(0.16, 1, 0.3, 1);
}


/* ============================================================
   1. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--parchment);
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul[role='list'], ol[role='list'] { list-style: none; }

input, button, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  line-height: 1.12;
  font-family: var(--font-display);
  font-weight: 400;
}

p, li, figcaption { text-wrap: pretty; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease-out), opacity var(--ease-out);
}

button { cursor: pointer; background: none; border: none; }

::selection {
  background: rgba(122, 92, 72, 0.2);
  color: var(--text-dark);
}

:focus-visible {
  outline: 1px solid var(--sienna);
  outline-offset: 3px;
}

@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;
  }
}


/* ============================================================
   2. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--wide);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.container--narrow {
  max-width: var(--narrow);
}

.container--default {
  max-width: var(--default);
}

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


/* ============================================================
   3. SURFACE VARIANTS
   ============================================================ */
.section-dark {
  background-color: var(--ink);
  color: var(--text-light);
}

.section-dark .overline {
  color: rgba(240, 237, 232, 0.45);
}

.section-dark p,
.section-dark li {
  color: rgba(240, 237, 232, 0.8);
}

.section-dark .divider {
  border-color: var(--divider-dark);
}

.section-parchment {
  background-color: var(--parchment);
  color: var(--text-dark);
}

.section-parchment-warm {
  background-color: var(--parchment-warm);
  color: var(--text-dark);
}

.section-parchment-deep {
  background-color: var(--parchment-deep);
  color: var(--text-dark);
}


/* ============================================================
   4. TYPOGRAPHY
   ============================================================ */

/* Overline labels */
.overline {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--s4);
}

/* Pull quote */
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-2xl);
  line-height: 1.2;
  color: var(--text-dark);
  padding-block: var(--s12);
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}

.section-dark .pull-quote {
  color: var(--text-light);
}

/* Lede / intro text */
.lede {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--text-mid);
  max-width: 60ch;
}

.section-dark .lede {
  color: rgba(240, 237, 232, 0.75);
}

/* Hero heading */
.h-hero {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.h-hero em { font-style: italic; }

/* Section heading */
.h-section {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: var(--s6);
}

.h-sub {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: var(--s4);
}

/* Body prose */
.prose p + p { margin-top: var(--s5); }

.prose p {
  max-width: 62ch;
  color: var(--text-mid);
  line-height: 1.75;
}

.section-dark .prose p {
  color: rgba(240, 237, 232, 0.75);
}

/* Credential strip items */
.credential-item {
  font-size: var(--text-sm);
  color: var(--text-muted);
  border-left: 1px solid var(--divider-light);
  padding-left: var(--s4);
}

.section-dark .credential-item {
  color: rgba(240, 237, 232, 0.45);
  border-left-color: var(--divider-dark);
}


/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: var(--s4) var(--s8);
  border-radius: 0;
  cursor: pointer;
  transition: background var(--ease-out), color var(--ease-out), border-color var(--ease-out);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--ink);
  color: var(--text-light);
  border: 1px solid var(--ink);
}

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

.section-dark .btn-primary {
  background-color: var(--text-light);
  color: var(--ink);
  border-color: var(--text-light);
}

.section-dark .btn-primary:hover {
  background-color: var(--parchment-warm);
  border-color: var(--parchment-warm);
}

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

.btn-outline:hover {
  background-color: var(--ink);
  color: var(--text-light);
}

.section-dark .btn-outline {
  color: var(--text-light);
  border-color: rgba(240, 237, 232, 0.4);
}

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

.btn-group {
  display: flex;
  gap: var(--s4);
  flex-wrap: wrap;
  align-items: center;
  margin-top: var(--s8);
}

/* Text link arrow */
.link-arrow {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--sienna);
  text-decoration: none;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
}

.link-arrow:hover { color: var(--text-dark); }

.section-dark .link-arrow {
  color: var(--sienna-light);
}

.section-dark .link-arrow:hover {
  color: var(--text-light);
}


/* ============================================================
   6. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--ease-out), border-color var(--ease-out);
  border-bottom: 1px solid transparent;
}

.nav--solid {
  background: var(--ink);
  border-bottom-color: rgba(240, 237, 232, 0.1);
}

.nav--parchment {
  background: var(--parchment);
  border-bottom-color: rgba(26, 24, 22, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--s4);
  gap: var(--s8);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  text-decoration: none;
  color: var(--text-light);
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}

.nav--parchment .nav-logo {
  color: var(--text-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s8);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(240, 237, 232, 0.75);
  text-decoration: none;
  transition: color var(--ease-out);
}

.nav-links a:hover {
  color: var(--text-light);
}

.nav--parchment .nav-links a {
  color: var(--text-muted);
}

.nav--parchment .nav-links a:hover {
  color: var(--text-dark);
}

.nav-cta {
  margin-left: var(--s4);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s2);
  cursor: pointer;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--text-light);
  transition: transform var(--ease-out), opacity var(--ease-out);
}

.nav--parchment .nav-toggle span {
  background-color: var(--text-dark);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  gap: var(--s2);
  padding: var(--s6) var(--container-px) var(--s8);
  background: var(--ink);
  border-top: 1px solid rgba(240, 237, 232, 0.08);
}

.nav-drawer a {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: rgba(240, 237, 232, 0.8);
  padding-block: var(--s3);
  border-bottom: 1px solid rgba(240, 237, 232, 0.08);
}

.nav-drawer a:hover { color: var(--text-light); }

.nav-drawer.open { display: flex; }


/* ============================================================
   7. HERO SECTIONS
   ============================================================ */
.hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(var(--s16), 10vw, var(--s32));
  padding-top: 120px;
  position: relative;
  overflow: hidden;
  background-color: var(--ink);
}

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

.hero .overline {
  color: rgba(240, 237, 232, 0.45);
  margin-bottom: var(--s6);
}

.hero .h-hero {
  color: var(--text-light);
  max-width: 15ch;
  margin-bottom: var(--s6);
}

.hero .lede {
  color: rgba(240, 237, 232, 0.7);
  margin-bottom: var(--s8);
}

/* Decorative charcoal circle SVG */
.hero-deco {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: clamp(300px, 45vw, 650px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}

/* Smaller pages with contained hero */
.hero--contained {
  min-height: 65vh;
  padding-bottom: var(--s24);
}


/* ============================================================
   8. AT-A-GLANCE BAND
   ============================================================ */
.glance-band {
  background-color: var(--ink-soft);
  border-top: 1px solid rgba(240, 237, 232, 0.08);
  border-bottom: 1px solid rgba(240, 237, 232, 0.08);
  padding-block: var(--s6);
}

.glance-inner {
  display: flex;
  gap: var(--s8);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.glance-inner::-webkit-scrollbar { display: none; }

.glance-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s1);
}

.glance-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.4);
}

.glance-value {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--text-light);
  font-weight: 400;
}


/* ============================================================
   9. PROCESS LIST
   ============================================================ */
.process-list {
  display: grid;
  gap: var(--s10);
}

.process-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: var(--s6);
  align-items: start;
}

.process-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--sienna);
  line-height: 1;
  padding-top: 0.1em;
}

.process-body h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--s3);
}

.process-body p {
  color: var(--text-mid);
  max-width: 50ch;
}

.section-dark .process-body p {
  color: rgba(240, 237, 232, 0.7);
}

.section-dark .process-body h3 {
  color: var(--text-light);
}


/* ============================================================
   10. COLLECTION ROWS
   ============================================================ */
.collection-rows {
  display: flex;
  flex-direction: column;
}

.collection-row {
  display: grid;
  grid-template-columns: 220px 1fr 200px;
  gap: var(--s8);
  align-items: start;
  padding-block: var(--s10);
  border-top: 1px solid var(--divider-light);
}

.section-dark .collection-row {
  border-top-color: var(--divider-dark);
}

.collection-row:last-child {
  border-bottom: 1px solid var(--divider-light);
}

.section-dark .collection-row:last-child {
  border-bottom-color: var(--divider-dark);
}

.collection-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  line-height: 1.1;
}

.collection-duration {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: var(--s2);
}

.section-dark .collection-duration {
  color: rgba(240, 237, 232, 0.4);
}

.collection-desc {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-mid);
}

.section-dark .collection-desc {
  color: rgba(240, 237, 232, 0.7);
}

.collection-desc .note {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: var(--s3);
}

.section-dark .collection-desc .note {
  color: rgba(240, 237, 232, 0.3);
}

.collection-guidance {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--text-muted);
  text-align: right;
}

.section-dark .collection-guidance {
  color: rgba(240, 237, 232, 0.45);
}

/* Pricing version (private pages) */
.collection-price {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--sienna);
}


/* ============================================================
   11. THREE-COLUMN GRID
   ============================================================ */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s8);
}

.three-col-item h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--s4);
}

.three-col-item p {
  font-size: var(--text-base);
  color: var(--text-mid);
  line-height: 1.75;
}

.section-dark .three-col-item h3 {
  color: var(--text-light);
}

.section-dark .three-col-item p {
  color: rgba(240, 237, 232, 0.7);
}

/* Two-column grid */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s10);
  align-items: start;
}

.two-col--40-60 {
  grid-template-columns: 2fr 3fr;
}

.two-col--split {
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
}


/* ============================================================
   12. FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid var(--divider-light);
}

.section-dark .faq-item {
  border-top-color: var(--divider-dark);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--divider-light);
}

.section-dark .faq-item:last-child {
  border-bottom-color: var(--divider-dark);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s6);
  padding-block: var(--s6);
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--text-dark);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--ease-out);
}

.section-dark .faq-trigger {
  color: var(--text-light);
}

.faq-trigger:hover {
  color: var(--sienna);
}

.section-dark .faq-trigger:hover {
  color: var(--sienna-light);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform var(--ease-out);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}

.faq-icon::before {
  width: 12px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform var(--ease-out), opacity var(--ease-out);
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-body {
  display: none;
  padding-bottom: var(--s8);
  padding-right: clamp(2rem, 8vw, 8rem);
}

.faq-body p {
  color: var(--text-mid);
  line-height: 1.75;
}

.section-dark .faq-body p {
  color: rgba(240, 237, 232, 0.7);
}

.faq-item.open .faq-body {
  display: block;
}


/* ============================================================
   13. SIDEBAR GRID (About page)
   ============================================================ */
.sidebar-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: var(--s10);
  align-items: start;
}

.sidebar-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 0.35em;
  position: sticky;
  top: 100px;
}

.section-dark .sidebar-label {
  color: rgba(240, 237, 232, 0.4);
}


/* ============================================================
   14. IMAGE PLACEHOLDERS / SVG SLOTS
   ============================================================ */
.img-placeholder {
  background-color: var(--parchment-deep);
  border: 1px solid rgba(26, 24, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-body);
  min-height: 320px;
}

.section-dark .img-placeholder {
  background-color: var(--ink-muted);
  border-color: rgba(240, 237, 232, 0.08);
  color: rgba(240, 237, 232, 0.3);
}

.img-placeholder--tall {
  min-height: 480px;
}

.img-placeholder--short {
  min-height: 200px;
}

/* Portrait gallery: three side by side */
.portrait-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-top: var(--s10);
}


/* ============================================================
   15. PROOF STRIP / TESTIMONIALS
   ============================================================ */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: var(--s12);
}

.testimonial {
  max-width: 800px;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-xl);
  line-height: 1.4;
  margin-bottom: var(--s4);
}

.testimonial-attr {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section-dark .testimonial-quote {
  color: var(--text-light);
}

.section-dark .testimonial-attr {
  color: rgba(240, 237, 232, 0.4);
}

/* Section label for proof strip */
.proof-section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.4);
  margin-bottom: var(--s12);
  display: block;
}


/* ============================================================
   16. ENQUIRY FORM
   ============================================================ */
.enquire-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--s16);
  align-items: start;
}

.enquire-context {
  position: sticky;
  top: 100px;
}

.enquire-context .h-hero {
  font-size: var(--text-3xl);
  color: var(--text-dark);
  margin-bottom: var(--s6);
}

.enquire-context .overline {
  margin-bottom: var(--s4);
}

.reassurance-list {
  margin-top: var(--s8);
  display: flex;
  flex-direction: column;
  gap: var(--s5);
  list-style: none;
}

.reassurance-item {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
  padding-top: var(--s4);
  border-top: 1px solid var(--divider-light);
}

.reassurance-label {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.reassurance-value {
  font-size: var(--text-sm);
  color: var(--text-mid);
}

/* Toggle */
.enquire-toggle {
  display: flex;
  gap: 0;
  margin-bottom: var(--s8);
  border: 1px solid var(--parchment-deep);
}

.toggle-btn {
  flex: 1;
  padding: var(--s3) var(--s6);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  transition: background var(--ease-out), color var(--ease-out);
}

.toggle-btn.active {
  background: var(--ink);
  color: var(--text-light);
}

/* Form */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  margin-bottom: var(--s6);
}

.form-group label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: white;
  border: 1px solid var(--parchment-deep);
  padding: var(--s4) var(--s5);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-dark);
  border-radius: 1px;
  transition: border-color var(--ease-out);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group 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='%237a7570' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: var(--s10);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sienna);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-note {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--s4);
  font-style: italic;
}

.form-panel {
  display: none;
}

.form-panel.active {
  display: block;
}


/* ============================================================
   17. IS THIS RIGHT / TWO COLUMN LISTS
   ============================================================ */
.two-col-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  align-items: start;
}

.list-col h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  margin-bottom: var(--s6);
  padding-bottom: var(--s4);
  border-bottom: 1px solid var(--divider-light);
}

.list-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.list-col li {
  font-size: var(--text-base);
  color: var(--text-mid);
  line-height: 1.65;
  padding-left: var(--s5);
  position: relative;
}

.list-col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 12px;
  height: 1px;
  background: var(--sienna);
}


/* ============================================================
   18. LOGISTICS TABLE
   ============================================================ */
.logistics-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--s8);
}

.logistics-table tr {
  border-bottom: 1px solid var(--divider-light);
}

.logistics-table tr:first-child {
  border-top: 1px solid var(--divider-light);
}

.logistics-table td {
  padding: var(--s4) var(--s6);
  font-size: var(--text-base);
  vertical-align: top;
}

.logistics-table td:first-child {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  width: 240px;
  padding-left: 0;
}

.logistics-table td:last-child {
  color: var(--text-mid);
}


/* ============================================================
   19. PARTNER PAGE INTRO BLOCK
   ============================================================ */
.partner-intro {
  padding-block: var(--s20);
  border-bottom: 1px solid var(--divider-light);
}

.partner-sent-by {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--s3);
}

.partner-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  margin-bottom: var(--s3);
}

.partner-desc {
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: var(--s8);
}

.partner-body {
  max-width: 62ch;
  color: var(--text-mid);
  line-height: 1.75;
}


/* ============================================================
   20. PRIVATE PRICING PAGE
   ============================================================ */
.pricing-orient {
  background: var(--parchment-warm);
  border-bottom: 1px solid var(--divider-light);
  padding-block: var(--s10);
}

.pricing-orient p {
  max-width: 60ch;
  font-size: var(--text-base);
  color: var(--text-mid);
}

.pricing-body {
  padding-top: var(--s16);
  padding-bottom: var(--s32);
}

.pricing-section + .pricing-section {
  margin-top: var(--s20);
}

.pricing-how-it-works {
  counter-reset: how;
}

.pricing-step {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: var(--s5);
  padding-block: var(--s5);
  border-top: 1px solid var(--divider-light);
  counter-increment: how;
}

.pricing-step-num {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--sienna);
}

.pricing-step-body {
  font-size: var(--text-base);
  color: var(--text-mid);
  line-height: 1.7;
}

.pricing-note {
  font-style: italic;
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: 60ch;
  line-height: 1.7;
}


/* ============================================================
   21. THANK-YOU PAGE
   ============================================================ */
.thankyou-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-block: var(--s32);
}

.thankyou-steps {
  counter-reset: steps;
}

.thankyou-step {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: var(--s5);
  padding-block: var(--s5);
  border-top: 1px solid var(--divider-light);
}

.thankyou-step-num {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--sienna);
}

/* step numbers are explicit in HTML */

.thankyou-step-body {
  font-size: var(--text-base);
  color: var(--text-mid);
  line-height: 1.7;
  padding-top: 0.1em;
}

.quiet-close {
  text-align: center;
  padding-block: var(--s20);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--text-muted);
}

.quiet-close a {
  color: var(--sienna);
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ============================================================
   22. FOOTER
   ============================================================ */
.footer {
  background-color: var(--ink);
  color: var(--text-light);
  padding-block: var(--s16);
  border-top: 1px solid rgba(240, 237, 232, 0.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--s10);
  align-items: start;
}

.footer-sitemap {
  display: flex;
  gap: var(--s14);
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.footer-col-label {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.3);
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: var(--s1);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--s3);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--text-light);
}

.footer-brand-location {
  font-size: var(--text-xs);
  color: rgba(240, 237, 232, 0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: var(--s2);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2) var(--s6);
  list-style: none;
  align-items: center;
  padding-top: 0.2em;
}

.footer-links a {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: rgba(240, 237, 232, 0.45);
  text-transform: uppercase;
  transition: color var(--ease-out);
}

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

.footer-copy {
  font-size: var(--text-xs);
  color: rgba(240, 237, 232, 0.25);
  text-align: right;
  padding-top: 0.2em;
}


/* ============================================================
   23. SECTION DIVIDER / THIN LINE
   ============================================================ */
.divider {
  height: 1px;
  background: var(--divider-light);
  border: none;
}

.section-dark .divider {
  background: var(--divider-dark);
}


/* ============================================================
   24. REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   25. ENHANCEMENT ACCORDION WRAPPER
   ============================================================ */
.enhancement-intro {
  max-width: 60ch;
  color: var(--text-mid);
  margin-bottom: var(--s8);
  font-size: var(--text-base);
  line-height: 1.7;
}


/* ============================================================
   26. CORPORATE WHERE-IT-FITS COLS
   ============================================================ */
.fit-col {
  padding-top: var(--s8);
  border-top: 1px solid var(--divider-dark);
}

.fit-col h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  margin-bottom: var(--s4);
  color: var(--text-light);
}

.fit-col p {
  font-size: var(--text-base);
  color: rgba(240, 237, 232, 0.65);
  line-height: 1.75;
}

.fit-col .img-placeholder {
  margin-bottom: var(--s6);
  min-height: 200px;
}


/* ============================================================
   27. ABOUT VALUE STATEMENTS
   ============================================================ */
.value-statements {
  display: flex;
  flex-direction: column;
  gap: var(--s6);
  margin-top: var(--s8);
}

.value-statement {
  padding-top: var(--s5);
  border-top: 1px solid var(--divider-light);
}

.value-statement-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  margin-bottom: var(--s2);
  color: var(--text-dark);
}

.value-statement-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
}


/* ============================================================
   28. CREDENTIALS STRIP
   ============================================================ */
.credentials-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s5) var(--s8);
  margin-top: var(--s8);
}


/* ============================================================
   29. INTEGRATION SCENARIOS
   ============================================================ */
.scenarios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  margin-top: var(--s8);
}

.scenario {
  padding: var(--s6);
  background: var(--parchment);
  border: 1px solid var(--divider-light);
}

.scenario-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--s3);
  font-weight: 500;
}

.scenario-body {
  font-size: var(--text-sm);
  color: var(--text-mid);
  line-height: 1.7;
}


/* ============================================================
   30. MEDIA QUERIES
   ============================================================ */

/* Tablet */
@media (max-width: 900px) {
  .three-col {
    grid-template-columns: 1fr 1fr;
  }

  .collection-row {
    grid-template-columns: 1fr;
    gap: var(--s4);
  }

  .collection-guidance {
    text-align: left;
  }

  .two-col,
  .two-col--40-60,
  .two-col--split {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }

  .enquire-layout {
    grid-template-columns: 1fr;
    gap: var(--s10);
  }

  .enquire-context {
    position: static;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }

  .footer-sitemap {
    gap: var(--s10);
  }

  .footer-copy {
    text-align: left;
  }

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

/* Mobile */
@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .three-col {
    grid-template-columns: 1fr;
  }

  .portrait-gallery {
    grid-template-columns: 1fr;
  }

  .two-col-list {
    grid-template-columns: 1fr;
  }

  .sidebar-grid {
    grid-template-columns: 1fr;
    gap: var(--s4);
  }

  .sidebar-label {
    position: static;
  }

  .hero-deco {
    display: none;
  }

  .pull-quote {
    font-size: var(--text-xl);
    text-align: left;
    padding-block: var(--s8);
  }

  .partner-intro {
    padding-block: var(--s12);
  }

  .logistics-table td:first-child {
    width: auto;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .btn-group {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .enquire-toggle {
    flex-direction: column;
  }
}
