:root {
  --peach-cream: #FEF3E8;
  --peach-glass: rgba(255, 255, 255, 0.75);
  --peach-glass-strong: rgba(255, 255, 255, 0.9);
  --peach-glass-soft: rgba(255, 255, 255, 0.55);
  --brown-deep: #78350F;
  --brown-warm: #A89070;
  --peach-accent: #F97316;
  --peach-accent-soft: rgba(249, 115, 22, 0.15);
  --amber-deep: #B45309;
  --peach-line: #FED7AA;
  --gold-soft: #FDE68A;
  --peach-pastel: #FFEDD5;
  --shadow-soft: 0 4px 24px rgba(120, 53, 15, 0.08);
  --shadow-medium: 0 8px 40px rgba(120, 53, 15, 0.12);
  --shadow-strong: 0 16px 60px rgba(120, 53, 15, 0.18);
  --radius-card: 24px;
  --radius-pill: 48px;
  --radius-button: 24px;
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

strong, p, b, span, li, h1, h2, h3, h4, h5, h6 {
  color: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 17px;
  line-height: 1.9;
  color: var(--brown-deep);
  background-color: var(--peach-cream);
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 20%, var(--peach-pastel) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 60%, var(--gold-soft) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 50% 100%, var(--peach-line) 0%, transparent 60%);
  background-attachment: fixed;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .serif-heading {
  font-family: 'Cormorant Garamond', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--brown-deep);
  line-height: 1.2;
}

h1 { font-size: 44px; }
h2 { font-size: 32px; margin-bottom: 1.2rem; }
h3 { font-size: 24px; margin-bottom: 0.8rem; }

p {
  margin-bottom: 1.2rem;
  color: var(--brown-deep);
}

a {
  color: var(--peach-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--amber-deep);
}

.tech-text, .caption-mono {
  font-family: 'Source Sans 3', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  letter-spacing: 0.02em;
}

.eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 1rem;
  display: inline-block;
  font-weight: 600;
}

.ornament-line {
  width: 56px;
  height: 2px;
  background: var(--peach-accent);
  margin: 18px 0 28px;
  display: block;
  border-radius: 2px;
}

section {
  position: relative;
  padding: 60px 0;
  z-index: 1;
}

.veil-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--peach-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--peach-line) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.glass-card {
  background: var(--peach-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--peach-line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 32px;
  color: var(--brown-deep);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease, z-index 0s linear 0.2s;
  position: relative;
  z-index: 1;
}

.glass-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-medium);
  z-index: 10;
}

.btn-peach {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--peach-accent);
  color: #FFFFFF;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.05em;
  padding: 16px 36px;
  border-radius: var(--radius-button);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  min-height: 52px;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease, background 0.3s ease;
  text-decoration: none;
}

.btn-peach:hover {
  background: var(--amber-deep);
  color: #FFFFFF;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(249, 115, 22, 0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #FFFFFF;
  color: var(--brown-deep);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.05em;
  padding: 16px 36px;
  border-radius: var(--radius-button);
  border: 2px solid var(--peach-line);
  cursor: pointer;
  white-space: nowrap;
  min-height: 52px;
  transition: transform 0.3s var(--ease-spring), background 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
}

.btn-ghost:hover {
  background: var(--peach-pastel);
  color: var(--brown-deep);
  border-color: var(--peach-accent);
  transform: translateY(-2px);
}

.btn-stripped {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--amber-deep);
  border-bottom: 2px solid var(--peach-accent);
  padding-bottom: 4px;
  transition: gap 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.btn-stripped:hover {
  gap: 16px;
  color: var(--peach-accent);
}

.floating-pill {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(254, 243, 232, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--peach-line);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 24px rgba(120, 53, 15, 0.08);
  padding: 8px 8px 8px 22px;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 92vw;
  width: auto;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--peach-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
}

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

.brand-domain {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-warm);
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--brown-deep);
  white-space: nowrap;
}

