﻿/* Spice & Steam Coming Soon Button */
.spice-steam-btn {
  background: #fc1e1e !important;
  color: #fff !important;
  border: none;
  margin-top: 16px;
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  box-shadow: 0 8px 24px rgba(252, 30, 30, 0.18);
  cursor: not-allowed;
  transition: background 0.3s;
}
.spice-steam-btn:hover,
.spice-steam-btn:focus {
  background: #b80000 !important;
}
/* Coming Soon Button Customization */
.coming-soon-btn {
  margin-left: 12px;
  position: relative;
  cursor: not-allowed;
  pointer-events: auto;
}
.coming-soon-btn .coming-soon-x {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2em;
  color: #fff;
  pointer-events: none;
}
.coming-soon-btn:hover .coming-soon-text {
  opacity: 0;
}
.coming-soon-btn:hover .coming-soon-x {
  display: block;
}
/* ─── Reset & Variables ─────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --peach: #fdddb8;
  --peach-dark: hsla(33, 90%, 70%, 1);
  --pink: #fc6024;
  --pink-light: #fc6024;
  --cta: #fc6024;
  --cta-hover: #fc6024;
  --ink: #111111;
  --ink-soft: hsla(0, 0%, 7%, 0.72);
  --white: #ffffff;
  --cream: #ffc06d;
  --glass: hsla(33, 100%, 88%, 0.68);
  --line: hsla(0, 0%, 0%, 0.08);
  --radius-pill: 200px;
  --motion-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition: 0.5s var(--motion-out);
  --shadow-soft: 0 8px 30px hsla(0, 0%, 0%, 0.08);
  --shadow-strong: 0 18px 46px rgba(252, 96, 36, 0.22);
  --nav-pad-y: clamp(1px, 0.2vh, 2px);
  --nav-height: calc(48px + (var(--nav-pad-y) * 2));
  --cfg-scale: 1.25;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

@media (hover: none) and (pointer: coarse) {
  html {
    scroll-snap-type: none;
    scroll-behavior: auto;
  }
}

body {
  font-family: "Ubuntu", sans-serif;
  color: var(--ink);
  background: var(--peach);
  overflow-x: hidden;
  height: auto;
  min-height: 100%;
}

body:not(.intro-ready) > *:not(.load-overlay) {
  visibility: hidden;
}

.snap-section {
  height: 100dvh !important;
  scroll-snap-align: start !important;
  scroll-snap-stop: always !important;
}

body.is-locked,
body.is-locked .nav-bar {
  padding-right: var(--scrollbar-width, 0px) !important;
}

body.is-locked {
  overflow: hidden !important;
}

.hero-section,
.configurator-section,
.contact-section,
.snap-section {
  height: 100dvh;
  min-height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  background: transparent;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: var(--nav-height) 0 48px;
}

#configurator.configurator-section {
  padding: 0px 0;
}

#home.hero-section,
.services-section,
#configurator,
.contact-section {
  background: var(--peach) !important;
}

#contact.contact-section {
  height: 100dvh !important;
  min-height: 100dvh !important;
  padding: var(--nav-height) 20px 0 !important;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#contact .configurator-container {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  justify-content: center;
  padding-top: 36px;
  margin-left: auto !important;
  margin-right: auto !important;
  align-self: center;
}

.services-section {
  padding-top: var(--nav-height) !important;
  padding-bottom: 0 !important;
}

#configurator {
  padding-top: calc(var(--nav-height) + 0px) !important;
}

#home.hero-section {
  justify-content: center;
  padding-left: clamp(24px, 5vw, 96px);
  padding-right: clamp(24px, 5vw, 96px);
}

#home .hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 6vw, 96px);
}

#home .hero-left {
  justify-self: center;
  align-items: center;
  text-align: center;
  max-width: 820px;
}

#home .hero-right {
  justify-self: center;
}

#home .hero-actions {
  justify-content: center;
}

#home .hero-stats {
  justify-content: center;
}

#home .hero-title .accent {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#home .hero-title {
  font-size: clamp(40px, 5.4vw, 72px);
}

#home .hero-desc {
  font-size: 20px;
  max-width: 680px;
}

#home .hero-image-wrap {
  width: clamp(280px, 28vw, 460px);
}

.footer-section {
  height: auto;
  min-height: auto;
  padding: 60px 30px;
  background: #000;
  color: var(--cream);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  text-align: center;
}

body.nav-open {
  overflow: hidden;
}

.about-section {
  padding: 120px 40px;
  background: var(--peach) !important;
  text-align: center;
  display: flex;
  justify-content: center;
}

.about-inner {
  max-width: 800px;
}

.about-title {
  font-family: "Vollkorn", serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 24px;
}

.about-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

/* ─── Services ──────────────────────────────────────────────── */
.services-teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, hsla(25, 100%, 72%, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 70%, hsla(15, 90%, 60%, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.services-teaser__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
}

.services-teaser__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Ubuntu", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 24px;
}

.services-teaser__eyebrow::before,
.services-teaser__eyebrow::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--cta);
  opacity: 0.55;
}

.services-teaser__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.services-teaser__title em {
  color: var(--cta);
  font-style: italic;
}

.services-teaser__body {
  font-family: "Ubuntu", sans-serif;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 36px;
}

@media (max-width: 599px) {
  .services-teaser {
    min-height: 55vh;
    padding: 56px 24px;
  }
  .services-teaser__inner {
    padding-left: clamp(24px, 5vw, 40px);
    padding-right: clamp(24px, 5vw, 40px);
    width: 100%;
    box-sizing: border-box;
  }
  .services-teaser__title {
    font-size: 44px;
    line-height: 1.05;
  }
}

.services-section {
  height: 100dvh;
  min-height: 100dvh;
  padding: var(--nav-height) 40px 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  box-sizing: border-box;
}

.services-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  justify-content: center;
}

.service-row {
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 32px 32px;
  background: var(--glass);
  border-radius: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.service-row:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

@media (min-width: 900px) {
  .service-row {
    max-width: none;
    margin: 0;
    padding-bottom: 32px;
  }

  .service-title {
    font-size: clamp(44px, 6vw, 80px);
  }

  .service-body {
    font-size: clamp(26px, 2.8vw, 40px);
  }

  .service-cta,
  .service-row .btn-primary {
    margin-top: auto;
  }
}

@media (max-width: 899px) {
  .services-section {
    padding: 80px 24px;
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .services-container {
    gap: 24px;
  }

  .service-title {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.service-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  margin-bottom: 0;
}

.service-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1s var(--motion-out);
}

.service-row:hover .service-image {
  transform: scale(1.1);
}

.service-title {
  font-family: "Vollkorn", serif;
  font-size: clamp(10px, 3.2vw, 28px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0;
  line-height: 1.1;
}

.service-body {
  font-family: "Ubuntu", sans-serif;
  font-size: clamp(6px, 1.8vw, 12px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.service-cta {
  width: auto;
  margin-top: 16px;
  padding: 14px 24px;
  font-size: 15px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 2202;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    hsla(0, 0%, 100%, 0.35),
    hsla(0, 0%, 100%, 0.1)
  );
}

.scroll-progress__bar {
  width: 100%;
  height: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(
    90deg,
    var(--pink) 0%,
    hsl(18, 95%, 58%) 50%,
    hsl(44, 100%, 62%) 100%
  );
  transition: transform 0.18s linear;
}

.grain-layer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}

@keyframes grain {
  0%,
  100% {
    transform: translate(0, 0);
  }

  10% {
    transform: translate(-5%, -10%);
  }

  20% {
    transform: translate(-15%, 5%);
  }

  30% {
    transform: translate(7%, -25%);
  }

  40% {
    transform: translate(-5%, 25%);
  }

  50% {
    transform: translate(-15%, 10%);
  }

  60% {
    transform: translate(15%, 0%);
  }

  70% {
    transform: translate(0%, 15%);
  }

  80% {
    transform: translate(3%, 35%);
  }

  90% {
    transform: translate(-10%, 10%);
  }
}

@keyframes motifDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }

  25% {
    transform: translate3d(5px, -8px, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(8px, 4px, 0) rotate(1.5deg);
  }

  75% {
    transform: translate3d(-4px, -6px, 0) rotate(0.5deg);
  }
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(252, 96, 36, 0.34);
  outline-offset: 2px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(10px);
  transition:
    opacity 0.8s var(--motion-out),
    transform 0.8s var(--motion-out),
    filter 0.8s var(--motion-out);
  transition-delay: calc(var(--reveal-order, 0) * 110ms);
  animation: none !important;
  will-change: transform, opacity, filter;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ─── Page Load Overlay ─────────────────────────────────────── */
.load-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  overflow: hidden;
}

.load-overlay__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: clamp(350px, 36vw, 510px);
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  filter: drop-shadow(0 10px 30px hsla(0, 0%, 0%, 0.35));
  animation: overlayLogo 1.28s var(--motion-out) 0.3s forwards;
}

.load-overlay__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.load-overlay__slide {
  width: 50.5%;
  height: 100%;
  background: transparent;
  transform-origin: 0% 50%;
  position: relative;
  z-index: 2;
  animation: slideOut 1.1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

.load-overlay__slide:last-child {
  transform-origin: 100% 50%;
}

@keyframes overlayLogo {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  12% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.98);
  }
}

