/* ===================================================
   MIRULDRAX - Main Stylesheet
   Retro Modern Design System
   =================================================== */


:root {
  --color-cream: #f5f0e8;
  --color-cream-dark: #ede6d4;
  --color-mustard: #c8922a;
  --color-mustard-light: #e8b84b;
  --color-mustard-pale: #f5e8c8;
  --color-terracotta: #b5533c;
  --color-terracotta-light: #d4704f;
  --color-olive: #5a6e3a;
  --color-olive-light: #7a9050;
  --color-olive-pale: #e8eedd;
  --color-brown: #3d2b1a;
  --color-brown-mid: #6b4226;
  --color-brown-light: #9a6b4a;
  --color-dusty-rose: #c4857a;
  --color-stone: #8a7a6a;
  --color-stone-light: #c4b8a8;
  --color-white-warm: #faf7f2;
  --color-text: #2c1f0f;
  --color-text-mid: #5a4a38;
  --color-text-light: #8a7a6a;

  --shadow-sm: 0 1px 3px rgba(44,31,15,0.08), 0 1px 2px rgba(44,31,15,0.06);
  --shadow-md: 0 4px 12px rgba(44,31,15,0.10), 0 2px 6px rgba(44,31,15,0.08);
  --shadow-lg: 0 10px 32px rgba(44,31,15,0.12), 0 4px 12px rgba(44,31,15,0.08);
  --shadow-xl: 0 20px 48px rgba(44,31,15,0.16), 0 8px 20px rgba(44,31,15,0.10);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 9rem;

  --font-heading: 'Libre Baskerville', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --nav-height: 80px;
  --nav-border-color: rgba(200,146,42,0.4);
  --transition-base: 0.25s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


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

html {
  scroll-behavior: smooth;
}

body, body.canvas {
  background: var(--color-cream);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body > main,
body > section,
body > .gallery {
  flex: 1;
}

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

a {
  color: var(--color-mustard);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-terracotta);
}

ul {
  list-style: none;
}


article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

/* ===================================================
   NAVIGATION
   =================================================== */

.stage-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 1.5rem;
}

.stage-nav-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.stage-nav {
  background: rgba(245,240,232,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 0 1.5rem;
  height: 60px;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(200,146,42,0.15);
  position: relative;
  overflow: hidden;
}

.stage-nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--color-mustard);
  transition: left var(--transition-smooth), right var(--transition-smooth);
  transform-origin: center;
}

.stage-nav.scrolled::after {
  left: 0;
  right: 0;
}

.stage-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

.stage-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.stage-logo img {
  height: 38px;
  width: auto;
}

.stage-nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
}

.stage-nav-links li {
  margin: 0;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-mid);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-md);
  transition: color var(--transition-base), background var(--transition-base);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-mustard);
  background: var(--color-mustard-pale);
}


.drawer-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-base);
}

.drawer-toggle:hover {
  background: var(--color-mustard-pale);
}

.drawer-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-brown);
  border-radius: 2px;
  transition: transform var(--transition-smooth), opacity var(--transition-base);
}


.drawer {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  perspective: 1000px;
  z-index: 1001;
  pointer-events: none;
}

.drawer-face {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  min-height: 100vh;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: all;
}

.drawer-front {
  background: rgba(245,240,232,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: rotateX(0deg);
  transform-origin: top center;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: flex-start;
  z-index: 2;
  min-height: auto;
  height: auto;
  box-shadow: var(--shadow-md);
}

.drawer-front .stage-nav-inner {
  height: 60px;
}

.drawer-back {
  background: var(--color-brown);
  transform: rotateX(180deg);
  transform-origin: top center;
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
  min-height: 100vh;
}

.drawer.is-open .drawer-front {
  transform: rotateX(-180deg);
  pointer-events: none;
}

.drawer.is-open .drawer-back {
  transform: rotateX(0deg);
  pointer-events: all;
}

.drawer.is-open {
  height: 100vh;
  pointer-events: all;
}

.drawer-close {
  background: none;
  border: none;
  color: var(--color-cream);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  margin-bottom: 2rem;
  margin-left: auto;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition-base);
}

.drawer-close:hover {
  background: rgba(255,255,255,0.15);
}

.drawer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
  margin: 0;
}

.drawer-nav-links li {
  margin: 0;
}