.brand-subline {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 9px;
  color: var(--brown-warm);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-pill a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--brown-deep);
  padding: 10px 16px;
  border-radius: 24px;
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.nav-pill a:hover, .nav-pill a.is-current {
  background: var(--peach-accent-soft);
  color: var(--amber-deep);
}

.cta-pill {
  background: var(--peach-accent);
  color: #FFFFFF;
  padding: 12px 22px;
  border-radius: 24px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s var(--ease-spring);
}

.cta-pill:hover {
  background: var(--amber-deep);
  color: #FFFFFF;
  transform: scale(1.04);
}

.burger-handle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--peach-accent);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.burger-handle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  color: #FFFFFF;
}

.burger-handle span::before,
.burger-handle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.burger-handle span::before { top: -6px; }
.burger-handle span::after { top: 6px; }

.fullscreen-drawer {
  position: fixed;
  inset: 0;
  background: rgba(254, 243, 232, 0.97);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 100px 32px 60px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease-spring);
  overflow-y: auto;
}

.fullscreen-drawer.is-open {
  transform: translateY(0);
}

.fullscreen-drawer .drawer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  position: absolute;
  top: 24px;
  left: 24px;
}

.fullscreen-drawer .drawer-brand .brand-domain {
  font-size: 9px;
}

.fullscreen-drawer .drawer-brand .brand-name {
  font-size: 14px;
}

.fullscreen-drawer .drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--peach-accent);
  color: #FFFFFF;
  border: none;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.drawer-nav li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s var(--ease-spring);
  border-bottom: 1px solid var(--peach-line);
}

.fullscreen-drawer.is-open .drawer-nav li {
  opacity: 1;
  transform: translateY(0);
}

.fullscreen-drawer.is-open .drawer-nav li:nth-child(1) { transition-delay: 0.1s; }
.fullscreen-drawer.is-open .drawer-nav li:nth-child(2) { transition-delay: 0.16s; }
.fullscreen-drawer.is-open .drawer-nav li:nth-child(3) { transition-delay: 0.22s; }
.fullscreen-drawer.is-open .drawer-nav li:nth-child(4) { transition-delay: 0.28s; }
.fullscreen-drawer.is-open .drawer-nav li:nth-child(5) { transition-delay: 0.34s; }
.fullscreen-drawer.is-open .drawer-nav li:nth-child(6) { transition-delay: 0.4s; }
.fullscreen-drawer.is-open .drawer-nav li:nth-child(7) { transition-delay: 0.46s; }
.fullscreen-drawer.is-open .drawer-nav li:nth-child(8) { transition-delay: 0.52s; }

.drawer-nav a {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--brown-deep);
  padding: 16px 0;
  text-decoration: none;
}

.drawer-nav a:hover {
  color: var(--peach-accent);
}

.drawer-cta {
  margin-top: 32px;
}

main {
  padding-top: 100px;
}

.hero-mesh {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-mesh::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--peach-pastel) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: float-a 18s ease-in-out infinite;
  z-index: 0;
}

.hero-mesh::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  animation: float-b 22s ease-in-out infinite;
  z-index: 0;
}

@keyframes float-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-80px, 60px) scale(1.15); }
}

@keyframes float-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -40px) scale(1.1); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--peach-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--peach-line) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: var(--peach-glass-strong);
  border: 1px solid var(--peach-line);
  border-radius: 100px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-deep);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--peach-accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.hero-title {
  font-size: 64px;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--brown-deep);
}

.hero-title .accent-line {
  display: block;
  font-style: italic;
  color: var(--peach-accent);
  font-weight: 500;
}

.hero-sub {
  font-size: 17px;
  color: var(--brown-warm);
  margin-bottom: 36px;
  max-width: 520px;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--peach-line);
}

.trust-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--peach-accent);
  line-height: 1;
}

.trust-stat .lbl {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-warm);
  margin-top: 6px;
}

.hero-visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-svg-stage {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  background: var(--peach-glass-strong);
  backdrop-filter: blur(20px);
  border: 1px solid var(--peach-line);
  border-radius: 32px;
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  animation: gentle-float 8s ease-in-out infinite;
}