@keyframes slideOut {
  0% {
    transform: scaleX(1);
    opacity: 1;
  }

  65% {
    opacity: 0.78;
  }

  100% {
    transform: scaleX(0);
    opacity: 0;
  }
}

/* ─── Navbar ────────────────────────────────────────────────── */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--nav-pad-y) 0;
  opacity: 0;
  transition:
    background var(--transition),
    backdrop-filter var(--transition),
    box-shadow var(--transition);
}

.nav-bar.is-intro-visible {
  z-index: 2101;
  animation: navBarSettle 0.55s var(--motion-out) both;
}

.nav-bar.scrolled {
  background: transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px hsla(0, 0%, 0%, 0.06);
}

.navbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  max-width: 1400px;
  min-height: 48px;
  margin: 0 auto;
  padding: 4px clamp(20px, 4vw, 48px) 1px;
}

.navbar__brand {
  justify-self: start;
  font-family: "Cormorant Garamond", "Vollkorn", serif;
  font-size: clamp(44px, 3.8vw, 60px);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1;
  transition: transform var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  will-change: transform;
  transform: none;
}

.navbar__right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  transform: none;
  flex-shrink: 0;
  flex-wrap: nowrap;
}

.navbar__brand:hover {
  transform: scale(1.02);
}

.navbar-logo {
  height: clamp(44px, 11vh, 80px);
  width: auto;
  display: block;
}

.navbar-brand-text {
  font-family: "Cormorant Garamond", "Vollkorn", serif;
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
}

.navbar__brand span {
  color: var(--pink);
  font-style: italic;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  list-style: none;
  padding: 8px 12px;
  background: var(--glass);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  border: 1px solid hsla(0, 0%, 100%, 0.36);
  box-shadow: var(--shadow-soft);
}

.nav-menu a {
  display: block;
  padding: 8px 20px;
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}

.nav-menu a:hover {
  background: hsla(0, 0%, 0%, 0.08);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 15px hsla(0, 0%, 0%, 0.05);
}

.nav-menu a.is-active {
  background: var(--ink);
  color: var(--cream);
}

.nav-menu .nav-cta a {
  background: var(--cta);
  color: var(--white);
  font-weight: 500;
  padding: 8px 24px;
  box-shadow: 0 8px 18px rgba(252, 96, 36, 0.22);
}

.nav-menu .nav-cta a:hover {
  background: var(--cta-hover);
}

.nav-menu .nav-cta a.is-active {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  color: var(--cream);
}

.lang-toggle {
  border: 1px solid hsla(0, 0%, 100%, 0.45);
  background: var(--glass);
  color: var(--ink);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-family: "Ubuntu", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  box-shadow: var(--shadow-soft);
}

.lang-toggle:hover {
  transform: translateY(-1px);
  background: hsla(0, 0%, 100%, 0.5);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: var(--glass);
  border: 1px solid hsla(0, 0%, 100%, 0.4);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  position: relative;
  z-index: 200;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.burger:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px hsla(0, 0%, 0%, 0.12);
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: absolute;
  left: 9px;
  transition: all var(--transition);
}

.burger .b-top {
  top: 13px;
}

.burger .b-mid {
  top: 21px;
}

.burger .b-bot {
  top: 29px;
}

.burger.open .b-top {
  transform: translateY(8px) rotate(45deg);
}

.burger.open .b-mid {
  opacity: 0;
  transform: scaleX(0);
}

.burger.open .b-bot {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: flex;
  position: fixed;
  inset: 0;
  background: hsla(0, 0%, 5%, 0.2);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s var(--motion-out),
    visibility 0s step-end var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.3s var(--motion-out),
    visibility 0s step-end 0s;
}

.mobile-menu__panel {
  width: min(560px, 100%);
  border-radius: 32px;
  border: 1px solid hsla(0, 0%, 100%, 0.45);
  background: linear-gradient(
    165deg,
    hsla(33, 100%, 84%, 0.98) 0%,
    hsla(33, 100%, 80%, 0.97) 56%,
    rgba(252, 96, 36, 0.12) 100%
  );
  box-shadow: 0 24px 52px hsla(0, 0%, 0%, 0.26);
  padding: 26px 18px;
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  transition:
    transform 0.45s var(--motion-out),
    opacity 0.45s var(--motion-out);
}

.mobile-menu.open .mobile-menu__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.mobile-menu__panel.is-dragging {
  transition: none;
}

.mobile-menu__list {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu li {
  width: 100%;
}

.mobile-menu a {
  font-family: "Vollkorn", serif;
  font-size: clamp(30px, 7vw, 44px);
  color: var(--ink);
  text-decoration: none;
  padding: 12px 40px;
  border-radius: 22px;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
  width: 100%;
  text-align: center;
  display: block;
  border: 1px solid transparent;
}

.mobile-menu a:hover {
  background: hsla(0, 0%, 100%, 0.35);
  border-color: hsla(0, 0%, 100%, 0.45);
  transform: translateY(-1px);
}

.mobile-menu a.is-active {
  background: hsla(0, 0%, 100%, 0.45);
  border-color: hsla(0, 0%, 100%, 0.55);
}

.mobile-menu .mobile-cta a {
  background: var(--cta);
  color: var(--white);
  font-size: clamp(24px, 6vw, 30px);
  margin-top: 8px;
  box-shadow: var(--shadow-strong);
}

.mobile-menu .mobile-cta a:hover {
  background: var(--cta-hover);
}

.mobile-menu a.glow-button.is-active,
.mobile-menu .mobile-cta a.is-active {
  background: var(--ink);
  color: var(--white);
}

/* ─── Hero Section ──────────────────────────────────────────── */
.hero-stack {
  position: relative;
  background: var(--peach);
  overflow: hidden;
}

.hero-stack::before {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  background: radial-gradient(
    circle,
    hsla(33, 100%, 72%, 0.5) 0%,
    transparent 70%
  );
  right: -100px;
  top: -100px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-stack::after {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  background: radial-gradient(
    circle,
    rgba(252, 96, 36, 0.08) 0%,
    transparent 70%
  );
  left: -80px;
  bottom: 8%;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-section {
  z-index: 1;
}

#about .hero-inner {
  justify-content: center;
  align-items: center;
  gap: 56px;
}

.about-placeholder {
  font-family: "Vollkorn", serif;
  font-size: clamp(46px, 7vw, 104px);
  line-height: 0.95;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--pink);
  text-transform: uppercase;
  text-align: center;
  max-width: 14ch;
  text-shadow: 0 12px 32px rgba(252, 96, 36, 0.2);
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-shape--one {
  width: 170px;
  height: 170px;
  right: 11%;
  top: 18%;
  background: rgba(252, 96, 36, 0.14);
  animation: driftOne 12s var(--motion-out) infinite;
}

.hero-shape--two {
  width: 110px;
  height: 110px;
  left: 8%;
  top: 30%;
  background: hsla(33, 100%, 68%, 0.28);
  animation: driftTwo 15s var(--motion-out) infinite;
}

@keyframes driftOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-8px, 14px, 0);
  }
}

