@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --ocean-indigo: #0A3D62;
  --coral-sunset: #E8674F;
  --sea-foam: #7FD8C9;
  --saffron-gold: #F4C24A;
  --milky-paper: #FAF6EE;
  --charcoal: #1A1A2E;
  --ink-soft: rgba(26, 26, 46, 0.7);
  --ink-faint: rgba(26, 26, 46, 0.45);
  --line-soft: rgba(10, 61, 98, 0.12);
  --line-mid: rgba(10, 61, 98, 0.22);
  --shadow-card: 0 12px 24px rgba(10, 61, 98, 0.08);
  --shadow-hover: 0 20px 40px rgba(10, 61, 98, 0.16);
  --radius-card: 24px;
  --radius-pill: 999px;
  --serif: 'Fraunces', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  --sans: 'Inter', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  background-color: var(--milky-paper);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

strong, p, span, a, li {
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin: 0;
}

a {
  color: var(--ocean-indigo);
  text-decoration: none;
  transition: color 0.4s ease-out;
}

a:hover {
  color: var(--coral-sunset);
}

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

.caps-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.italic-accent {
  font-style: italic;
  color: var(--coral-sunset);
}

.site-frame {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-pad {
  padding: 120px 0;
}

.section-pad-sm {
  padding: 80px 0;
}

.bg-milky {
  background-color: var(--milky-paper);
  color: var(--charcoal);
}

.bg-indigo {
  background-color: var(--ocean-indigo);
  color: var(--milky-paper);
}

.bg-indigo h1,
.bg-indigo h2,
.bg-indigo h3,
.bg-indigo h4 {
  color: var(--milky-paper);
}

.floating-card {
  background: #ffffff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 32px;
  transition: transform 0.5s ease-out, box-shadow 0.5s ease-out;
}

.floating-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.floating-card.bg-indigo-card {
  background: var(--ocean-indigo);
  color: var(--milky-paper);
}

.floating-card.bg-indigo-card h2,
.floating-card.bg-indigo-card h3 {
  color: var(--milky-paper);
}

.floating-card.bg-milky-card {
  background: var(--milky-paper);
  color: var(--charcoal);
}

.pill-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  height: 64px;
  width: min(760px, calc(100% - 32px));
  max-width: calc(100% - 32px);
  background: rgba(250, 246, 238, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-soft);
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(10, 61, 98, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  z-index: 100;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--charcoal);
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--ocean-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.brand-mark svg {
  width: 22px;
  height: 22px;
  color: var(--saffron-gold);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-domain {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ocean-indigo);
}

.brand-name {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding: 6px 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--coral-sunset);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease-out;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ocean-indigo);
  position: relative;
  transition: all 0.3s ease;
}

.burger span::before,
.burger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 1.5px;
  background: var(--ocean-indigo);
  transition: all 0.3s ease;
}

.burger span::before {
  top: -7px;
}

.burger span::after {
  top: 7px;
}

.burger[aria-expanded="true"] span {
  background: transparent;
}

.burger[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.burger[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--milky-paper);
  z-index: 90;
  padding: 100px 28px 40px;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu-list a {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--charcoal);
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, color 0.3s ease;
}

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

.mobile-menu.open .mobile-menu-list li:nth-child(1) a { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu-list li:nth-child(2) a { transition-delay: 0.21s; }
.mobile-menu.open .mobile-menu-list li:nth-child(3) a { transition-delay: 0.27s; }
.mobile-menu.open .mobile-menu-list li:nth-child(4) a { transition-delay: 0.33s; }
.mobile-menu.open .mobile-menu-list li:nth-child(5) a { transition-delay: 0.39s; }
.mobile-menu.open .mobile-menu-list li:nth-child(6) a { transition-delay: 0.45s; }

.mobile-menu-list a:hover {
  color: var(--coral-sunset);
}

.hero-stage {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: var(--milky-paper);
  overflow: hidden;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(127, 216, 201, 0.5) 0%, transparent 40%),
    radial-gradient(circle at 82% 18%, rgba(232, 103, 79, 0.3) 0%, transparent 38%),
    radial-gradient(circle at 76% 78%, rgba(10, 61, 98, 0.15) 0%, transparent 42%),
    radial-gradient(circle at 22% 82%, rgba(244, 194, 74, 0.22) 0%, transparent 36%);
  animation: meshDrift 16s ease-in-out infinite alternate;
}