@keyframes gentle-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1.5deg); }
}

.hero-floor-svg {
  width: 80%;
  height: 80%;
}

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

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

.section-eyebrow {
  text-align: center;
  margin-bottom: 16px;
}

.section-ornament {
  margin: 18px auto 24px;
}

.section-heading {
  text-align: center;
  margin-bottom: 16px;
  font-size: 44px;
  line-height: 1.1;
}

.section-sub {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  color: var(--brown-warm);
  font-size: 17px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 20px;
}

.bento-cell {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--peach-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--peach-line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--brown-deep);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease, z-index 0s linear 0.2s;
  z-index: 1;
  cursor: pointer;
}

.bento-cell:hover {
  transform: scale(1.03);
  z-index: 10;
  box-shadow: var(--shadow-medium);
  border-color: var(--peach-accent);
}

.bento-cell.large { grid-column: span 2; grid-row: span 2; }
.bento-cell.wide { grid-column: span 2; grid-row: span 1; }
.bento-cell.tall { grid-column: span 1; grid-row: span 2; }
.bento-cell.small { grid-column: span 1; grid-row: span 1; }

.bento-cell.bento-photo {
  background-size: cover;
  background-position: center;
}

.bento-cell.bento-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(254, 243, 232, 0.1) 0%, rgba(120, 53, 15, 0.7) 100%);
  z-index: 1;
}

.bento-cell.bento-photo .bento-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
}

.bento-cell.bento-photo .bento-content .bento-eyebrow,
.bento-cell.bento-photo .bento-content .bento-title,
.bento-cell.bento-photo .bento-content .bento-desc {
  color: #FFFFFF;
}

.bento-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 8px;
}

.bento-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--brown-deep);
  line-height: 1.2;
}

.bento-cell.large .bento-title { font-size: 32px; }
.bento-cell.wide .bento-title { font-size: 24px; }

.bento-desc {
  font-size: 14px;
  color: var(--brown-warm);
  line-height: 1.6;
  margin-bottom: 0;
}

.bento-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: inline-block;
}

.bento-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--peach-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.split-sticky {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.split-photo {
  position: sticky;
  top: 100px;
  height: 600px;
  border-radius: 32px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.split-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(120, 53, 15, 0.4) 100%);
}

.split-content h2 {
  font-size: 44px;
  margin-bottom: 20px;
}

.split-content p {
  font-size: 17px;
  margin-bottom: 20px;
}

.fact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--peach-line);
}

.fact-cell .fact-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--peach-accent);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.fact-cell .fact-lbl {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  color: var(--brown-warm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
}

.node-graph {
  position: relative;
  padding: 40px 0;
}

.node-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.node-row::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--peach-accent) 0 12px, transparent 12px 24px);
  z-index: 0;
  opacity: 0.5;
}

.process-node {
  position: relative;
  z-index: 2;
  text-align: center;
  background: var(--peach-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--peach-line);
  border-radius: 24px;
  padding: 30px 20px;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease, z-index 0s linear 0.2s;
  color: var(--brown-deep);
}

.process-node:hover {
  transform: translateY(-8px) scale(1.04);
  z-index: 10;
  box-shadow: var(--shadow-medium);
  border-color: var(--peach-accent);
}

.node-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--peach-cream);
  border: 2px solid var(--peach-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--peach-accent);
  position: relative;
  z-index: 3;
}

.node-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--brown-deep);
}

.node-desc {
  font-size: 14px;
  color: var(--brown-warm);
  line-height: 1.6;
  margin-bottom: 0;
}

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

.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--peach-glass);
  border: 1px solid var(--peach-line);
  color: var(--brown-deep);
  text-decoration: none;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease, z-index 0s linear 0.2s;
  z-index: 1;
  box-shadow: var(--shadow-soft);
}

.masonry-item:hover {
  transform: scale(1.02);
  z-index: 10;
  box-shadow: var(--shadow-medium);
}

.masonry-photo {
  width: 100%;
  display: block;
  object-fit: cover;
}