@keyframes driftTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(12px, -10px, 0);
  }
}

.hero-inner {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-left {
  flex: 1;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.6;
  margin-bottom: 24px;
  animation: fadeUp 0.8s var(--motion-out) 0.6s both;
}

.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
}

.hero-title {
  font-family: "Vollkorn", serif;
  font-size: clamp(36px, 5vw, 64px);
  /* Slightly reduced to help fitting */
  line-height: 1.05;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 20px;
  position: relative;
  perspective: 1000px;
  transform-style: preserve-3d;
  cursor: default;
}

.hero-title .line-one {
  display: block;
  opacity: 0;
  transform: translateY(12px)
    translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
  transition: transform 0.1s var(--motion-out);
  will-change: transform;
}

.hero-title .accent {
  color: var(--pink);
  display: block;
  font-style: italic;
  position: relative;
  width: fit-content;
  opacity: 0;
  transform: translateY(14px) scale(0.98)
    translate3d(
      calc(var(--parallax-x, 0) * 1.5),
      calc(var(--parallax-y, 0) * 1.5),
      20px
    );
  transition:
    transform 0.1s var(--motion-out),
    text-shadow 0.4s var(--motion-out);
  will-change: transform, text-shadow;
}

.hero-title .accent:hover {
  text-shadow: 0 0 20px rgba(252, 96, 36, 0.25);
}

.hero-title.is-intro-animated {
  animation: fadeUp 1s var(--motion-out) both;
}

.hero-title.is-intro-animated .line-one {
  animation: headingLineLift 0.95s var(--motion-out) 0.06s both;
}

.hero-title.is-intro-animated .accent {
  animation: accentLift 1s var(--motion-out) 0.14s both;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--pink);
  margin: 28px 0;
  animation: fadeUp 0.9s var(--motion-out) 0.85s both;
}

.hero-desc {
  font-family: "Ubuntu", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 40px;
  animation: fadeUp 0.9s var(--motion-out) 0.95s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s var(--motion-out) 1.05s both;
}

.glow-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.glow-button::before {
  content: "";
  position: absolute;
  left: var(--glow-x, 50%);
  top: var(--glow-y, 50%);
  width: 170px;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    hsla(0, 0%, 100%, 0.48) 0%,
    hsla(0, 0%, 100%, 0.08) 28%,
    transparent 72%
  );
  opacity: 0;
  transition: opacity 0.25s var(--motion-out);
  pointer-events: none;
}

.glow-button:hover::before {
  opacity: 0.8;
}

.glow-button:active {
  transform: translateY(0) scale(0.985);
}

.btn-primary.glow-button:active,
.nav-menu .nav-cta .glow-button:active,
.mobile-menu .mobile-cta .glow-button:active {
  box-shadow: 0 4px 14px rgba(252, 96, 36, 0.28);
}

html {
  font-family: "Outfit", sans-serif;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-snap-type: y mandatory;
}

/* Consolidated lock logic above */

.btn-primary {
  display: inline-block;
  padding: 18px 16px;
  background: var(--cta);
  color: var(--white);
  font-family: "Ubuntu", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  box-shadow: 0 8px 24px rgba(252, 96, 36, 0.28);
}

.btn-primary:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(252, 96, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Ubuntu", sans-serif;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  opacity: 0.65;
  transition: opacity var(--transition);
}

.btn-secondary:hover {
  opacity: 1;
}

.btn-secondary::after {
  content: "→";
  transition: transform var(--transition);
}

.btn-secondary:hover::after {
  transform: translateX(4px);
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  animation: fadeUp 0.9s var(--motion-out) 1.15s both;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: "Vollkorn", serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  opacity: 0.55;
  letter-spacing: 0.05em;
}

/* Hero image */
.hero-right {
  flex: 0 0 auto;
  position: relative;
  animation: fadeIn 1.2s var(--motion-out) 0.5s both;
}

.hero-image-wrap {
  width: clamp(300px, 32vw, 480px);
  aspect-ratio: 3/4;
  border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
  overflow: hidden;
  position: relative;
  border: 1px solid hsla(0, 0%, 100%, 0.6);
  box-shadow:
    0 30px 80px hsla(33, 100%, 50%, 0.2),
    0 8px 24px hsla(0, 0%, 0%, 0.1);
  will-change: transform;
  transform: translate3d(var(--img-shift-x, 0px), var(--img-shift-y, 0px), 0);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-wrap--about {
  border-radius: 28px;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  border: 1px solid hsla(0, 0%, 100%, 0.7);
  box-shadow:
    0 28px 72px rgba(252, 96, 36, 0.16),
    0 8px 24px hsla(0, 0%, 0%, 0.1);
}

/* Floating badge */
.hero-badge {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: var(--white);
  border-radius: 20px;
  padding: 16px 24px;
  box-shadow: 0 8px 32px hsla(0, 0%, 0%, 0.12);
  border: 1px solid hsla(0, 0%, 100%, 0.5);
  will-change: transform;
  transform: translate3d(
    var(--badge-shift-x, 0px),
    var(--badge-shift-y, 0px),
    0
  );
}

.hero-badge-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s var(--motion-out) infinite;
}

.hero-badge-icon {
  font-size: 28px;
  line-height: 1;
}

.hero-badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-badge-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}

.hero-badge-sub {
  font-size: 12px;
  opacity: 0.55;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeIn 1s var(--motion-out) 1.5s both;
}

#home .scroll-hint {
  bottom: -22px;
}

.scroll-hint::after {
  content: "";
  width: 1px;
  height: 40px;
  background: var(--ink);
  animation: scrollLine 2s var(--motion-out) infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  45% {
    transform: scaleY(1);
    transform-origin: top;
  }

  55% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ─── Footer ────────────────────────────────────────────────── */
.footer-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  font-family: "Vollkorn", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
}

.footer-brand span {
  color: var(--pink);
}

.footer-tagline {
  font-size: 14px;
  opacity: 0.45;
  margin-top: 6px;
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.55;
  transition:
    opacity var(--transition),
    color var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--white);
}

.footer-copy {
  font-size: 13px;
  opacity: 0.3;
  text-align: center;
  width: 100%;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid hsla(0, 0%, 100%, 0.08);
}

/* ─── Animations ────────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes navBarSettle {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes accentLift {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes headingLineLift {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonRipple {
  from {
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(0.2);
  }

  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(12);
  }
}

/* ─── Configurator ─────────────────────────────────────────── */
.configurator-container {
  width: calc(100% - 48px);
  max-width: 840px;
  margin: auto;
  background: #ffe5ce;
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.13);
  overflow-y: auto;
  height: auto;
  max-height: calc(100dvh - 80px);
  padding: 0 0 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.cfg-modal-header {
  display: flex;
  align-items: center;
  gap: calc(16px * var(--cfg-scale));
  padding: calc(22px * var(--cfg-scale)) calc(28px * var(--cfg-scale)) calc(18px * var(--cfg-scale));
  flex-shrink: 0;
}