@keyframes meshDrift {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.06) translate(-2%, 2%); }
  100% { transform: scale(1.02) translate(2%, -1%); }
}

.hero-inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr min(380px, calc(100% - 48px));
  gap: 48px;
  align-items: center;
  height: calc(100vh - 180px);
  min-height: 540px;
}

.hero-eyebrow {
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 9vw, 144px);
  line-height: 0.95;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 32px;
  letter-spacing: -0.02em;
}

.hero-title .italic-accent {
  display: block;
}

.hero-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 0 36px;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-plate {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #fff;
}

.hero-plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll-indicator {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 5;
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-indicator .line {
  width: 1px;
  height: 60px;
  background: var(--line-mid);
  position: relative;
  overflow: hidden;
}

.scroll-indicator .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral-sunset);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { top: 0; opacity: 1; }
  100% { top: 100%; opacity: 0.3; }
}

.btn-magnetic {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  min-height: 48px;
  white-space: nowrap;
  transition: background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.btn-primary-mag {
  background: var(--ocean-indigo);
  color: var(--milky-paper);
}

.btn-primary-mag:hover {
  background: var(--coral-sunset);
  color: var(--milky-paper);
  box-shadow: 0 12px 24px rgba(232, 103, 79, 0.32);
}

.btn-outline-mag {
  background: transparent;
  color: var(--ocean-indigo);
  border: 1.5px solid var(--ocean-indigo);
}

.btn-outline-mag:hover {
  background: var(--ocean-indigo);
  color: var(--milky-paper);
}

.btn-coral {
  background: var(--coral-sunset);
  color: var(--milky-paper);
}

.btn-coral:hover {
  background: var(--ocean-indigo);
  color: var(--milky-paper);
}

.btn-coral-pill {
  background: var(--coral-sunset);
  color: var(--milky-paper);
  padding: 18px 40px;
  font-size: 16px;
}

.btn-coral-pill:hover {
  background: var(--ocean-indigo);
  color: var(--milky-paper);
}

.section-header {
  margin-bottom: 64px;
  max-width: 760px;
}

.section-header .caps-eyebrow {
  margin-bottom: 16px;
  display: block;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  font-weight: 600;
}

.section-header p {
  margin-top: 20px;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.chef-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}

.chef-left {
  position: sticky;
  top: 110px;
  text-align: center;
}

.chef-portrait.floating-card {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-card);
  background: #fff;
  padding: 0;
}

.chef-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chef-signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
}

.chef-right p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--charcoal);
  margin: 0 0 24px;
}

.fact-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.fact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  width: 100%;
  max-width: 320px;
}

.fact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(127, 216, 201, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ocean-indigo);
}

.fact-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--ocean-indigo);
  line-height: 1;
}

.fact-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}

.accordion-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.acc-panel {
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.acc-panel.open {
  z-index: 5;
  box-shadow: var(--shadow-hover);
}

.acc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 40px;
  min-height: 140px;
  gap: 24px;
}

.acc-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  color: var(--charcoal);
  margin: 0;
  transition: color 0.4s ease;
}

.acc-panel:hover .acc-title {
  color: var(--coral-sunset);
}

.acc-price {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--coral-sunset);
  margin-top: 8px;
  display: block;
}

.acc-chevron {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 61, 98, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean-indigo);
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s ease;
}

.acc-panel.open .acc-chevron {
  transform: rotate(180deg);
  background: var(--coral-sunset);
  color: #fff;
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.acc-panel.open .acc-body {
  max-height: 520px;
}

.acc-body-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 0 40px 40px;
  align-items: center;
}

.acc-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0 0 20px;
}

.acc-text .btn-magnetic {
  margin-top: 8px;
}

.acc-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.acc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 0 40px;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 130px;
  left: 5%;
  right: 5%;
  height: 2px;
  background-image: linear-gradient(to right, var(--ocean-indigo) 50%, transparent 50%);
  background-size: 14px 2px;
  background-repeat: repeat-x;
  z-index: 0;
}