.masonry-cap {
  padding: 16px 18px;
  background: var(--peach-glass-strong);
  backdrop-filter: blur(12px);
}

.masonry-loc {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 4px;
}

.masonry-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--brown-deep);
  margin-bottom: 0;
}

.flex-grow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  height: 380px;
}

.flex-cell {
  background: var(--peach-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--peach-line);
  border-radius: 24px;
  padding: 32px 24px;
  color: var(--brown-deep);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: flex 0.5s var(--ease-spring), transform 0.4s var(--ease-spring), box-shadow 0.4s ease, z-index 0s linear 0.2s;
  flex: 1;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.flex-grow-grid:hover .flex-cell:not(:hover) {
  flex: 0.7;
}

.flex-cell:hover {
  flex: 2.2;
  transform: translateY(-4px);
  z-index: 10;
  box-shadow: var(--shadow-medium);
  border-color: var(--peach-accent);
  background: var(--peach-glass-strong);
}

.flex-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 600;
  color: var(--peach-accent);
  line-height: 1;
  margin-bottom: 14px;
}

.flex-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--brown-deep);
  margin-bottom: 12px;
}

.flex-desc {
  font-size: 14px;
  color: var(--brown-warm);
  line-height: 1.7;
  margin-bottom: 0;
}

.hover-reveal {
  border-top: 1px solid var(--peach-line);
}

.hover-reveal-row {
  position: relative;
  border-bottom: 1px solid var(--peach-line);
  padding: 28px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  transition: padding 0.4s ease;
}

.hover-reveal-row:hover {
  padding-left: 12px;
  background: var(--peach-glass-soft);
}

.reveal-num {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  color: var(--brown-warm);
  letter-spacing: 0.2em;
  width: 40px;
  flex-shrink: 0;
}

.reveal-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--brown-deep);
  flex: 1;
  line-height: 1.1;
}

.reveal-role {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  color: var(--amber-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: 220px;
  text-align: right;
  flex-shrink: 0;
}

.reveal-bubble {
  position: absolute;
  top: 50%;
  right: 24%;
  transform: translateY(-50%) scale(0.8);
  opacity: 0;
  pointer-events: none;
  background: var(--peach-glass-strong);
  backdrop-filter: blur(20px);
  border: 1px solid var(--peach-line);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-medium);
  transition: opacity 0.3s ease, transform 0.4s var(--ease-spring);
  z-index: 5;
  width: 360px;
  color: var(--brown-deep);
}

.hover-reveal-row:hover .reveal-bubble {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.bubble-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--peach-pastel);
  border: 2px solid var(--peach-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--peach-accent);
  flex-shrink: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.bubble-info .b-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--brown-deep);
  line-height: 1.2;
}

.bubble-info .b-role {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  color: var(--amber-deep);
  margin-top: 2px;
}

.bubble-info .b-years {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  color: var(--brown-warm);
  margin-top: 4px;
}

.coverflow-stage {
  position: relative;
  perspective: 1400px;
  padding: 60px 0;
}

.coverflow-track {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 420px;
}

.coverflow-card {
  position: absolute;
  width: 460px;
  max-width: 90vw;
  background: var(--peach-glass-strong);
  backdrop-filter: blur(20px);
  border: 1px solid var(--peach-line);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
  color: var(--brown-deep);
  transition: transform 0.6s var(--ease-spring), opacity 0.5s ease, z-index 0s linear 0.3s;
  z-index: 1;
}

.coverflow-card.active {
  transform: translateX(0) scale(1) rotateY(0);
  z-index: 10;
  box-shadow: var(--shadow-medium);
  opacity: 1;
}

.coverflow-card.prev {
  transform: translateX(-65%) scale(0.82) rotateY(18deg);
  z-index: 2;
  opacity: 0.55;
}

.coverflow-card.next {
  transform: translateX(65%) scale(0.82) rotateY(-18deg);
  z-index: 2;
  opacity: 0.55;
}

.coverflow-card.hidden-prev {
  transform: translateX(-110%) scale(0.7) rotateY(25deg);
  opacity: 0;
  z-index: 0;
}