.cfg-modal-title {
  font-family: "Vollkorn", serif;
  font-size: calc(22px * var(--cfg-scale));
  font-weight: 600;
  color: var(--pink);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}

.cfg-exit-btn {
  width: calc(32px * var(--cfg-scale));
  height: calc(32px * var(--cfg-scale));
  min-width: calc(32px * var(--cfg-scale));
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  color: var(--ink-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.cfg-exit-btn:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.2);
  color: var(--ink);
}

.cfg-exit-btn:active {
  background: rgba(0, 0, 0, 0.1);
}

.config-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.config-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.config-field--full {
  grid-column: span 2;
}

.config-header {
  margin-bottom: 22px;
  text-align: center;
}

.config-header h2 {
  font-family: "Vollkorn", serif;
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 8px;
}

.config-header p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  border: 0;
  background: linear-gradient(
    135deg,
    hsla(33, 100%, 95%, 0.64),
    hsla(33, 100%, 85%, 0.72)
  );
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow:
    0 12px 28px hsla(0, 0%, 0%, 0.08),
    inset 0 0 0 1px hsla(0, 0%, 100%, 0.52);
  position: relative;
  transition:
    transform 0.22s var(--motion-out),
    box-shadow 0.22s var(--motion-out);
}

.contact-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--pink), var(--pink-light));
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(252, 96, 36, 0.16),
    inset 0 0 0 1px hsla(0, 0%, 100%, 0.62);
}

.contact-card__label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.64;
  padding-left: 10px;
}

.contact-card__value {
  font-size: 19px;
  line-height: 1.35;
  padding-left: 10px;
  word-break: break-word;
}

.contact-card--full {
  grid-column: span 2;
}

label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

input,
select,
textarea {
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: hsla(0, 0%, 0%, 0.02);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition:
    border-color 0.3s var(--motion-out),
    box-shadow 0.3s var(--motion-out);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(252, 96, 36, 0.08);
}

.interaction-ripple {
  position: absolute;
  width: 16px;
  height: 16px;
  left: var(--ripple-x, 50%);
  top: var(--ripple-y, 50%);
  transform: translate(-50%, -50%) scale(0.2);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    hsla(0, 0%, 100%, 0.78) 0%,
    hsla(0, 0%, 100%, 0.24) 42%,
    transparent 72%
  );
  pointer-events: none;
  animation: buttonRipple 0.7s var(--motion-out) forwards;
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1199px) {
  html {
    scroll-snap-type: none;
    scroll-behavior: auto;
  }

  .snap-section {
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  .scroll-progress {
    display: none;
  }

  :root {
    --cfg-scale: 1.08;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .hero-section,
  .services-section,
  .configurator-section,
  .contact-section {
    height: auto;
    min-height: auto;
    overflow: visible;
    padding: var(--nav-height) 20px 56px;
  }

  .configurator-container {
    height: auto !important;
    max-height: none !important;
    overflow-y: visible !important;
    overflow: visible !important;
    width: calc(100% - 32px);
    border-radius: 20px;
  }

  .cfg-modal-header {
    padding: 18px 20px 14px;
  }

  .cfg-modal-title {
    font-size: 13px;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    padding: 0;
  }

  .nav-bar {
    padding: var(--nav-pad-y) 16px;
  }

  .navbar__right {
    margin-left: auto;
    justify-self: auto;
    justify-content: flex-end;
    transform: none;
    gap: 8px;
  }

  .nav-menu {
    display: none;
  }

  .burger {
    display: flex;
  }

  .navbar__brand {
    transform: none;
  }

  .navbar__brand:hover {
    transform: none;
  }

  .hero-section {
    padding-top: var(--nav-height);
    padding-bottom: 64px;
  }

  .hero-eyebrow {
    margin: 0 0 22px;
  }

  .cfg-eyebrow {
    margin: 0 0 22px;
  }

  .hero-title,
  .cfg-q-title {
    margin: 0;
  }

  .hero-desc {
    margin: 4px 0 0;
    font-size: 17px;
  }

  .cfg-q-sub {
    margin: 8px 0 0;
  }

  .hero-image-wrap {
    width: clamp(240px, 70vw, 380px);
  }

  #home .hero-image-wrap {
    width: clamp(260px, 74vw, 420px);
  }

  .hero-badge {
    left: -10px;
    bottom: 20px;
  }

  .scroll-hint {
    display: none;
  }

  .configurator-container {
    max-height: none;
    overflow: visible;
    padding: 0 0 24px;
    width: calc(100% - 24px);
    height: auto;
    border-radius: 16px;
  }
}

@media (max-width: 991px) {
  .hero-inner {
    flex-direction: column;
    align-items: center;
    gap: 48px;
    margin-top: 0;
  }

  #home .hero-inner {
    display: flex;
  }

  .hero-left {
    align-items: center;
    text-align: center;
    max-width: 100%;
    padding-left: 0;
  }

  .hero-title .accent {
    width: 100%;
    text-align: center;
    margin-top: -4px;
  }

  .hero-desc {
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 32px;
  }

  .hero-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

/* Tablet landscape adjustments */
@media (max-width: 1199px) and (min-width: 900px) {
  /* Add horizontal padding for the navbar */
  .nav-bar {
    padding-left: 32px;
    padding-right: 32px;
  }

  /* Show desktop nav on landscape tablets, but make it more compact */
  .navbar__right {
    gap: 8px;
  }

  .nav-menu {
    display: flex;
    gap: 4px;
    padding: 6px 8px;
  }

  .nav-menu a {
    font-size: 16px;
    padding: 8px 14px;
  }

  .nav-menu .nav-cta a {
    padding: 8px 16px;
  }

  .burger {
    display: none;
  }

  /* Services page adjustments */
  .services-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .services-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .service-row {
    padding: 20px 16px;
  }

  .service-title {
    font-size: clamp(16px, 2.8vw, 28px);
  }

  .service-body {
    font-size: clamp(12px, 1.3vw, 16px);
  }
}

@media (max-width: 899px) {
  .service-image-wrap {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 767px) {
  .service-row {
    display: flex;
    flex-direction: column;
    height: auto;
    padding-bottom: 20px;
  }

  .service-image-wrap {
    width: 100%;
    height: auto;
  }

  .service-image {
    width: 100%;
    height: auto;
  }

  .services-container {
    grid-template-columns: 1fr;
  }

  .navbar__brand {
    font-size: 34px;
  }

  .navbar-logo {
    height: 68px;
  }

  .navbar-brand-text {
    font-size: 24px;
  }

  .contact-card__value {
    font-size: 16px;
  }

  .hero-shape {
    display: none;
  }

  .hero-title {
    font-size: clamp(38px, 10vw, 52px);
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
    gap: 14px;
  }

  .btn-primary {
    width: min(100%, 360px);
    text-align: center;
  }

  .hero-stats {
    gap: 24px;
    margin-top: 36px;
    padding-top: 26px;
  }

  .stat-number {
    font-size: 28px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 20px;
  }

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

  .config-field--full {
    grid-column: span 1;
  }

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

  .contact-card--full {
    grid-column: span 1;
  }

  .cfg-choice {
    padding: 12px 14px;
  }

  .cfg-choice-label {
    font-size: 16px;
  }

  .cfg-choice-desc {
    font-size: 13px;
  }

  .cfg-nav {
    flex-wrap: wrap;
    justify-content: stretch;
    gap: 10px;
  }

  .cfg-btn {
    flex: 1 1 0;
    justify-content: center;
    padding: 12px 18px;
    font-size: 15px;
  }

  .services-section {
    padding: calc(var(--nav-height) + 12px) 20px 12px;
  }

  .services-container {
    gap: 18px;
  }

  .service-image {
    width: 100%;
  }

  .service-row {
    padding: 12px 12px 14px;
    border-radius: 22px;
  }

  .service-image {
    object-fit: contain;
  }

  .service-image-wrap {
    aspect-ratio: 1;
    flex: none;
  }

  .service-title {
    font-size: clamp(24px, 6.6vw, 30px);
  }

  #contact.contact-section {
    padding: 0 16px !important;
  }
}

@media (max-width: 478px) {
  .hero-section {
    padding-top: var(--nav-height);
    padding-bottom: 56px;
  }

  .hero-title {
    font-size: clamp(32px, 10vw, 44px);
  }

  .hero-image-wrap {
    width: min(280px, 85vw);
  }

  .hero-badge {
    display: none;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .configurator-section {
    padding-top: 80px;
  }

  .cfg-q-title {
    font-size: clamp(24px, 9vw, 34px);
  }

  .cfg-q-sub {
    font-size: 15px;
    line-height: 1.55;
  }

  .cfg-choice-icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .mobile-menu__panel {
    padding: 20px 12px;
    border-radius: 24px;
  }

  .mobile-menu a {
    padding: 10px 16px;
  }

  .mobile-menu .mobile-cta a {
    margin-top: 4px;
  }

  .navbar__brand {
    gap: 6px;
    font-size: 28px;
  }

  .navbar-logo {
    height: 58px;
  }

  .navbar-brand-text {
    font-size: 22px;
  }
}

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

/* ─── New Configurator (cfg-*) ──────────────────────────────── */

/* Loading overlay */
.cfg-loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: hsla(33, 100%, 88%, 0.94);
  backdrop-filter: blur(14px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: calc(20px * var(--cfg-scale));
}

.cfg-loading-overlay.show {
  display: flex;
}

.cfg-spinner {
  width: calc(48px * var(--cfg-scale));
  height: calc(48px * var(--cfg-scale));
  border-radius: 50%;
  border: calc(3px * var(--cfg-scale)) solid rgba(252, 96, 36, 0.18);
  border-top-color: var(--pink);
  animation: cfgSpin 0.85s linear infinite;
}

@keyframes cfgSpin {
  to {
    transform: rotate(360deg);
  }
}

.cfg-loading-text {
  font-family: "Vollkorn", serif;
  font-size: calc(20px * var(--cfg-scale));
  color: var(--ink);
}

.cfg-loading-sub {
  font-size: calc(13px * var(--cfg-scale));
  color: var(--ink-soft);
}

/* Toast */
.cfg-toast {
  position: fixed;
  bottom: calc(32px * var(--cfg-scale));
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--ink);
  color: var(--white);
  padding: calc(14px * var(--cfg-scale)) calc(24px * var(--cfg-scale));
  border-radius: calc(40px * var(--cfg-scale));
  font-size: calc(13px * var(--cfg-scale));
  z-index: 3001;
  transition: transform 0.4s var(--motion-out);
  white-space: nowrap;
}

.cfg-toast.show {
  transform: translateX(-50%) translateY(0);
}

/* Inner header */
.cfg-inner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: calc(12px * var(--cfg-scale));
}