.drawer-nav-links a {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 5vw, 2rem);
  color: var(--color-cream);
  padding: 0.75rem 0;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color var(--transition-base), padding-left var(--transition-base);
}

.drawer-nav-links a:hover {
  color: var(--color-mustard-light);
  padding-left: 0.5rem;
}


@media (min-width: 768px) {
  .stage-nav-links {
    display: flex;
  }

  .drawer-toggle,
  .drawer-toggle--open {
    display: none;
  }

  .drawer {
    display: none;
  }

  .stage-nav {
    height: 64px;
    padding: 0 2rem;
  }
}

/* ===================================================
   HERO / STAGE
   =================================================== */

.stage {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding-top: calc(var(--nav-height) + 2rem);
  padding-bottom: var(--space-lg);
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
  position: relative;
  overflow: hidden;
  background: var(--color-cream);
}

.stage-curtain {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(200,146,42,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(181,83,60,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.stage-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-md) 0;
  position: relative;
  z-index: 1;
}

.stage-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-mustard);
  background: var(--color-mustard-pale);
  border: 1px solid rgba(200,146,42,0.3);
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.stage-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-brown);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}


.stage-headline .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) rotate(3deg);
  animation: charReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.stage-headline .char:nth-child(n) {
  animation-delay: calc(0.03s * var(--char-index));
}

@keyframes charReveal {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

.stage-subline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-mid);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.stage-subline--narrow {
  max-width: 520px;
}

.stage-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.stage-image-wrap {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  overflow: hidden;
}

.stage-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.stage-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--color-cream) 0%, transparent 35%);
  z-index: 1;
  pointer-events: none;
}


.stage--inner {
  min-height: 50vh;
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: var(--space-lg);
}

.stage--contact {
  min-height: 40vh;
}

.stage-content--centered {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.stage-headline--md {
  font-size: clamp(2rem, 5vw, 3.8rem);
}

@media (min-width: 900px) {
  .stage {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 100svh;
    padding-left: var(--space-md);
    padding-right: 0;
  }

  .stage-content {
    padding-right: var(--space-md);
  }

  .stage-image-wrap {
    display: block;
  }

  .stage--inner {
    grid-template-columns: 1fr;
  }
}

/* ===================================================
   BUTTONS
   =================================================== */

.spotlight-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
}

.spotlight-btn--primary {
  background: var(--color-mustard);
  color: var(--color-white-warm);
  border-color: var(--color-mustard);
  box-shadow: 0 4px 14px rgba(200,146,42,0.35);
}

.spotlight-btn--primary:hover {
  background: var(--color-terracotta);
  border-color: var(--color-terracotta);
  color: var(--color-white-warm);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(181,83,60,0.35);
}

.spotlight-btn--ghost {
  background: transparent;
  color: var(--color-brown);
  border-color: rgba(61,43,26,0.3);
}

.spotlight-btn--ghost:hover {
  background: var(--color-cream-dark);
  border-color: var(--color-mustard);
  color: var(--color-mustard);
  transform: translateY(-2px);
}

.spotlight-btn--light {
  background: var(--color-white-warm);
  color: var(--color-brown);
  border-color: var(--color-white-warm);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.spotlight-btn--light:hover {
  background: var(--color-cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.2);
}

.spotlight-btn--full {
  width: 100%;
  justify-content: center;
}

/* ===================================================
   SECTION TAGS
   =================================================== */

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 1rem;
}

.section-tag--light {
  color: rgba(245,240,232,0.8);
}

/* ===================================================
   GALLERY (Content Sections)
   =================================================== */

.gallery {
  padding: var(--space-xl) var(--space-sm);
}

.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.gallery-inner--full {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.gallery-header {
  text-align: center;
  max-width: 640px;
}

.gallery-header--left {
  text-align: left;
  max-width: 100%;
}

.gallery-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--color-brown);
  line-height: 1.2;
  margin-top: 0.25rem;
}

.gallery-intro-text {
  color: var(--color-text-mid);
  font-size: 1.05rem;
  margin-top: 1rem;
  max-width: 560px;
}

.gallery-text-block h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: var(--color-brown);
  line-height: 1.25;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}

.gallery-text-block p {
  color: var(--color-text-mid);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.gallery-image-block img,
.gallery-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}


.gallery--intro {
  background: var(--color-white-warm);
}

.gallery--intro .gallery-inner {
  gap: var(--space-md);
}