.coverflow-card.hidden-next {
  transform: translateX(110%) scale(0.7) rotateY(-25deg);
  opacity: 0;
  z-index: 0;
}

.stars {
  color: var(--peach-accent);
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.cover-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
  color: var(--brown-deep);
  margin-bottom: 24px;
}

.cover-quote::before { content: '「'; color: var(--peach-accent); margin-right: 4px; }
.cover-quote::after { content: '」'; color: var(--peach-accent); margin-left: 4px; }

.cover-author {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  color: var(--amber-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.cover-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.cover-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--peach-line);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 0;
}

.cover-dot.active {
  background: var(--peach-accent);
  transform: scale(1.2);
}

.cover-arrows {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  padding: 0 12px;
}

.cover-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--peach-glass-strong);
  border: 1px solid var(--peach-line);
  color: var(--brown-deep);
  font-size: 18px;
  cursor: pointer;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s var(--ease-spring);
}

.cover-arrow:hover {
  background: var(--peach-accent);
  color: #FFFFFF;
  transform: scale(1.1);
}

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

.accordion-item {
  background: var(--peach-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--peach-line);
  border-radius: 16px;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.accordion-item.is-open {
  background: var(--peach-glass-strong);
  border-color: var(--peach-accent);
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--brown-deep);
  gap: 16px;
}

.accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--peach-pastel);
  color: var(--peach-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s var(--ease-spring);
}

.accordion-item.is-open .accordion-icon {
  background: var(--peach-accent);
  color: #FFFFFF;
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.4s ease;
  padding: 0 28px;
}

.accordion-item.is-open .accordion-content {
  max-height: 400px;
  padding: 0 28px 24px;
}

.accordion-content p {
  margin-bottom: 0;
  color: var(--brown-warm);
  font-size: 15px;
  line-height: 1.8;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--peach-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--peach-line);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease, z-index 0s linear 0.2s;
  position: relative;
  z-index: 1;
  color: var(--brown-deep);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.02);
  z-index: 10;
  box-shadow: var(--shadow-medium);
  border-color: var(--peach-accent);
}

.service-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.service-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--brown-deep);
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-desc {
  color: var(--brown-warm);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}

.service-price {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  color: var(--amber-deep);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.service-price .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--peach-accent);
}

.service-price .unit {
  font-size: 12px;
  color: var(--brown-warm);
  letter-spacing: 0.1em;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--peach-accent);
  border-bottom: 2px solid var(--peach-accent);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: gap 0.3s ease, color 0.3s ease;
}

.service-link:hover {
  gap: 14px;
  color: var(--amber-deep);
}

.split-contact {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  background: var(--peach-glass-strong);
  backdrop-filter: blur(20px);
  border: 1px solid var(--peach-line);
  border-radius: 28px;
  padding: 44px;
  box-shadow: var(--shadow-soft);
  color: var(--brown-deep);
}

.field-line {
  display: block;
  margin-bottom: 28px;
}

.field-line label {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 8px;
  font-weight: 600;
}

.field-line input,
.field-line textarea,
.field-line select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--peach-line);
  padding: 12px 0;
  font-family: 'Lora', serif;
  font-size: 16px;
  color: var(--brown-deep);
  transition: border-color 0.3s ease, background 0.3s ease;
  outline: none;
  border-radius: 0;
}

.field-line input::placeholder,
.field-line textarea::placeholder {
  color: var(--brown-warm);
  opacity: 0.6;
}

.field-line input:focus,
.field-line textarea:focus,
.field-line select:focus {
  border-bottom-color: var(--peach-accent);
  background: var(--peach-pastel);
}

.field-line textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-tile {
  background: var(--peach-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--peach-line);
  border-radius: 20px;
  padding: 24px 28px;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease, z-index 0s linear 0.2s;
  color: var(--brown-deep);
  position: relative;
  z-index: 1;
}

.info-tile:hover {
  transform: translateY(-4px);
  z-index: 10;
  box-shadow: var(--shadow-medium);
  border-color: var(--peach-accent);
}

.info-tile .info-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 8px;
}