.cfg-brand {
  display: flex;
  align-items: center;
  gap: calc(10px * var(--cfg-scale));
}

.cfg-brand-mark {
  width: calc(40px * var(--cfg-scale));
  height: calc(40px * var(--cfg-scale));
  border-radius: calc(10px * var(--cfg-scale));
  background: linear-gradient(145deg, var(--peach-dark), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(20px * var(--cfg-scale));
  box-shadow: 0 4px 16px rgba(252, 96, 36, 0.22);
  flex-shrink: 0;
}

.cfg-brand-name {
  font-family: "Vollkorn", serif;
  font-size: calc(22px * var(--cfg-scale));
  font-weight: 600;
  color: var(--ink);
}

.cfg-brand-name span {
  color: var(--pink);
}

.cfg-step-counter {
  font-size: calc(12px * var(--cfg-scale));
  color: var(--ink-soft);
  letter-spacing: calc(1px * var(--cfg-scale));
}

/* Progress bar — lives inside .cfg-modal-header as a flex item */
.cfg-progress-track {
  flex: 1;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: static;
}

.cfg-progress-fill {
  height: 100%;
  background: var(--pink);
  border-radius: 10px;
  transition: width 0.65s var(--motion-out);
}

/* Screens */
.cfg-screen {
  display: none;
}

.cfg-screen.active {
  display: block;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 0;
  animation: cfgFadeIn 0.46s var(--motion-out) both;
}

@keyframes cfgFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cfg-screen-inner {
  width: 100%;
  max-width: calc(1000px * var(--cfg-scale));
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 calc(28px * var(--cfg-scale));
}

.cfg-screen-inner.cfg-wide {
  max-width: calc(1200px * var(--cfg-scale));
}

/* Eyebrows */
.cfg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: calc(8px * var(--cfg-scale));
  font-size: calc(13px * var(--cfg-scale));
  letter-spacing: calc(4px * var(--cfg-scale));
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: calc(12px * var(--cfg-scale));
  color: var(--pink);
}

.cfg-eyebrow::before {
  content: "";
  width: calc(20px * var(--cfg-scale));
  height: calc(1.5px * var(--cfg-scale));
  background: currentColor;
  opacity: 0.55;
}

.cfg-ey-terra {
  color: var(--pink);
}

.cfg-ey-gold {
  color: var(--pink);
}

/* Question title */
.cfg-q-title {
  font-family: "Vollkorn", serif;
  font-size: calc(30px * var(--cfg-scale));
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: calc(12px * var(--cfg-scale));
}

.cfg-q-title em {
  font-style: italic;
  color: var(--pink);
}

.cfg-q-title em.terra {
  color: var(--pink);
}

.cfg-q-title em.gold {
  color: var(--pink);
}

.cfg-q-sub {
  font-size: calc(17px * var(--cfg-scale));
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: calc(32px * var(--cfg-scale));
  max-width: calc(600px * var(--cfg-scale));
}

/* Choice cards */
.cfg-choices {
  display: flex;
  flex-direction: column;
  gap: calc(8px * var(--cfg-scale));
  margin-bottom: calc(28px * var(--cfg-scale));
  width: 100%;
}

.cfg-choices.cfg-g2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(8px * var(--cfg-scale));
}

.cfg-custom-choice {
  margin-bottom: calc(24px * var(--cfg-scale));
}

.cfg-choice {
  background: #ffffff;
  border: 1.5px solid var(--line);
  border-radius: calc(18px * var(--cfg-scale));
  padding: calc(16px * var(--cfg-scale)) calc(18px * var(--cfg-scale));
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: calc(12px * var(--cfg-scale));
  user-select: none;
  transition: all 0.22s var(--motion-out);
  text-align: center;
  position: relative;
}

.cfg-choice:hover {
  border-color: var(--pink-light);
  box-shadow: 0 8px 24px rgba(252, 96, 36, 0.1);
  transform: translateY(-1px);
}

.cfg-choice.sel {
  border-color: var(--pink);
  background: var(--pink);
  box-shadow:
    0 0 0 3px rgba(252, 96, 36, 0.25),
    var(--shadow-soft);
  color: #ffffff;
}

.cfg-choice.t-sel {
  border-color: var(--pink);
  background: var(--pink);
  box-shadow:
    0 0 0 3px rgba(252, 96, 36, 0.25),
    var(--shadow-soft);
  color: #ffffff;
}

.cfg-choice.sel .cfg-choice-label,
.cfg-choice.t-sel .cfg-choice-label,
.cfg-choice-type.sel .cfg-choice-label {
  color: #ffffff;
}