.gallery--services {
  background: var(--color-cream);
}


.gallery--process {
  background: var(--color-brown);
  color: var(--color-cream);
}

.gallery--process .gallery-header h2 {
  color: var(--color-cream);
}

.gallery--process .section-tag {
  color: var(--color-mustard-light);
}


.gallery--images-row {
  padding: 0;
  overflow: hidden;
}


.gallery--table {
  background: var(--color-cream-dark);
}


.gallery--badges {
  background: var(--color-olive-pale);
}

.gallery--badges-alt {
  background: var(--color-cream);
}


.gallery--faq {
  background: var(--color-white-warm);
}


.gallery--story {
  background: var(--color-cream);
}


.gallery--values {
  background: var(--color-white-warm);
}


.gallery--approach {
  background: var(--color-cream);
}


.gallery--contact {
  background: var(--color-white-warm);
  padding-top: var(--space-md);
}

.gallery-inner--contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}


.gallery--map {
  padding: 0;
}

.map-container {
  width: 100%;
  overflow: hidden;
}

.map-container iframe {
  display: block;
  width: 100%;
}


.gallery--service-detail {
  background: var(--color-white-warm);
}

.gallery--service-alt {
  background: var(--color-cream);
}

.gallery-inner--service {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-inner--service-rev {
  direction: ltr;
}

.gallery-service-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--color-brown);
  line-height: 1.25;
  margin: 0.75rem 0 1.25rem;
}

.gallery-service-text p {
  color: var(--color-text-mid);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.gallery-service-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.service-tag-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-icon-lg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--color-mustard-pale);
  border-radius: var(--radius-md);
  color: var(--color-mustard);
  font-size: 1.1rem;
}

.service-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--color-text-mid);
  font-size: 0.95rem;
}

.service-list li i {
  color: var(--color-olive);
  margin-top: 0.2rem;
  flex-shrink: 0;
}


.gallery-inner--story {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.gallery-image-block--story img {
  height: 440px;
}

.gallery-image-block--left img {
  height: 420px;
}

@media (min-width: 768px) {
  .gallery-inner {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .gallery-inner--service-rev .gallery-service-image {
    order: -1;
  }

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

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

  .gallery-image-block img {
    height: 460px;
  }
}

/* ===================================================
   SHELF (Card Rows)
   =================================================== */

.shelf--services {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  width: 100%;
}

.shelf-card {
  background: var(--color-white-warm);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,146,42,0.12);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.shelf-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,146,42,0.3);
}

.shelf-card-icon {
  width: 52px;
  height: 52px;
  background: var(--color-mustard-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-mustard);
  margin-bottom: 1.25rem;
  transition: background var(--transition-base);
}

.shelf-card:hover .shelf-card-icon {
  background: var(--color-mustard);
  color: var(--color-white-warm);
}

.shelf-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-brown);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.shelf-card p {
  color: var(--color-text-mid);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-mustard);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition-base), color var(--transition-base);
}

.card-link:hover {
  gap: 0.7rem;
  color: var(--color-terracotta);
}


.shelf--process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.shelf-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.shelf-step-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(245,240,232,0.2);
  line-height: 1;
  flex-shrink: 0;
  min-width: 3rem;
  transition: color var(--transition-base);
}

.shelf-step:hover .shelf-step-num {
  color: var(--color-mustard-light);
}

.shelf-step-content h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-cream);
  margin-bottom: 0.5rem;
}

.shelf-step-content p {
  color: rgba(245,240,232,0.75);
  font-size: 0.95rem;
  line-height: 1.7;
}


.shelf--images {
  display: flex;
  height: 340px;
  gap: 0;
  width: 100%;
}

.shelf-img-item {
  flex: 1;
  overflow: hidden;
}

.shelf-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.shelf-img-item:hover img {
  transform: scale(1.04);
}

.shelf-img-item--tall {
  flex: 1.3;
}


.shelf--badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
}

.shelf-badge {
  background: var(--color-white-warm);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(90,110,58,0.15);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.shelf-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.shelf-badge-icon {
  width: 48px;
  height: 48px;
  background: var(--color-olive-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-olive);
  margin-bottom: 1rem;
  transition: background var(--transition-base);
}

.shelf-badge:hover .shelf-badge-icon {
  background: var(--color-olive);
  color: var(--color-white-warm);
}

.shelf-badge h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--color-brown);
  margin-bottom: 0.5rem;
}