.info-tile .info-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--brown-deep);
  line-height: 1.3;
  word-break: break-word;
}

.info-tile .info-value a {
  color: var(--brown-deep);
  text-decoration: none;
}

.info-tile .info-value a:hover {
  color: var(--peach-accent);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 420px;
  background: var(--peach-glass-strong);
  backdrop-filter: blur(20px);
  border: 1px solid var(--peach-line);
  border-radius: 20px;
  padding: 24px 28px;
  z-index: 3000;
  box-shadow: var(--shadow-medium);
  color: var(--brown-deep);
}

.cookie-banner h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--brown-deep);
  margin-bottom: 8px;
}

.cookie-banner p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--brown-warm);
  margin-bottom: 14px;
}

.cookie-banner .cookie-links {
  font-size: 12px;
  margin-bottom: 16px;
}

.cookie-banner .cookie-links a {
  color: var(--peach-accent);
  text-decoration: underline;
  margin-right: 12px;
}

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

.cookie-btn {
  flex: 1;
  min-width: 100px;
  padding: 10px 16px;
  border-radius: 20px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease-spring);
  text-align: center;
}

.cookie-btn.primary {
  background: var(--peach-accent);
  color: #FFFFFF;
}

.cookie-btn.primary:hover {
  background: var(--amber-deep);
  transform: scale(1.03);
}

.cookie-btn.ghost {
  background: var(--peach-cream);
  color: var(--brown-deep);
  border: 1px solid var(--peach-line);
}

.cookie-btn.ghost:hover {
  background: var(--peach-pastel);
}

.site-footer {
  background: var(--peach-accent);
  color: #FFFFFF;
  border-radius: 32px 32px 0 0;
  padding: 80px 0 32px;
  margin-top: 80px;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .brand-mark {
  background: #FFFFFF;
  color: var(--peach-accent);
}

.footer-brand .brand-domain,
.footer-brand .brand-name,
.footer-brand .brand-subline {
  color: #FFFFFF;
}

.footer-brand .brand-name { color: #FFFFFF; }
.footer-brand .brand-domain { color: rgba(255, 255, 255, 0.7); }
.footer-brand .brand-subline { color: rgba(255, 255, 255, 0.8); }

.footer-brand p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-top: 16px;
  margin-bottom: 0;
}

.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-col a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 8px;
}

.footer-bottom a:hover {
  color: #FFFFFF;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s var(--ease-spring);
}

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

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s var(--ease-spring);
}

.stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.is-visible > *:nth-child(2) { transition-delay: 0.13s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: 0.21s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: 0.29s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: 0.37s; }
.stagger.is-visible > *:nth-child(6) { transition-delay: 0.45s; }
.stagger.is-visible > *:nth-child(7) { transition-delay: 0.53s; }
.stagger.is-visible > *:nth-child(8) { transition-delay: 0.61s; }

.stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

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

.thanks-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--peach-glass-strong);
  backdrop-filter: blur(20px);
  border: 1px solid var(--peach-line);
  border-radius: 32px;
  padding: 60px 48px;
  box-shadow: var(--shadow-medium);
  color: var(--brown-deep);
}

.thanks-mark {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--peach-accent);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 44px;
}

.thanks-card h1 {
  font-size: 44px;
  margin-bottom: 18px;
  line-height: 1.1;
}

.thanks-card p {
  color: var(--brown-warm);
  font-size: 17px;
  margin-bottom: 32px;
}

.legal-page {
  padding: 60px 0 100px;
  background: var(--peach-cream);
  min-height: 70vh;
}

.legal-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--peach-glass-strong);
  backdrop-filter: blur(20px);
  border: 1px solid var(--peach-line);
  border-radius: 28px;
  padding: 56px 56px;
  color: var(--brown-deep);
  box-shadow: var(--shadow-soft);
}

.legal-card h1 {
  font-size: 44px;
  margin-bottom: 12px;
  line-height: 1.1;
}

.legal-card h2 {
  font-size: 26px;
  margin-top: 36px;
  margin-bottom: 14px;
}