.cfg-choice.sel .cfg-choice-desc,
.cfg-choice.t-sel .cfg-choice-desc {
  color: rgba(255, 255, 255, 0.75);
}

.cfg-choice-icon {
  font-size: calc(22px * var(--cfg-scale));
  flex-shrink: 0;
  width: calc(44px * var(--cfg-scale));
  height: calc(44px * var(--cfg-scale));
  border-radius: calc(10px * var(--cfg-scale));
  background: hsla(33, 100%, 90%, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s;
}

.cfg-choice.sel .cfg-choice-icon,
.cfg-choice.t-sel .cfg-choice-icon {
  background: hsla(0, 0%, 100%, 0.8);
}

.cfg-choice-text {
  flex: 1;
}

.cfg-choice-label {
  font-weight: 600;
  font-size: calc(15px * var(--cfg-scale));
  color: var(--ink);
  line-height: 1.3;
}

.cfg-choice-desc {
  font-size: calc(15px * var(--cfg-scale));
  color: var(--ink-soft);
}

.cfg-choice-check {
  width: calc(20px * var(--cfg-scale));
  height: calc(20px * var(--cfg-scale));
  border-radius: 50%;
  border: 1.5px solid var(--line);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(10px * var(--cfg-scale));
  color: transparent;
  transition: all 0.22s;
}

.cfg-choice.sel .cfg-choice-check {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
}

.cfg-choice.t-sel .cfg-choice-check {
  background: var(--pink);
  border-color: var(--pink);
  color: white;
}

.cfg-choice.cfg-compact {
  padding: calc(10px * var(--cfg-scale)) calc(14px * var(--cfg-scale));
  border-radius: calc(10px * var(--cfg-scale));
}

.cfg-choice.cfg-compact .cfg-choice-icon {
  width: calc(36px * var(--cfg-scale));
  height: calc(36px * var(--cfg-scale));
  font-size: calc(18px * var(--cfg-scale));
}

.cfg-choice.cfg-compact .cfg-choice-label {
  font-size: calc(15px * var(--cfg-scale));
}

.cfg-choice.cfg-compact .cfg-choice-desc {
  font-size: calc(11px * var(--cfg-scale));
}

/* Text inputs in configurator */
.cfg-tiw {
  position: relative;
  margin-bottom: calc(28px * var(--cfg-scale));
}

.cfg-tiw input,
.cfg-tiw textarea {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid var(--line);
  border-radius: calc(12px * var(--cfg-scale));
  padding: calc(16px * var(--cfg-scale)) calc(18px * var(--cfg-scale));
  font-family: "Ubuntu", sans-serif;
  font-size: calc(17px * var(--cfg-scale));
  color: var(--ink);
  outline: none;
  transition: all 0.22s;
}

.cfg-tiw input:focus,
.cfg-tiw textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(252, 96, 36, 0.08);
}

.cfg-tiw textarea {
  resize: none;
  min-height: calc(90px * var(--cfg-scale));
  line-height: 1.6;
}

.cfg-ilabel {
  position: absolute;
  top: calc(-10px * var(--cfg-scale));
  left: calc(14px * var(--cfg-scale));
  font-size: calc(11px * var(--cfg-scale));
  letter-spacing: calc(2px * var(--cfg-scale));
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 500;
  background: #ffffff;
  padding: 0 calc(6px * var(--cfg-scale));
  border-radius: calc(4px * var(--cfg-scale));
}

/* Sidebar Visual Overhaul */
.cfg-sidebar {
  background: hsla(0, 0%, 100%, 0.2);
  border: 1px solid var(--line);
  border-radius: calc(32px * var(--cfg-scale));
  padding: 0;
  /* Remove padding to allow image to bleed */
  position: sticky;
  top: calc(20px * var(--cfg-scale));
  overflow: hidden;
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
}

.cfg-sidebar:hover {
  transform: translateY(-5px);
}

.cfg-sb-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--line);
}

.cfg-sb-caption {
  font-size: calc(12px * var(--cfg-scale));
  color: var(--ink-soft);
  padding: calc(8px * var(--cfg-scale)) calc(24px * var(--cfg-scale));
  background: var(--glass);
  border-top: 1px solid var(--line);
}

.cfg-sb-content {
  padding: calc(24px * var(--cfg-scale));
}

.cfg-sb-title {
  font-family: "Vollkorn", serif;
  font-size: calc(22px * var(--cfg-scale));
  font-weight: 700;
  color: var(--ink);
  margin-bottom: calc(8px * var(--cfg-scale));
  display: flex;
  align-items: center;
  gap: calc(8px * var(--cfg-scale));
}

.cfg-sb-text {
  font-size: calc(16px * var(--cfg-scale));
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: calc(16px * var(--cfg-scale));
}

.cfg-sb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: calc(12px * var(--cfg-scale));
}

.cfg-sb-list li {
  font-size: calc(14px * var(--cfg-scale));
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: calc(10px * var(--cfg-scale));
}

.cfg-sb-list li::before {
  content: "✦";
  color: var(--pink);
  font-size: calc(12px * var(--cfg-scale));
}

/* Dish cards */
.cfg-dish-sec {
  margin-bottom: calc(28px * var(--cfg-scale));
}

.cfg-dish-sec + .cfg-dish-sec {
  border-top: 1.5px solid var(--line);
  padding-top: calc(24px * var(--cfg-scale));
  margin-top: calc(8px * var(--cfg-scale));
}

.cfg-custom-notes {
  margin-top: calc(20px * var(--cfg-scale));
  margin-bottom: calc(8px * var(--cfg-scale));
}

.cfg-dish-sec-title {
  display: flex;
  align-items: center;
  gap: calc(8px * var(--cfg-scale));
  font-family: "Vollkorn", serif;
  font-size: calc(21px * var(--cfg-scale));
  font-weight: 600;
  color: var(--ink);
  margin: 0 auto calc(6px * var(--cfg-scale));
}

.cfg-dish-sec-title::after {
  content: "";
  flex: 1;
  height: calc(1px * var(--cfg-scale));
  background: var(--line);
}

.cfg-dish-sec-sub {
  font-size: calc(14px * var(--cfg-scale));
  color: var(--ink-soft);
  font-style: italic;
  margin: 0 auto calc(12px * var(--cfg-scale));
}

/* ── Prompt icon row (Screen 0) ── */
.cfg-prompt-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: calc(14px * var(--cfg-scale));
  margin-bottom: calc(16px * var(--cfg-scale));
  width: 100%;
  padding: calc(10px * var(--cfg-scale)) 0;
}

.cfg-prompt-icon {
  width: calc(30px * var(--cfg-scale));
  height: calc(30px * var(--cfg-scale));
  color: var(--ink-soft);
  flex-shrink: 0;
  opacity: 0.65;
}

.cfg-prompt-row .cfg-q-title {
  margin-bottom: 0;
  font-size: calc(30px * var(--cfg-scale));
  line-height: 1.15;
  text-align: left;
}

/* ── Hide elements not present in Screen 0 ── */
.cfg-eyebrow,
.cfg-q-sub,
.cfg-choice-desc,
.cfg-choice-check,
.cfg-hint-box {
  display: none !important;
}

/* ── All configurator cards match Screen 0 style ── */
.configurator-container .cfg-choice {
  padding: calc(20px * var(--cfg-scale));
  min-height: calc(60px * var(--cfg-scale));
  justify-content: center;
  font-family: "Vollkorn", serif;
}

.configurator-container .cfg-choice .cfg-choice-icon {
  background: none;
  border-radius: 0;
  width: calc(32px * var(--cfg-scale));
  height: calc(32px * var(--cfg-scale));
  font-size: calc(28px * var(--cfg-scale));
}