.shelf-badge p {
  color: var(--color-text-mid);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.shelf--badges-sm {
  grid-template-columns: 1fr;
}


.shelf--faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 800px;
}

.shelf-faq-item {
  background: var(--color-white-warm);
  border-radius: var(--radius-md);
  border: 1px solid rgba(200,146,42,0.15);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.shelf-faq-item:hover {
  box-shadow: var(--shadow-md);
}

.shelf-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-brown);
  min-height: 44px;
  transition: background var(--transition-base);
}

.shelf-faq-trigger:hover {
  background: var(--color-mustard-pale);
}

.shelf-faq-trigger[aria-expanded="true"] {
  background: var(--color-mustard-pale);
  color: var(--color-mustard);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--color-mustard);
  transition: transform var(--transition-smooth);
}

.shelf-faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.shelf-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding var(--transition-smooth);
  padding: 0 1.5rem;
}

.shelf-faq-answer.is-open {
  max-height: 500px;
  padding: 0.75rem 1.5rem 1.5rem;
}

.shelf-faq-answer p {
  color: var(--color-text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
}


.shelf--values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
}

.shelf-value-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-left: 4px solid var(--color-mustard);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.shelf-value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.shelf-value-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-mustard);
  margin-bottom: 0.75rem;
}

.shelf-value-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-brown);
  margin-bottom: 0.5rem;
}

.shelf-value-card p {
  color: var(--color-text-mid);
  font-size: 0.93rem;
  line-height: 1.65;
  margin: 0;
}

@media (min-width: 640px) {
  .shelf--services {
    grid-template-columns: 1fr 1fr;
  }

  .shelf--badges {
    grid-template-columns: 1fr 1fr;
  }

  .shelf--badges-sm {
    grid-template-columns: 1fr 1fr;
  }

  .shelf--values {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .shelf--services {
    grid-template-columns: repeat(4, 1fr);
  }

  .shelf--badges {
    grid-template-columns: repeat(5, 1fr);
  }

  .shelf--badges-sm {
    grid-template-columns: repeat(4, 1fr);
  }

  .shelf--process {
    grid-template-columns: 1fr 1fr;
  }

  .shelf--values {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===================================================
   PULL QUOTE / SPOTLIGHT QUOTE
   =================================================== */

.spotlight-quote {
  background: var(--color-mustard);
  padding: var(--space-lg) var(--space-md);
  position: relative;
  overflow: hidden;
}

.spotlight-quote--alt {
  background: var(--color-terracotta);
}

.spotlight-quote--sm {
  padding: var(--space-md) var(--space-md);
}

.spotlight-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.spotlight-quote-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.spotlight-quote-mark {
  font-family: var(--font-heading);
  font-size: 6rem;
  line-height: 0.5;
  color: rgba(255,255,255,0.25);
  display: block;
  margin-bottom: 1rem;
  font-weight: 700;
}

.spotlight-quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--color-white-warm);
  line-height: 1.5;
  font-style: italic;
  margin: 0 0 1.25rem;
  border: none;
  padding: 0;
}

.spotlight-quote-source {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(250,247,242,0.75);
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===================================================
   COMPARISON TABLE
   =================================================== */

.spotlight-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.spotlight-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white-warm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  min-width: 600px;
}

.spotlight-table thead tr {
  background: var(--color-brown);
}

.spotlight-table thead th {
  padding: 1.25rem 1.25rem;
  text-align: center;
  font-weight: 600;
  color: var(--color-cream);
  font-size: 0.85rem;
  vertical-align: bottom;
  border: none;
}

.spotlight-table thead th.col-feature {
  text-align: left;
  color: rgba(245,240,232,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.col-recommended {
  background: rgba(200,146,42,0.15) !important;
  position: relative;
}

thead th.col-recommended {
  background: var(--color-mustard) !important;
  color: var(--color-white-warm) !important;
}

.recommended-badge {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.8);
  margin-bottom: 0.25rem;
  font-weight: 400;
}

.spotlight-table tbody tr {
  border-bottom: 1px solid rgba(200,146,42,0.1);
  transition: background var(--transition-base);
}

.spotlight-table tbody tr:hover {
  background: var(--color-cream);
}

.spotlight-table tbody td {
  padding: 1rem 1.25rem;
  text-align: center;
  color: var(--color-text-mid);
  vertical-align: middle;
  border: none;
}

.spotlight-table tbody td:first-child {
  text-align: left;
  color: var(--color-text);
  font-weight: 500;
}

.table-check {
  color: var(--color-olive);
  font-size: 1rem;
}

.table-no {
  color: var(--color-stone-light);
  font-size: 0.875rem;
}

.table-cta {
  margin-top: 2rem;
  text-align: center;
}

/* ===================================================
   CTA SPOTLIGHT SECTION
   =================================================== */

.spotlight--cta {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.spotlight-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.spotlight-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: var(--space-xl) var(--space-sm);
}

.spotlight-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61,43,26,0.82) 0%, rgba(61,43,26,0.55) 100%);
  z-index: -1;
}