.legal-card p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--brown-deep);
  margin-bottom: 16px;
}

.legal-card ul {
  padding-left: 24px;
  margin-bottom: 20px;
}

.legal-card li {
  margin-bottom: 8px;
  line-height: 1.7;
  color: var(--brown-deep);
}

.compact-hero {
  padding: 100px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.compact-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--peach-pastel) 0%, transparent 70%);
  top: -200px;
  left: -100px;
  z-index: 0;
}

.compact-hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
  bottom: -150px;
  right: -100px;
  z-index: 0;
}

.compact-hero h1 {
  position: relative;
  z-index: 2;
  font-size: 56px;
  line-height: 1.05;
  margin-bottom: 18px;
}

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

.compact-hero p {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  color: var(--brown-warm);
  font-size: 18px;
}

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

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  background: var(--peach-glass);
  border: 1px solid var(--peach-line);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease, z-index 0s linear 0.2s;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-soft);
}

.gallery-item:hover {
  transform: scale(1.02);
  z-index: 10;
  box-shadow: var(--shadow-medium);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.gallery-item .gallery-cap {
  padding: 16px 20px;
  background: var(--peach-glass-strong);
}

.gallery-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  margin-bottom: 4px;
}

.gallery-item .gallery-meta {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  color: var(--amber-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.faq-side {
  background: var(--peach-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--peach-line);
  border-radius: 24px;
  padding: 32px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--peach-line);
}

.timeline-step:last-child {
  border-bottom: none;
}

.timeline-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--peach-pastel);
  color: var(--peach-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
}

.timeline-body h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.timeline-body p {
  color: var(--brown-warm);
  font-size: 15px;
  margin-bottom: 0;
}

.process-cta {
  text-align: center;
  margin-top: 60px;
  padding: 50px 32px;
  background: var(--peach-glass-strong);
  backdrop-filter: blur(20px);
  border: 1px solid var(--peach-line);
  border-radius: 24px;
  color: var(--brown-deep);
}

.service-detail {
  padding: 60px 0 100px;
}

.service-hero-card {
  background: var(--peach-glass-strong);
  backdrop-filter: blur(20px);
  border: 1px solid var(--peach-line);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  margin-bottom: 60px;
  box-shadow: var(--shadow-soft);
  color: var(--brown-deep);
}

.service-hero-photo {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.service-hero-body {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-hero-body h1 {
  font-size: 44px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.service-hero-body p {
  color: var(--brown-warm);
  font-size: 16px;
  margin-bottom: 24px;
}

.service-hero-body .price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: var(--peach-pastel);
  padding: 10px 18px;
  border-radius: 100px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  color: var(--amber-deep);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  align-self: flex-start;
}

.service-hero-body .price-tag .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--peach-accent);
}

.info-table {
  background: var(--peach-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--peach-line);
  border-radius: 24px;
  padding: 32px;
  margin-bottom: 40px;
}

.info-table h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.info-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--peach-line);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
}

.info-row:last-child {
  border-bottom: none;
}

.info-row .label {
  color: var(--amber-deep);
  letter-spacing: 0.05em;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  align-self: center;
}

.info-row .value {
  color: var(--brown-deep);
}