.tl-node {
  position: relative;
  z-index: 2;
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tl-bubble {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean-indigo);
  transition: all 0.5s ease;
  margin-bottom: 24px;
}

.tl-bubble svg {
  width: 44px;
  height: 44px;
}

.tl-node.active .tl-bubble,
.tl-node:hover .tl-bubble {
  background: var(--ocean-indigo);
  color: #fff;
  transform: scale(1.05);
}

.tl-step {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.tl-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.tl-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 180px;
}

.fx-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fx-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  transition: all 0.4s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.fx-card:hover {
  flex-grow: 1.4;
  background: var(--ocean-indigo);
  color: var(--milky-paper);
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

.fx-card:hover h3 {
  color: var(--milky-paper);
}

.fx-card:hover .fx-icon {
  background: rgba(244, 194, 74, 0.2);
  color: var(--saffron-gold);
}

.fx-card:hover .fx-desc {
  color: rgba(250, 246, 238, 0.85);
}

.fx-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(127, 216, 201, 0.25);
  color: var(--ocean-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.fx-icon svg {
  width: 28px;
  height: 28px;
}

.fx-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
  transition: color 0.4s ease;
}

.fx-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  transition: color 0.4s ease;
}

.coverflow-wrap {
  position: relative;
  padding: 40px 0 80px;
  perspective: 1400px;
}

.coverflow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 560px;
  position: relative;
  transform-style: preserve-3d;
}

.cf-card {
  position: absolute;
  width: 420px;
  max-width: calc(100vw - 80px);
  height: 560px;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: all 0.7s cubic-bezier(0.65, 0, 0.35, 1);
  cursor: pointer;
}

.cf-card img {
  width: 100%;
  height: 60%;
  object-fit: cover;
}

.cf-card-body {
  padding: 24px 28px;
}

.cf-card-body h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cf-card-body p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
}

.cf-card[data-pos="0"] {
  z-index: 5;
  transform: translateX(0) scale(1);
}

.cf-card[data-pos="-1"] {
  z-index: 3;
  transform: translateX(-320px) scale(0.8) rotateY(25deg);
  opacity: 0.85;
}

.cf-card[data-pos="1"] {
  z-index: 3;
  transform: translateX(320px) scale(0.8) rotateY(-25deg);
  opacity: 0.85;
}

.cf-card[data-pos="-2"] {
  z-index: 2;
  transform: translateX(-540px) scale(0.65) rotateY(35deg);
  opacity: 0.5;
}

.cf-card[data-pos="2"] {
  z-index: 2;
  transform: translateX(540px) scale(0.65) rotateY(-35deg);
  opacity: 0.5;
}

.cf-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.cf-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean-indigo);
  cursor: pointer;
  transition: all 0.4s ease;
}

.cf-arrow:hover {
  background: var(--coral-sunset);
  color: #fff;
  border-color: var(--coral-sunset);
}

.team-reveal {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  min-height: 560px;
}

.team-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.team-list li {
  border-top: 1px solid var(--line-soft);
  padding: 32px 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  transition: color 0.4s ease, padding-left 0.4s ease;
  display: flex;
  align-items: center;
  gap: 20px;
}

.team-list li:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.team-list li:hover,
.team-list li.active {
  color: var(--coral-sunset);
  padding-left: 12px;
}

.team-role {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

.team-photo-stage {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-card);
  min-height: 480px;
}

.team-photo {
  position: absolute;
  inset: 0;
  opacity: 0;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.5s ease-out, opacity 0.4s ease;
}

.team-photo.active {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 20px;
  border-radius: 16px;
}

.team-photo-caption strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ocean-indigo);
}

.team-photo-caption span {
  font-size: 13px;
  color: var(--ink-soft);
}

.stack-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 0;
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
}