.configurator-container .cfg-choice .cfg-choice-text {
  flex: unset;
}

/* ── Screen 0 type-picker cards ── */
.cfg-type-cards {
  width: 100%;
  padding: 0;
}

.cfg-choice-type {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: calc(12px * var(--cfg-scale));
  padding: calc(20px * var(--cfg-scale)) calc(20px * var(--cfg-scale));
  min-height: calc(60px * var(--cfg-scale));
  background: #ffffff;
  border-radius: calc(18px * var(--cfg-scale));
  font-family: "Vollkorn", serif;
  font-size: calc(20px * var(--cfg-scale));
  font-weight: 600;
  color: var(--ink);
}

.cfg-type-icon {
  width: calc(36px * var(--cfg-scale));
  height: calc(36px * var(--cfg-scale));
  color: var(--ink-soft);
  flex-shrink: 0;
  transition: color 0.22s;
}

.cfg-choice-type:hover .cfg-type-icon {
  color: var(--pink);
}

.cfg-choice-type.sel .cfg-type-icon {
  color: #ffffff;
}

.cfg-choice-type:hover {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
  border-color: rgba(252, 96, 36, 0.35);
  background: #ffffff;
}

.cfg-choice-type.sel {
  border-color: var(--pink);
  background: var(--pink);
  box-shadow:
    0 0 0 3px rgba(252, 96, 36, 0.25),
    0 8px 24px rgba(252, 96, 36, 0.25);
  transform: translateY(-2px);
  color: #ffffff;
}

.cfg-dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(8px * var(--cfg-scale));
}

.cfg-dish-card {
  background: #ffffff;
  border: 1.5px solid var(--line);
  border-radius: calc(18px * var(--cfg-scale));
  padding: calc(12px * var(--cfg-scale)) calc(14px * var(--cfg-scale));
  cursor: pointer;
  transition: all 0.22s var(--motion-out);
  position: relative;
  overflow: hidden;
  user-select: none;
}

.cfg-dish-card:hover {
  border-color: var(--pink-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(252, 96, 36, 0.1);
}

.cfg-dish-card.sel {
  background: var(--pink);
  border-color: var(--pink);
  box-shadow: none;
}

.cfg-dish-card.sel .cfg-dn {
  color: #ffffff;
}

.cfg-dish-card.sel .cfg-dd {
  color: rgba(255, 255, 255, 0.75);
}

.cfg-dish-card.sel .cfg-dtag {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.cfg-de {
  font-size: calc(22px * var(--cfg-scale));
  margin-bottom: calc(6px * var(--cfg-scale));
  display: block;
  line-height: 1;
}

.cfg-dn {
  font-weight: 600;
  font-size: calc(18px * var(--cfg-scale));
  color: var(--ink);
  /* This was already here, just for context */
  margin: 0 auto calc(6px * var(--cfg-scale));
}

.cfg-dd {
  font-size: calc(15px * var(--cfg-scale));
  color: var(--ink-soft);
  line-height: 1.4;
  margin: 0 auto calc(12px * var(--cfg-scale));
}

.cfg-dtags {
  display: flex;
  justify-content: center;
  gap: calc(3px * var(--cfg-scale));
  flex-wrap: wrap;
  margin: calc(6px * var(--cfg-scale)) auto 0;
}

.cfg-dtag {
  font-size: calc(9px * var(--cfg-scale));
  padding: calc(2px * var(--cfg-scale)) calc(6px * var(--cfg-scale));
  border-radius: calc(20px * var(--cfg-scale));
  font-weight: 500;
  letter-spacing: calc(0.3px * var(--cfg-scale));
  text-transform: uppercase;
}

.cfg-dv {
  background: hsla(140, 50%, 40%, 0.1);
  color: hsla(140, 50%, 28%, 1);
}

.cfg-dvn {
  background: hsla(140, 50%, 45%, 0.1);
  color: hsla(140, 60%, 25%, 1);
}

.cfg-ds {
  background: rgba(252, 96, 36, 0.08);
  color: var(--pink);
}

.cfg-dm {
  background: rgba(252, 96, 36, 0.06);
  color: var(--pink);
}

.cfg-dh {
  background: rgba(252, 96, 36, 0.1);
  color: var(--pink);
}

/* Spice selector */
.cfg-spice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: calc(8px * var(--cfg-scale));
  margin-bottom: calc(8px * var(--cfg-scale));
}

.cfg-sbtn {
  background: var(--glass);
  border: 1.5px solid var(--line);
  border-radius: calc(12px * var(--cfg-scale));
  padding: calc(14px * var(--cfg-scale)) calc(8px * var(--cfg-scale));
  cursor: pointer;
  font-family: "Ubuntu", sans-serif;
  font-size: calc(14px * var(--cfg-scale));
  color: var(--ink-soft);
  text-align: center;
  transition: all 0.22s var(--motion-out);
  line-height: 1.4;
}

.cfg-si {
  font-size: calc(24px * var(--cfg-scale));
  display: block;
  margin-bottom: calc(6px * var(--cfg-scale));
}

.cfg-sbtn.cfg-sbtn-on {
  border-color: var(--pink);
  background: rgba(252, 96, 36, 0.05);
  color: var(--pink);
  font-weight: 500;
  box-shadow: 0 0 0 3px rgba(252, 96, 36, 0.08);
}

/* Selection counter */
.cfg-sel-counter {
  display: inline-flex;
  align-items: center;
  gap: calc(6px * var(--cfg-scale));
  font-size: calc(13px * var(--cfg-scale));
  color: var(--pink);
  background: rgba(252, 96, 36, 0.07);
  padding: calc(4px * var(--cfg-scale)) calc(12px * var(--cfg-scale));
  border-radius: calc(20px * var(--cfg-scale));
  margin-bottom: calc(12px * var(--cfg-scale));
}

/* Summary */
.cfg-sum-hero {
  background: linear-gradient(135deg, var(--ink) 0%, var(--pink) 100%);
  border-radius: calc(18px * var(--cfg-scale));
  padding: calc(24px * var(--cfg-scale)) calc(28px * var(--cfg-scale));
  color: var(--white);
  margin-bottom: calc(12px * var(--cfg-scale));
  position: relative;
  overflow: hidden;
}

.cfg-sum-hero::before {
  content: "✦";
  position: absolute;
  right: calc(20px * var(--cfg-scale));
  top: 50%;
  transform: translateY(-50%);
  font-size: calc(64px * var(--cfg-scale));
  opacity: 0.08;
  color: white;
}

.cfg-sum-hero h2 {
  font-family: "Vollkorn", serif;
  font-size: calc(26px * var(--cfg-scale));
  font-weight: 400;
  margin-bottom: calc(4px * var(--cfg-scale));
}

.cfg-sum-hero p {
  font-size: calc(14px * var(--cfg-scale));
  opacity: 0.65;
}

.cfg-sum-group {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: calc(12px * var(--cfg-scale));
  overflow: hidden;
  margin-bottom: calc(8px * var(--cfg-scale));
}

.cfg-sgt {
  padding: calc(14px * var(--cfg-scale)) calc(18px * var(--cfg-scale))
    calc(4px * var(--cfg-scale));
  font-size: calc(11px * var(--cfg-scale));
  letter-spacing: calc(2.5px * var(--cfg-scale));
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 500;
}

.cfg-srow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: calc(10px * var(--cfg-scale)) calc(18px * var(--cfg-scale));
  border-bottom: 1px solid var(--line);
  gap: calc(16px * var(--cfg-scale));
}

.cfg-srow:last-child {
  border-bottom: none;
}

.cfg-sk {
  font-size: calc(15px * var(--cfg-scale));
  color: var(--ink-soft);
  font-weight: 300;
  flex-shrink: 0;
}