.spotlight-cta-content {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.spotlight-cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--color-white-warm);
  margin: 0.5rem 0 1.25rem;
  line-height: 1.2;
}

.spotlight-cta-content p {
  color: rgba(245,240,232,0.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ===================================================
   CONTACT PAGE
   =================================================== */

.contact-form-card {
  background: var(--color-white-warm);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(200,146,42,0.12);
}

.form-heading {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-brown);
  margin-bottom: 0.5rem;
}

.form-subheading {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  background: var(--color-cream);
  border: 2px solid rgba(200,146,42,0.2);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  width: 100%;
  min-height: 44px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-mustard);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  min-height: 20px;
  border: 2px solid rgba(200,146,42,0.4);
  border-radius: 4px;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: all var(--transition-base);
}

.checkbox-label input:checked + .checkbox-custom {
  background: var(--color-mustard);
  border-color: var(--color-mustard);
}

.checkbox-label input:checked + .checkbox-custom::after {
  content: '\2713';
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
}

.checkbox-text {
  font-size: 0.85rem;
  color: var(--color-text-mid);
  line-height: 1.5;
}

.checkbox-text a {
  color: var(--color-mustard);
  text-decoration: underline;
}


.gallery-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info-block h3,
.contact-faq-block h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-brown);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-mustard-pale);
}

.contact-detail-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.contact-detail-row i {
  color: var(--color-mustard);
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 20px;
}

.contact-detail-row strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.2rem;
}

.contact-detail-row p,
.contact-detail-row a {
  font-size: 0.95rem;
  color: var(--color-text-mid);
  margin: 0;
}

.contact-detail-row a:hover {
  color: var(--color-mustard);
}

.contact-faq-item {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(200,146,42,0.1);
}

.contact-faq-item:last-child {
  border-bottom: none;
}

.contact-faq-item h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-brown);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.contact-faq-item h4 i {
  color: var(--color-mustard);
  font-size: 0.85rem;
}

.contact-faq-item p {
  font-size: 0.9rem;
  color: var(--color-text-mid);
  line-height: 1.65;
  margin: 0;
}

/* ===================================================
   THANKS PAGE
   =================================================== */

.canvas--thanks {
  background: var(--color-cream-dark);
}

.canvas--thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 3rem) var(--space-sm) var(--space-xl);
  min-height: 70vh;
}

.thanks-card {
  background: var(--color-white-warm);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(200,146,42,0.15);
}

.thanks-icon {
  font-size: 3rem;
  color: var(--color-olive);
  margin-bottom: 1.5rem;
}

.thanks-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--color-brown);
  margin-bottom: 1rem;
}

.thanks-text {
  color: var(--color-text-mid);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.thanks-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

@media (min-width: 480px) {
  .thanks-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* ===================================================
   LEGAL PAGES
   =================================================== */

.canvas--legal {
  background: var(--color-cream);
}

.canvas--legal-main {
  flex: 1;
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: var(--space-xl);
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
}

.legal-header {
  max-width: 800px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}

.legal-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--color-brown);
  margin-bottom: 0.75rem;
}

.legal-meta {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.legal-cards {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.legal-card {
  background: var(--color-white-warm);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(200,146,42,0.08);
  transition: box-shadow var(--transition-base);
}

.legal-card:hover {
  box-shadow: var(--shadow-md);
}

.legal-card--intro {
  border-left: 4px solid var(--color-mustard);
}

.legal-card--highlight {
  border-left: 4px solid var(--color-terracotta);
}

.legal-card h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-brown);
  margin-bottom: 1rem;
}

.legal-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-brown);
  margin: 1.25rem 0 0.5rem;
}