.faq-card.open {
  box-shadow: var(--shadow-hover);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  min-height: 80px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  gap: 24px;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(10, 61, 98, 0.08);
  color: var(--ocean-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.faq-card.open .faq-toggle {
  background: var(--coral-sunset);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease-out;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.faq-card.open .faq-a {
  max-height: 240px;
}

.faq-a-inner {
  padding: 0 28px 24px;
}

.masonry-grid {
  columns: 3;
  column-gap: 20px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: block;
}

.masonry-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.masonry-item.masonry-photo {
  padding: 0;
  border: none;
  overflow: hidden;
}

.masonry-item.masonry-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.masonry-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: var(--charcoal);
  margin: 0 0 20px;
}

.masonry-item:hover .masonry-quote {
  color: var(--coral-sunset);
}

.masonry-stars {
  color: var(--coral-sunset);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.masonry-author {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.masonry-author strong {
  display: block;
  color: var(--ocean-indigo);
  font-weight: 600;
  margin-bottom: 2px;
}

.bento-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  min-height: 600px;
}

.bento-tile {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.bento-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.bento-main {
  grid-row: span 2;
  background: var(--ocean-indigo);
  color: var(--milky-paper);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-main h2 {
  color: var(--milky-paper);
  font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1.05;
  margin: 0;
}

.bento-main .italic-accent {
  color: var(--saffron-gold);
}

.bento-contact-row {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bento-contact-row a {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 500;
  color: var(--milky-paper);
  display: flex;
  align-items: center;
  gap: 12px;
}

.bento-contact-row a:hover {
  color: var(--saffron-gold);
}

.bento-photo {
  padding: 0;
  overflow: hidden;
}

.bento-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-cta-tile {
  background: var(--coral-sunset);
  color: var(--milky-paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.bento-cta-tile h3 {
  color: var(--milky-paper);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.2;
}

.bento-cta-tile p {
  color: rgba(250, 246, 238, 0.85);
  font-size: 14px;
  margin: 0 0 20px;
}

.bento-cta-tile .btn-magnetic {
  background: var(--milky-paper);
  color: var(--coral-sunset);
}

.bento-cta-tile .btn-magnetic:hover {
  background: var(--ocean-indigo);
  color: var(--milky-paper);
}

.bento-wide {
  grid-column: span 2;
  background: var(--saffron-gold);
  color: var(--charcoal);
  padding: 28px 32px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bento-wide-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--ocean-indigo);
  color: var(--milky-paper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bento-wide-text {
  flex: 1;
}

.bento-wide-text strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--charcoal);
}

.bento-wide-text span {
  font-size: 13px;
  color: rgba(26, 26, 46, 0.7);
}

.bento-info-tile h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ocean-indigo);
  margin: 0 0 12px;
}

.bento-info-tile p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}

.bento-info-tile a {
  color: var(--ocean-indigo);
  font-weight: 500;
  word-break: break-all;
}

.bento-info-tile a:hover {
  color: var(--coral-sunset);
}

.site-footer {
  background: var(--ocean-indigo);
  color: var(--milky-paper);
  padding: 56px 0 28px;
  margin-top: 120px;
}

.site-footer .site-frame {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand .brand-domain {
  color: var(--milky-paper);
  font-size: 22px;
}

.footer-brand .brand-name {
  color: rgba(250, 246, 238, 0.7);
}

.footer-tagline {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(250, 246, 238, 0.7);
  max-width: 280px;
}

.footer-col h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron-gold);
  margin: 0 0 18px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(250, 246, 238, 0.85);
}

.footer-col a:hover {
  color: var(--saffron-gold);
}

.footer-address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(250, 246, 238, 0.85);
}

.footer-meta {
  border-top: 1px solid rgba(250, 246, 238, 0.18);
  margin-top: 40px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(250, 246, 238, 0.6);
}

.footer-meta .domain-line {
  font-family: var(--serif);
  font-size: 13px;
  color: rgba(250, 246, 238, 0.85);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  max-width: calc(100% - 48px);
  background: var(--milky-paper);
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(10, 61, 98, 0.18);
  padding: 24px 28px;
  z-index: 200;
  border: 1px solid var(--line-soft);
  display: block;
}

.cookie-banner.hidden-banner {
  display: none;
}

.cookie-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-sunset);
  font-weight: 600;
  margin-bottom: 8px;
}

.cookie-banner h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ocean-indigo);
  margin: 0 0 12px;
}