.cfg-sv {
  font-size: calc(15px * var(--cfg-scale));
  color: var(--ink);
  font-weight: 500;
  text-align: right;
  line-height: 1.5;
}

.cfg-sv.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: flex-end;
}

.cfg-spill {
  font-size: calc(11px * var(--cfg-scale));
  padding: calc(2px * var(--cfg-scale)) calc(9px * var(--cfg-scale));
  border-radius: calc(20px * var(--cfg-scale));
  background: rgba(252, 96, 36, 0.08);
  color: var(--pink);
  font-weight: 400;
}

.cfg-spill.t {
  background: rgba(252, 96, 36, 0.08);
  color: var(--pink);
}

/* Contact fields */
.cfg-cfields {
  display: flex;
  flex-direction: column;
  gap: calc(14px * var(--cfg-scale));
  margin-bottom: calc(24px * var(--cfg-scale));
}

.cfg-frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(14px * var(--cfg-scale));
}

/* Nav buttons */
.cfg-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(16px * var(--cfg-scale));
  margin-top: calc(32px * var(--cfg-scale));
  align-self: center;
}

.cfg-btn {
  display: inline-flex;
  align-items: center;
  gap: calc(8px * var(--cfg-scale));
  padding: calc(14px * var(--cfg-scale)) calc(32px * var(--cfg-scale));
  border-radius: var(--radius-pill);
  border: none;
  font-family: "Ubuntu", sans-serif;
  font-size: calc(16px * var(--cfg-scale));
  font-weight: 500;
  cursor: pointer;
  transition: all 0.22s var(--motion-out);
  letter-spacing: calc(0.3px * var(--cfg-scale));
}

.cfg-btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  border: 1.5px solid var(--line);
}

.cfg-btn-ghost:hover {
  border-color: var(--ink-soft);
  color: var(--ink);
}

.cfg-btn-primary {
  background: var(--cta);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(252, 96, 36, 0.25);
}

.cfg-btn-primary:hover {
  background: var(--cta-hover);
  box-shadow: 0 8px 28px rgba(252, 96, 36, 0.35);
  transform: translateY(-1px);
}

.cfg-btn-submit {
  background: var(--cta);
  color: var(--white);
  font-size: calc(16px * var(--cfg-scale));
  padding: calc(16px * var(--cfg-scale)) calc(36px * var(--cfg-scale));
  box-shadow: 0 4px 20px rgba(252, 96, 36, 0.28);
}

.cfg-btn-submit:hover {
  box-shadow: 0 10px 32px rgba(252, 96, 36, 0.4);
  transform: translateY(-1px);
}

.cfg-btn-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

/* Success screen */
.cfg-success-mark {
  font-size: calc(64px * var(--cfg-scale));
  margin-bottom: calc(18px * var(--cfg-scale));
  display: block;
}

.cfg-orn {
  color: var(--pink-light);
  letter-spacing: calc(12px * var(--cfg-scale));
  font-size: calc(16px * var(--cfg-scale));
  opacity: 0.5;
  margin: calc(10px * var(--cfg-scale)) 0;
  display: block;
}

.cfg-success-title {
  font-family: "Vollkorn", serif;
  font-size: clamp(
    calc(34px * var(--cfg-scale)),
    calc(5.5vw * var(--cfg-scale)),
    calc(60px * var(--cfg-scale))
  );
  font-weight: 400;
  color: var(--ink);
  margin-bottom: calc(16px * var(--cfg-scale));
  line-height: 1.1;
}

.cfg-success-title em {
  font-style: italic;
  color: var(--pink);
}

.cfg-success-sub {
  font-size: calc(18px * var(--cfg-scale));
  color: var(--ink-soft);
  max-width: calc(500px * var(--cfg-scale));
  margin: 0 auto calc(32px * var(--cfg-scale));
  line-height: 1.75;
}

.cfg-order-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--ink), var(--pink));
  color: white;
  padding: calc(20px * var(--cfg-scale)) calc(48px * var(--cfg-scale));
  border-radius: calc(20px * var(--cfg-scale));
  font-family: "Vollkorn", serif;
  font-size: calc(32px * var(--cfg-scale));
  letter-spacing: calc(4px * var(--cfg-scale));
  margin-bottom: calc(32px * var(--cfg-scale));
  box-shadow: 0 10px 32px rgba(252, 96, 36, 0.22);
}

.cfg-order-badge small {
  display: block;
  font-family: "Ubuntu", sans-serif;
  font-size: calc(10px * var(--cfg-scale));
  letter-spacing: calc(3px * var(--cfg-scale));
  opacity: 0.7;
  text-transform: uppercase;
  margin-bottom: calc(4px * var(--cfg-scale));
}

.cfg-success-detail {
  display: inline-flex;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(18px * var(--cfg-scale));
  overflow: hidden;
}

.cfg-sdi {
  padding: calc(18px * var(--cfg-scale)) calc(28px * var(--cfg-scale));
  text-align: center;
  border-right: 1px solid var(--line);
}

.cfg-sdi:last-child {
  border-right: none;
}

.cfg-sdi-num {
  font-family: "Vollkorn", serif;
  font-size: calc(32px * var(--cfg-scale));
  font-weight: 400;
  color: var(--pink);
  display: block;
}

.cfg-sdi-lbl {
  font-size: calc(10px * var(--cfg-scale));
  color: var(--ink-soft);
  letter-spacing: calc(1px * var(--cfg-scale));
  text-transform: uppercase;
}

/* Responsive overrides for new configurator */
@media (max-width: 640px) {
  :root {
    --cfg-scale: 1.04;
  }

  .cfg-choices.cfg-g2 {
    grid-template-columns: 1fr;
  }

  .cfg-dish-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cfg-spice-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cfg-frow {
    grid-template-columns: 1fr;
  }

  .cfg-success-detail {
    flex-direction: column;
  }

  .cfg-sdi {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .cfg-sdi:last-child {
    border-bottom: none;
  }
}

/* ─── Mobile Header Fix ─────────────────────────────────────── */
@media (max-width: 480px) {
  .navbar-logo { height: 62px; }
  .navbar-brand-text { font-size: 24px; }
  .navbar { min-height: 56px; }
  .nav-bar { padding: 4px 16px; }
  .burger { width: 48px; height: 48px; }
  #cfg-screen-4 .cfg-dish-grid,
  #cfg-screen-4b .cfg-dish-grid,
  #cfg-screen-4c .cfg-dish-grid,
  #cfg-screen-4d .cfg-dish-grid,
  #cfg-screen-5 .cfg-dish-grid {
    grid-template-columns: 1fr;
  }

  .cfg-screen-inner {
    padding-left: calc(12px * var(--cfg-scale));
    padding-right: calc(12px * var(--cfg-scale));
  }

  .configurator-container {
    width: calc(100% - 16px) !important;
    border-radius: 16px !important;
  }
}

.mobile-menu__section {
  margin-bottom: 10px;
}

.mobile-menu__section-title {
  font-family: "Vollkorn", serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-align: center;
  display: none;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.mobile-menu__list li {
  width: 100%;
}

.mobile-menu .lang-toggle {
  background: transparent;
  border: 1px solid var(--pink);
  color: var(--pink);
  padding: 10px 20px;
  font-size: 16px;
  width: auto;
  min-width: 100px;
}

/* ─── Screen 2 Height Optimization ─────────────────────────── */

/* Reduce spacing around other elements */
#cfg-screen-2 .cfg-choices {
  margin-bottom: calc(12px * var(--cfg-scale));
}

#cfg-screen-2 .cfg-tiw {
  margin-bottom: calc(12px * var(--cfg-scale));
}