.legal-card p {
  color: var(--color-text-mid);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 0.875rem;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card ul {
  margin: 0.75rem 0;
  padding-left: 1.25rem;
}

.legal-card ul li {
  color: var(--color-text-mid);
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 0.4rem;
  list-style: disc;
}

.legal-card a {
  color: var(--color-mustard);
  text-decoration: underline;
}

.legal-cards--terms .legal-card h2 {
  color: var(--color-terracotta);
}

.legal-cards--cookies .legal-card h2 {
  color: var(--color-olive);
}

/* ===================================================
   FOOTER
   =================================================== */

.stage-footer {
  background: var(--color-brown);
  color: var(--color-cream);
  padding: var(--space-xl) var(--space-sm) var(--space-md);
  margin-top: auto;
}

.stage-footer-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity var(--transition-base);
}

.footer-logo:hover img {
  opacity: 1;
}

.footer-tagline {
  color: rgba(245,240,232,0.65);
  font-size: 0.875rem;
  max-width: 480px;
  line-height: 1.6;
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 0.5rem;
}

.footer-nav a {
  color: rgba(245,240,232,0.8);
  font-size: 0.875rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-base), background var(--transition-base);
}

.footer-nav a:hover {
  color: var(--color-mustard-light);
  background: rgba(255,255,255,0.08);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-contact a,
.footer-contact span {
  color: rgba(245,240,232,0.75);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition-base);
}

.footer-contact a:hover {
  color: var(--color-mustard-light);
}

.footer-contact i {
  color: var(--color-mustard-light);
  width: 16px;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(245,240,232,0.1);
  width: 100%;
}

.footer-legal-links a {
  color: rgba(245,240,232,0.5);
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  transition: color var(--transition-base);
}

.footer-legal-links a:hover {
  color: rgba(245,240,232,0.8);
}

.footer-legal-bar {
  width: 100%;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(245,240,232,0.08);
}

.footer-legal-bar p {
  color: rgba(245,240,232,0.35);
  font-size: 0.75rem;
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 640px) {
  .footer-contact {
    flex-direction: row;
    justify-content: center;
  }
}

/* ===================================================
   COOKIE CONSENT MODAL
   =================================================== */

.cookie-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(44,31,15,0.65);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cookie-backdrop.is-visible {
  opacity: 1;
}

.cookie-modal {
  background: var(--color-white-warm);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 90%;
  overflow-y: auto;
}

.cookie-backdrop.is-visible .cookie-modal {
  transform: translateY(0) scale(1);
}

.cookie-modal-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.cookie-modal-icon {
  font-size: 1.5rem;
  color: var(--color-mustard);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.cookie-modal-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-brown);
  margin: 0;
}

.cookie-modal-desc {
  font-size: 0.875rem;
  color: var(--color-text-mid);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.cookie-modal-desc a {
  color: var(--color-mustard);
  text-decoration: underline;
}

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  border: 1px solid rgba(200,146,42,0.15);
}

.cookie-category-info {
  flex: 1;
}

.cookie-category-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-brown);
  margin-bottom: 0.2rem;
}

.cookie-category-desc {
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.5;
}


.cookie-toggle {
  position: relative;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-toggle-track {
  display: block;
  width: 40px;
  height: 22px;
  background: var(--color-stone-light);
  border-radius: 11px;
  cursor: pointer;
  transition: background var(--transition-base);
  position: relative;
}

.cookie-toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition-smooth);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.cookie-toggle input:checked + .cookie-toggle-track {
  background: var(--color-mustard);
}

.cookie-toggle input:checked + .cookie-toggle-track::after {
  transform: translateX(18px);
}

.cookie-toggle input:disabled + .cookie-toggle-track {
  opacity: 0.7;
  cursor: not-allowed;
}

.cookie-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 400px) {
  .cookie-modal-actions {
    flex-direction: row;
  }

  .cookie-modal-actions .spotlight-btn {
    flex: 1;
    justify-content: center;
  }
}

/* ===================================================
   RESPONSIVE ADJUSTMENTS
   =================================================== */

@media (min-width: 480px) {
  .gallery {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  .spotlight-inner {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  .canvas--legal-main {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }
}

@media (min-width: 1200px) {
  .gallery {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }
}

/* ===================================================
   SCROLL ANIMATIONS
   =================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

/* ===================================================
   UTILITY
   =================================================== */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}