.cookie-banner p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 20px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .btn-magnetic {
  padding: 10px 20px;
  font-size: 13px;
  min-height: 40px;
}

.cookie-link {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--ocean-indigo);
  text-decoration: underline;
}

.cookie-link:hover {
  color: var(--coral-sunset);
}

.compact-hero {
  padding-top: 160px;
  padding-bottom: 80px;
  background-color: var(--milky-paper);
  position: relative;
  overflow: hidden;
}

.compact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(127, 216, 201, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.compact-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 24px;
  max-width: 880px;
}

.compact-hero p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0;
}

.form-shell {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 48px;
  max-width: 640px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.form-field label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--charcoal);
  background: var(--milky-paper);
  border: 1px solid var(--line-mid);
  border-radius: 14px;
  padding: 14px 18px;
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--ocean-indigo);
  box-shadow: 0 0 0 4px rgba(10, 61, 98, 0.1);
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 32px 0;
}

.form-success.show {
  display: block;
}

.form-success svg {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  color: var(--sea-foam);
}

.form-success h3 {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ocean-indigo);
  margin: 0 0 12px;
}

.form-success p {
  color: var(--ink-soft);
  margin: 0;
}

.legal-prose {
  max-width: 880px;
  margin: 0 auto;
}

.legal-prose h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 48px 0 16px;
  color: var(--ocean-indigo);
}

.legal-prose h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 32px 0 12px;
  color: var(--charcoal);
}

.legal-prose p,
.legal-prose li {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0 0 16px;
}

.legal-prose ul {
  padding-left: 24px;
}

.thanks-stage {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 0 120px;
  text-align: center;
}

.thanks-card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 64px 48px;
  max-width: 640px;
  margin: 0 auto;
}

.thanks-card svg {
  width: 96px;
  height: 96px;
  color: var(--coral-sunset);
  margin: 0 auto 32px;
}

.thanks-card h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 56px);
  margin: 0 0 20px;
  line-height: 1.1;
}

.thanks-card p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0 0 32px;
}

.thanks-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.blog-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-sunset);
  font-weight: 600;
  margin-bottom: 16px;
}

.blog-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.25;
}

.blog-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 24px;
  flex: 1;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-faint);
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}

.blog-meta a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ocean-indigo);
  white-space: nowrap;
}

.blog-meta a:hover {
  color: var(--coral-sunset);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.price-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.4s ease;
  position: relative;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.price-card.featured {
  background: var(--ocean-indigo);
  color: var(--milky-paper);
}

.price-card.featured h3,
.price-card.featured .price-amount {
  color: var(--milky-paper);
}

.price-card.featured .price-desc,
.price-card.featured .price-features li {
  color: rgba(250, 246, 238, 0.85);
}

.price-card.featured .price-features li::before {
  color: var(--saffron-gold);
}

.price-amount {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--ocean-indigo);
  line-height: 1;
}

.price-amount span {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 400;
  margin-left: 6px;
}