@media (max-width: 1024px) {
  .nav-pill { display: none; }
  .floating-pill { padding: 6px 6px 6px 16px; gap: 12px; }
  .cta-pill { display: none; }
  .burger-handle { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-title { font-size: 44px; }
  .split-sticky { grid-template-columns: 1fr; gap: 32px; }
  .split-photo { position: relative; top: 0; height: 360px; }
  .split-content h2 { font-size: 36px; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-cell.large { grid-column: span 2; grid-row: span 2; }
  .bento-cell.wide { grid-column: span 2; }
  .bento-cell.tall { grid-row: span 1; }
  .masonry { column-count: 2; }
  .node-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .node-row::before { display: none; }
  .flex-grow-grid { grid-template-columns: 1fr; height: auto; }
  .flex-grow-grid:hover .flex-cell:not(:hover) { flex: 1; }
  .flex-cell { min-height: 200px; }
  .split-contact { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .reveal-bubble { display: none; }
  .reveal-role { width: auto; text-align: left; }
  .hover-reveal-row { flex-wrap: wrap; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .service-hero-card { grid-template-columns: 1fr; }
  .service-hero-photo { min-height: 280px; }
  .related-row { grid-template-columns: 1fr; }
  .compact-hero h1 { font-size: 40px; }
  .section-heading { font-size: 36px; }
  .thanks-card h1 { font-size: 36px; }
  .legal-card { padding: 40px 28px; }
  .legal-card h1 { font-size: 32px; }
  .coverflow-card.prev, .coverflow-card.hidden-prev { transform: translateX(-95%) scale(0.75) rotateY(20deg); }
  .coverflow-card.next, .coverflow-card.hidden-next { transform: translateX(95%) scale(0.75) rotateY(-20deg); }
  .info-row { grid-template-columns: 1fr; gap: 4px; }
}

@media (max-width: 640px) {
  main { padding-top: 80px; }
  body { font-size: 16px; }
  h1 { font-size: 32px !important; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  section { padding: 50px 0; }
  .section-pad, .section-pad-tall { padding: 60px 0; }
  .hero-mesh { min-height: auto; padding: 100px 0 60px; }
  .hero-title { font-size: 36px; }
  .hero-svg-stage { max-width: 100%; }
  .hero-trust { gap: 16px; }
  .trust-stat .num { font-size: 28px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-cell.large, .bento-cell.wide { grid-column: span 1; }
  .bento-cell.large .bento-title { font-size: 24px; }
  .masonry { column-count: 1; }
  .node-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .fact-row { grid-template-columns: 1fr; gap: 16px; }
  .cookie-banner { left: 12px; right: 12px; max-width: none; bottom: 12px; padding: 20px; }
  .compact-hero h1 { font-size: 32px; }
  .compact-hero p { font-size: 16px; }
  .legal-card { padding: 32px 22px; }
  .legal-card h1 { font-size: 28px; }
  .legal-card h2 { font-size: 22px; }
  .thanks-card { padding: 40px 28px; }
  .thanks-card h1 { font-size: 28px; }
  .thanks-mark { width: 64px; height: 64px; font-size: 32px; }
  .contact-card { padding: 28px 22px; }
  .section-heading { font-size: 28px; }
  .section-sub { font-size: 15px; }
  .btn-peach, .btn-ghost { padding: 14px 24px; font-size: 14px; width: 100%; }
  .hero-cta-row { flex-direction: column; width: 100%; }
  .hero-cta-row .btn-peach, .hero-cta-row .btn-ghost { width: 100%; }
  .flex-num { font-size: 40px; }
  .flex-title { font-size: 20px; }
  .reveal-name { font-size: 24px; }
  .service-body { padding: 22px; }
  .service-title { font-size: 22px; }
  .floating-pill { top: 10px; padding: 6px 6px 6px 14px; gap: 10px; }
  .brand-mark { width: 34px; height: 34px; font-size: 18px; }
  .brand-name { font-size: 14px; }
  .brand-domain { font-size: 9px; }
  .burger-handle { width: 40px; height: 40px; }
  .fullscreen-drawer { padding: 80px 24px 40px; }
  .drawer-nav a { font-size: 22px; padding: 12px 0; }
  .info-tile { padding: 18px 20px; }
  .info-tile .info-value { font-size: 18px; }
  .accordion-trigger { font-size: 16px; padding: 20px; }
  .accordion-content { padding: 0 20px; }
  .accordion-item.is-open .accordion-content { padding: 0 20px 20px; }
  .coverflow-card { padding: 28px 22px; }
  .cover-quote { font-size: 17px; }
  .coverflow-card.prev, .coverflow-card.hidden-prev,
  .coverflow-card.next, .coverflow-card.hidden-next { display: none; }
}

@media (min-width: 1025px) {
  main { padding-top: 110px; }
  .hero-title { font-size: 64px; }
  .section-heading { font-size: 48px; }
}