.price-card.featured .price-amount span {
  color: rgba(250, 246, 238, 0.7);
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-features li {
  font-size: 14px;
  color: var(--ink-soft);
  padding-left: 24px;
  position: relative;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sea-foam);
  font-weight: 700;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1100px) {
  .chef-split,
  .team-reveal {
    grid-template-columns: 1fr;
  }

  .chef-left {
    position: static;
  }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .bento-main {
    grid-row: auto;
    grid-column: span 2;
  }

  .bento-wide {
    grid-column: span 2;
  }

  .coverflow {
    height: 480px;
  }

  .cf-card {
    width: 320px;
    height: 460px;
  }

  .cf-card[data-pos="-1"] {
    transform: translateX(-240px) scale(0.8) rotateY(25deg);
  }

  .cf-card[data-pos="1"] {
    transform: translateX(240px) scale(0.8) rotateY(-25deg);
  }

  .cf-card[data-pos="-2"],
  .cf-card[data-pos="2"] {
    opacity: 0;
  }

  .timeline-track {
    flex-direction: column;
    gap: 32px;
    padding-left: 32px;
    align-items: flex-start;
  }

  .timeline-track::before {
    top: 30px;
    bottom: 30px;
    left: 50px;
    right: auto;
    width: 2px;
    height: auto;
    background-image: linear-gradient(to bottom, var(--ocean-indigo) 50%, transparent 50%);
    background-size: 2px 14px;
  }

  .tl-node {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
    width: 100%;
  }

  .tl-bubble {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .tl-bubble svg {
    width: 32px;
    height: 32px;
  }

  .tl-text {
    flex: 1;
  }

  .tl-desc {
    max-width: none;
  }

  .acc-body-inner {
    grid-template-columns: 1fr;
    padding: 0 32px 32px;
    gap: 24px;
  }
}

@media (max-width: 820px) {
  .site-frame {
    padding: 0 20px;
    max-width: 100%;
  }

  .pill-nav {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    padding: 0 16px;
  }

  .section-pad {
    padding: 80px 0;
  }

  .section-pad-sm {
    padding: 56px 0;
  }

  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }

  .pill-nav {
    height: 56px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    height: auto;
    padding-bottom: 40px;
    gap: 32px;
  }

  .hero-stage {
    padding-top: 100px;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(40px, 11vw, 64px);
  }

  .hero-plate {
    aspect-ratio: 16 / 11;
  }

  .scroll-indicator {
    display: none;
  }

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

  .fx-card:hover {
    flex-grow: 1;
  }

  .masonry-grid {
    columns: 1;
  }

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

  .bento-main,
  .bento-wide {
    grid-column: span 1;
  }

  .bento-main {
    padding: 32px;
  }

  .bento-wide {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .site-footer .site-frame {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .acc-head {
    padding: 24px 28px;
    min-height: 100px;
  }

  .acc-title {
    font-size: 20px;
  }

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

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

  .form-shell {
    padding: 32px 24px;
  }

  .coverflow {
    height: 420px;
  }

  .cf-card {
    width: 86vw;
    max-width: 360px;
    height: 440px;
  }

  .cf-card[data-pos="-1"],
  .cf-card[data-pos="1"],
  .cf-card[data-pos="-2"],
  .cf-card[data-pos="2"] {
    opacity: 0;
    transform: translateX(0) scale(1);
    pointer-events: none;
  }

  .cf-card[data-pos="0"] {
    transform: translateX(0) scale(1);
  }

  .team-photo-stage {
    min-height: 320px;
  }

  .compact-hero {
    padding-top: 120px;
    padding-bottom: 56px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 20px;
  }
}

@media (max-width: 900px) {
  .site-footer .site-frame {
    grid-template-columns: 1fr 1fr;
  }

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

  .section-pad {
    padding: 80px 0;
  }

  .section-pad-sm {
    padding: 56px 0;
  }

  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }

  .pill-nav {
    height: 56px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    height: auto;
    padding-bottom: 40px;
    gap: 32px;
  }

  .hero-stage {
    padding-top: 100px;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(40px, 11vw, 64px);
  }

  .hero-plate {
    aspect-ratio: 16 / 11;
  }

  .scroll-indicator {
    display: none;
  }

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

  .fx-card:hover {
    flex-grow: 1;
  }

  .masonry-grid {
    columns: 1;
  }

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

  .bento-main,
  .bento-wide {
    grid-column: span 1;
  }

  .bento-main {
    padding: 32px;
  }

  .bento-wide {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .site-footer .site-frame {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .acc-head {
    padding: 24px 28px;
    min-height: 100px;
  }

  .acc-title {
    font-size: 20px;
  }

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

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

  .form-shell {
    padding: 32px 24px;
  }

  .coverflow {
    height: 420px;
  }

  .cf-card {
    width: 86vw;
    max-width: 360px;
    height: 440px;
  }

  .cf-card[data-pos="-1"],
  .cf-card[data-pos="1"],
  .cf-card[data-pos="-2"],
  .cf-card[data-pos="2"] {
    opacity: 0;
    transform: translateX(0) scale(1);
    pointer-events: none;
  }

  .cf-card[data-pos="0"] {
    transform: translateX(0) scale(1);
  }

  .team-photo-stage {
    min-height: 320px;
  }

  .compact-hero {
    padding-top: 120px;
    padding-bottom: 56px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 44px;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

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