@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700&family=Noto+Serif+JP:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --c-pistachio: #6B8E5A;
  --c-pistachio-soft: #C8D9C0;
  --c-lavender: #D0C8DF;
  --c-cream: #F2E8D8;
  --c-peat: #2A2720;
  --c-peat-deep: #201E18;
  --c-plaster: #FEFEF9;
  --c-drywall: #A0988A;
  --c-taupe: #B0A89C;
  --f-serif: 'Playfair Display', 'Noto Serif JP', serif;
  --f-jp: 'Noto Serif JP', serif;
  --f-mono: 'JetBrains Mono', monospace;
  --f-sans: 'Inter', sans-serif;
  --r-tl: 32px;
  --r-tr: 18px;
  --r-bl: 40px;
  --r-br: 14px;
  --shadow-soft: 0px 10px 24px rgba(80,70,55,0.04), 0px 2px 6px rgba(80,70,55,0.02);
  --shadow-hover: 0px 16px 32px rgba(107,142,90,0.14);
  --border-taupe: rgba(176,168,156,0.35);
}

strong, p {
  color: inherit;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--f-sans);
  color: var(--c-peat);
  background: #FBF8F1;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  background: radial-gradient(ellipse at 12% 8%, rgba(200,217,192,0.45) 0%, transparent 38%),
              radial-gradient(ellipse at 88% 48%, rgba(208,200,223,0.38) 0%, transparent 40%),
              radial-gradient(ellipse at 22% 92%, rgba(242,232,216,0.55) 0%, transparent 45%),
              #FBF8F1;
  background-attachment: fixed;
  min-height: 100vh;
}

a {
  color: var(--c-pistachio);
  text-decoration: none;
  transition: all 0.24s ease;
}

a:hover {
  color: var(--c-peat);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-serif);
  color: var(--c-peat);
  font-weight: 800;
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5.25rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4.5rem);
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
}

h4 {
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 600;
}

p {
  margin: 0 0 1rem 0;
  font-size: 1rem;
  color: var(--c-peat);
}

.pure-g {
  letter-spacing: normal;
}

.drift-shell {
  position: relative;
  overflow: hidden;
}

.drift-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  backdrop-filter: blur(80px);
  -webkit-backdrop-filter: blur(80px);
  background: rgba(255,255,255,0.42);
  z-index: 0;
}

.drift-content {
  position: relative;
  z-index: 1;
}

.drift-cap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.sidenav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 88px;
  background: rgba(254,254,249,0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--c-pistachio);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidenav-bar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--c-pistachio) 30%, var(--c-pistachio) 70%, transparent 100%);
  opacity: 0.35;
}

.brand-cluster {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--c-peat);
  line-height: 1;
}

.brand-cluster .brand-mark {
  width: 44px;
  height: 46px;
  display: inline-block;
}

.brand-cluster .brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-cluster .brand-domain {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--c-peat);
  margin-top: 4px;
}

.brand-cluster .brand-tag {
  font-family: var(--f-jp);
  font-weight: 500;
  font-size: 11px;
  color: var(--c-pistachio);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.nav-ribbon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 12px;
  z-index: 101;
}

.nav-ribbon.left {
  left: 32px;
}

.nav-ribbon.right {
  right: 32px;
}

.nav-ribbon a {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--c-peat);
  padding: 10px 18px;
  border: 1px solid rgba(176,168,156,0.4);
  border-radius: 6px 18px 8px 22px;
  background: rgba(254,254,249,0.4);
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.24s ease;
}

.nav-ribbon a:hover {
  border-color: var(--c-pistachio);
  color: var(--c-pistachio);
  background: rgba(254,254,249,0.85);
  text-decoration: none;
}

.nav-ribbon a.is-active {
  background: var(--c-pistachio);
  color: #fff;
  border-color: var(--c-pistachio);
}

.burger-cluster {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: rgba(254,254,249,0.86);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1.5px solid var(--c-pistachio);
  z-index: 110;
  align-items: center;
  justify-content: center;
}

.burger-placard {
  display: flex;
  align-items: center;
  gap: 10px;
}

.burger-placard .brand-mark {
  width: 26px;
  height: 28px;
}

.burger-placard .brand-domain {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--c-peat);
}

.burger-btn {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 1px solid var(--c-pistachio);
  border-radius: 8px 16px 10px 18px;
  background: rgba(254,254,249,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
  top: 6px;
  z-index: 112;
}

.burger-btn span {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--c-pistachio);
}

.burger-btn.left {
  left: 12px;
}

.burger-btn.right {
  right: 12px;
}

.drift-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, rgba(254,254,249,0.96), rgba(200,217,192,0.92));
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  z-index: 205;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateY(-100%);
  transition: transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 80px 24px;
}

.drift-overlay.is-open {
  transform: translateY(0);
}

.drift-overlay a {
  font-family: var(--f-serif);
  font-weight: 800;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  color: var(--c-peat);
  text-decoration: none;
  position: relative;
  padding: 8px 0;
}

.drift-overlay a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--c-pistachio);
  transition: width 0.3s ease;
}

.drift-overlay a:hover::after {
  width: 100%;
}

.drift-overlay .overlay-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--c-pistachio);
  border-radius: 50%;
  background: transparent;
  color: var(--c-pistachio);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drift-stage {
  padding-top: 88px;
  position: relative;
  z-index: 1;
}

.hero-canvas {
  position: relative;
  min-height: calc(100vh - 88px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
  overflow: hidden;
}

.hero-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(254,254,249,0.65) 0%, rgba(200,217,192,0.32) 50%, rgba(208,200,223,0.25) 100%);
  pointer-events: none;
}

.hero-canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(42,39,32,0.18) 100%);
  pointer-events: none;
}

.hero-asym {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  z-index: 2;
}

.hero-card {
  background: var(--c-plaster);
  border: 1.5px solid var(--border-taupe);
  padding: 24px 28px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.hero-card-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  border-radius: var(--r-tl) var(--r-tr) var(--r-br) var(--r-bl);
  align-self: start;
  justify-self: start;
  max-width: 320px;
  z-index: 3;
}

.hero-card-2 {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  border-radius: var(--r-bl) var(--r-tl) var(--r-tr) var(--r-br);
  padding: 44px 48px;
  z-index: 4;
  align-self: center;
  justify-self: end;
  max-width: 580px;
  margin-top: 40px;
}

.hero-card-3 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  border-radius: var(--r-tr) var(--r-bl) var(--r-tl) var(--r-br);
  margin-top: -50px;
  margin-left: 80px;
  max-width: 360px;
  align-self: start;
  z-index: 5;
  background: rgba(254,254,249,0.95);
}

.hero-card-4 {
  position: absolute;
  right: 32px;
  bottom: 40px;
  width: 200px;
  height: 200px;
  border-radius: 24px 36px 28px 42px;
  background: var(--c-plaster);
  border: 1.5px solid var(--border-taupe);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
  box-shadow: var(--shadow-soft);
}

.hero-card-1 .micro-tag {
  font-family: var(--f-mono);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--c-pistachio);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero-card-1 .micro-icon {
  width: 36px;
  height: 36px;
  color: var(--c-pistachio);
}

.hero-card-2 h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  margin-bottom: 0;
  position: relative;
}

.hero-card-2 h1::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 56px;
  height: 3px;
  background: var(--c-pistachio);
}

.hero-card-3 .jp-sub {
  font-family: var(--f-jp);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-pistachio);
  margin-bottom: 16px;
  line-height: 1.5;
}

.drift-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  background: var(--c-pistachio);
  color: #fff;
  border: 2px solid var(--c-peat);
  border-radius: 12px 28px 14px 32px;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.24s ease;
  min-height: 48px;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(107,142,90,0.18);
}

.drift-cta:hover {
  background: var(--c-peat);
  color: #fff;
  border-color: var(--c-pistachio);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  text-decoration: none;
}

.drift-cta.solid-white {
  background: #fff;
  color: var(--c-peat);
  border-color: var(--c-pistachio);
}

.drift-cta.solid-white:hover {
  background: var(--c-pistachio);
  color: #fff;
}

.drift-cta.outline {
  background: rgba(254,254,249,0.6);
  color: var(--c-peat);
  border: 1.5px solid var(--c-pistachio);
}

.drift-cta.outline:hover {
  background: var(--c-pistachio);
  color: #fff;
}

.drift-cta.invert {
  background: var(--c-pistachio);
  color: var(--c-peat-deep);
  border-color: var(--c-peat);
}

.drift-cta.invert:hover {
  background: #fff;
  color: var(--c-pistachio);
  border-color: var(--c-pistachio);
}

.drift-section {
  padding: 100px 0;
  position: relative;
}

.drift-section.compact {
  padding: 60px 0;
}

.drift-section .eyebrow {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-pistachio);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.drift-section .eyebrow::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-pistachio);
}

.drift-section h2 {
  margin-bottom: 36px;
  position: relative;
}

.section-rail {
  padding-left: 28px;
  border-left: 4px solid var(--c-pistachio);
  margin-bottom: 36px;
}

.section-rail h2 {
  margin-bottom: 0;
}

.service-flow {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.service-flow::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 32px;
  bottom: 32px;
  width: 1.5px;
  background: linear-gradient(180deg, transparent 0%, var(--c-pistachio) 50%, transparent 100%);
  opacity: 0.4;
}

.service-tab {
  background: var(--c-plaster);
  border: 1.5px solid var(--border-taupe);
  border-radius: var(--r-tl) var(--r-tr) var(--r-bl) var(--r-br);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}

.service-tab:hover,
.service-tab.is-open {
  border-color: var(--c-pistachio);
  border-width: 2px;
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  z-index: 10;
}

.service-tab + .service-tab {
  margin-top: -10px;
}

.service-tab-head {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 18px 28px;
  cursor: pointer;
  background: transparent;
  border: 0;
  width: 100%;
  text-align: left;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--c-peat);
  text-transform: uppercase;
}

.service-tab-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1.5px solid var(--c-pistachio);
  border-radius: 12px 18px 10px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-pistachio);
  background: rgba(200,217,192,0.18);
}

.service-tab-icon svg {
  width: 22px;
  height: 22px;
}

.service-tab-meta {
  margin-left: auto;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  color: var(--c-drywall);
  letter-spacing: 0.06em;
  display: flex;
  gap: 18px;
  align-items: center;
}

.service-tab-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 0 28px;
}

.service-tab.is-open .service-tab-body {
  max-height: 720px;
  padding: 0 28px 28px;
}

.service-tab-body .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.service-tab-body img {
  border-radius: var(--r-tr) var(--r-bl) var(--r-tl) var(--r-br);
  border: 1.5px solid var(--border-taupe);
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-tab-body .specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.service-tab-body .specs .spec {
  background: rgba(200,217,192,0.18);
  border: 1px dashed var(--c-pistachio);
  border-radius: 6px 14px 8px 18px;
  padding: 10px 14px;
}

.service-tab-body .specs .spec span {
  display: block;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--c-drywall);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.service-tab-body .specs .spec strong {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--c-peat);
}

.service-tab-body .meta-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--c-pistachio);
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1.5px solid var(--c-pistachio);
  padding-bottom: 2px;
}

.horizontal-pano {
  position: relative;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 32px 32px 48px;
  scrollbar-width: thin;
  background: linear-gradient(135deg, rgba(200,217,192,0.22), rgba(208,200,223,0.22));
  border-top: 1.5px solid var(--c-pistachio);
  border-bottom: 1.5px solid var(--c-pistachio);
}

.horizontal-pano {
  overflow-x: auto;
  overflow-y: hidden;
}

.horizontal-pano::-webkit-scrollbar {
  height: 6px;
}

.horizontal-pano::-webkit-scrollbar-thumb {
  background: var(--c-pistachio);
  border-radius: 3px;
}

.pano-card {
  flex: 0 0 70%;
  scroll-snap-align: center;
  background: var(--c-plaster);
  border: 1.5px solid var(--border-taupe);
  border-radius: var(--r-tl) var(--r-br) var(--r-tr) var(--r-bl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.pano-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.pano-card .pano-meta {
  padding: 22px 28px;
  background: var(--c-plaster);
}

.pano-card .pano-meta .label {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-pistachio);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pano-card .pano-meta h3 {
  font-size: 24px;
  margin-bottom: 6px;
}

.pano-card .pano-meta p {
  font-size: 14px;
  color: var(--c-drywall);
  margin: 0;
}

.split-bio {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 0;
  align-items: start;
  position: relative;
}

.split-bio .sticky-photo {
  position: sticky;
  top: 100px;
  z-index: 5;
  border-radius: var(--r-bl) var(--r-tl) var(--r-br) var(--r-tr);
  overflow: hidden;
  border: 1.5px solid var(--c-pistachio);
  box-shadow: var(--shadow-soft);
  margin-right: -22px;
  background: var(--c-plaster);
}

.split-bio .sticky-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  filter: grayscale(0.4) contrast(1.05);
}

.split-bio .story {
  padding: 0 0 0 56px;
}

.split-bio .story p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 1.1rem;
}

.split-bio .story .dropcap::first-letter {
  font-family: var(--f-serif);
  font-size: 56px;
  float: left;
  line-height: 0.9;
  padding: 4px 12px 0 0;
  color: var(--c-pistachio);
  font-weight: 800;
}

.timeline-rail {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}

.timeline-row {
  background: var(--c-plaster);
  border: 1.5px solid var(--border-taupe);
  border-radius: var(--r-tr) var(--r-bl) var(--r-tl) var(--r-br);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-soft);
  transition: all 0.24s ease;
}

.timeline-row:hover {
  border-color: var(--c-pistachio);
  transform: translateX(6px);
}

.timeline-row .year {
  font-family: var(--f-serif);
  font-weight: 800;
  font-size: 36px;
  color: var(--c-pistachio);
  min-width: 80px;
  line-height: 1;
}

.timeline-row .event {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 13px;
  color: var(--c-peat);
  letter-spacing: 0.04em;
}

.process-stacker {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.process-card {
  background: var(--c-plaster);
  border: 1.5px solid var(--border-taupe);
  border-radius: 12px 24px 14px 28px;
  padding: 24px 28px;
  width: 100%;
  max-width: 460px;
  box-shadow: var(--shadow-soft);
  transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  margin-bottom: -50px;
  cursor: pointer;
}

.process-card:nth-child(even) {
  align-self: flex-end;
  border-radius: 24px 12px 28px 14px;
}

.process-card:hover,
.process-card.is-open {
  width: 100%;
  max-width: 100%;
  z-index: 5;
  border-color: var(--c-pistachio);
  border-width: 2px;
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.process-card .ph {
  display: flex;
  align-items: center;
  gap: 18px;
}

.process-card .ph .num {
  font-family: var(--f-serif);
  font-weight: 800;
  font-size: 36px;
  color: var(--c-pistachio);
  line-height: 1;
}

.process-card .ph .label {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--c-peat);
  text-transform: uppercase;
}

.process-card .pb {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 0;
}

.process-card.is-open .pb {
  max-height: 360px;
  margin-top: 18px;
}

.process-card .pb img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px 16px 10px 20px;
  border: 1px solid var(--border-taupe);
}

.process-card .pb p {
  font-size: 14px;
  margin: 0;
  color: var(--c-peat);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-tile {
  background: var(--c-plaster);
  border: 1.5px solid var(--border-taupe);
  border-radius: var(--r-tl) var(--r-tr) var(--r-bl) var(--r-br);
  padding: 28px 24px;
  flex: 1 1 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(107,142,90,0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-tile:hover::before,
.why-tile.is-open::before {
  opacity: 1;
}

.why-tile:hover,
.why-tile.is-open {
  flex: 2.4 1 0;
  border-color: var(--c-pistachio);
  border-width: 2px;
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.why-tile .icon {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--c-pistachio);
  border-radius: 12px 18px 10px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-pistachio);
  background: rgba(200,217,192,0.22);
}

.why-tile h4 {
  font-family: var(--f-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-peat);
  margin: 0;
}

.why-tile p {
  font-size: 14px;
  color: var(--c-drywall);
  margin: 0;
  line-height: 1.55;
}

.marquee-band {
  background: linear-gradient(135deg, rgba(254,254,249,0.5), rgba(200,217,192,0.32));
  padding: 70px 0 60px;
  overflow: hidden;
  border-top: 1.5px solid var(--c-pistachio);
  border-bottom: 1.5px solid var(--c-pistachio);
}

.marquee-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: drift-scroll 32s linear infinite;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-track span {
  font-family: var(--f-serif);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--c-peat);
  display: inline-flex;
  align-items: center;
  gap: 80px;
}

.marquee-track span.pulse {
  color: var(--c-pistachio);
}

.marquee-track span::after {
  content: "✦";
  color: var(--c-pistachio);
  font-size: 0.7em;
}

@keyframes drift-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

.team-row {
  background: var(--c-plaster);
  border: 1.5px solid var(--border-taupe);
  border-radius: var(--r-tr) var(--r-tl) var(--r-br) var(--r-bl);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  position: relative;
  cursor: pointer;
  transition: all 0.24s ease;
}

.team-row {
  overflow-x: hidden;
}

.team-row:hover {
  border-color: var(--c-pistachio);
  transform: translateX(4px);
}

.team-row .name {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--c-peat);
}

.team-row .role {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--c-drywall);
  text-transform: uppercase;
  margin-left: auto;
}

.team-row .avatar {
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--c-pistachio);
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(0.6);
}

.team-row .team-pop {
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  background: var(--c-plaster);
  border: 1.5px solid var(--c-pistachio);
  border-radius: var(--r-tl) var(--r-br) var(--r-tr) var(--r-bl);
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 50;
  box-shadow: var(--shadow-hover);
}

.team-row:hover .team-pop {
  right: 12px;
  opacity: 1;
  pointer-events: auto;
}

.team-row .team-pop img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(0.5);
}

.team-row .team-pop .bio {
  font-size: 12px;
  color: var(--c-drywall);
  line-height: 1.5;
}

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

.faq-card {
  background: var(--c-plaster);
  border: 1.5px solid var(--border-taupe);
  border-radius: var(--r-tl) var(--r-tr) var(--r-bl) var(--r-br);
  margin-bottom: -8px;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
  overflow: hidden;
}

.faq-card:hover,
.faq-card.is-open {
  z-index: 10;
  border-color: var(--c-pistachio);
  border-width: 2px;
  margin-bottom: 8px;
  box-shadow: var(--shadow-hover);
}

.faq-card.is-open {
  border-left: 4px solid var(--c-pistachio);
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 26px;
  cursor: pointer;
  background: transparent;
  border: 0;
  width: 100%;
  text-align: left;
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--c-peat);
}

.faq-q::before {
  content: "[+]";
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 18px;
  color: var(--c-pistachio);
  letter-spacing: 0.04em;
  transition: transform 0.24s ease;
}

.faq-card.is-open .faq-q::before {
  content: "[−]";
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 26px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-peat);
}

.faq-card.is-open .faq-a {
  max-height: 360px;
  padding: 0 26px 22px;
}

.coverflow {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  position: relative;
}

.coverflow-stage {
  position: relative;
  width: 100%;
  max-width: 880px;
  height: 360px;
  perspective: 1200px;
}

.coverflow-card {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotateY(0deg);
  width: 60%;
  height: 100%;
  background: var(--c-plaster);
  border: 1.5px solid var(--border-taupe);
  border-radius: var(--r-tl) var(--r-br) var(--r-tr) var(--r-bl);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  pointer-events: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
}

.coverflow-card.is-center {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) rotateY(0deg) scale(1);
  border-color: var(--c-pistachio);
  border-width: 2px;
  box-shadow: var(--shadow-hover);
  z-index: 5;
}

.coverflow-card.is-left {
  opacity: 0.4;
  transform: translateX(-110%) rotateY(34deg) scale(0.85);
  z-index: 2;
}

.coverflow-card.is-right {
  opacity: 0.4;
  transform: translateX(10%) rotateY(-34deg) scale(0.85);
  z-index: 2;
}

.coverflow-card.is-far-left {
  opacity: 0;
  transform: translateX(-160%) rotateY(40deg) scale(0.7);
}

.coverflow-card.is-far-right {
  opacity: 0;
  transform: translateX(60%) rotateY(-40deg) scale(0.7);
}

.coverflow-card img {
  width: 100%;
  height: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 8px 16px 10px 20px;
  border: 1px solid var(--border-taupe);
}

.coverflow-card .review-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-peat);
  font-style: italic;
}

.coverflow-card .review-text::before {
  content: "“";
  font-family: var(--f-serif);
  font-size: 48px;
  color: var(--c-pistachio);
  line-height: 0;
  vertical-align: -12px;
  margin-right: 4px;
}

.coverflow-card .review-meta {
  margin-top: 16px;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--c-drywall);
  text-transform: uppercase;
}

.coverflow-controls {
  display: flex;
  gap: 18px;
  justify-content: center;
}

.coverflow-controls button {
  width: 56px;
  height: 56px;
  border-radius: 50% 32% 50% 32%;
  border: 1.5px solid var(--c-pistachio);
  background: var(--c-plaster);
  color: var(--c-pistachio);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.24s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coverflow-controls button:hover {
  background: var(--c-pistachio);
  color: #fff;
}

.contact-band {
  background: var(--c-peat-deep);
  color: #fff;
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
}

.contact-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(107,142,90,0.18), transparent 60%),
              radial-gradient(ellipse at 80% 70%, rgba(208,200,223,0.12), transparent 50%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.contact-info h2 {
  color: #fff;
  border-left: 5px solid var(--c-pistachio);
  padding-left: 22px;
  margin-bottom: 28px;
}

.contact-info .phone {
  font-family: var(--f-serif);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  color: #fff;
  margin-bottom: 16px;
  display: block;
  text-decoration: none;
}

.contact-info .email {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 18px;
  color: var(--c-pistachio);
  margin-bottom: 16px;
  display: block;
  text-decoration: none;
}

.contact-info .address {
  font-size: 16px;
  color: var(--c-drywall);
  line-height: 1.6;
  margin-bottom: 28px;
}

.contact-form {
  background: var(--c-plaster);
  border-radius: var(--r-tl) var(--r-tr) var(--r-bl) var(--r-br);
  padding: 36px 32px;
  color: var(--c-peat);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.contact-form h3 {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 6px;
  color: var(--c-peat);
}

.contact-form label {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-drywall);
  margin-bottom: 4px;
  display: block;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: rgba(254,254,249,0.6);
  border: 1px solid var(--border-taupe);
  border-radius: 8px 18px 8px 22px;
  padding: 12px 16px;
  font-family: var(--f-sans);
  font-size: 15px;
  color: var(--c-peat);
  transition: all 0.24s ease;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--c-pistachio);
  border-width: 2px;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(107,142,90,0.12);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.site-footer {
  background: var(--c-peat-deep);
  color: #fff;
  border-top: 2px solid var(--c-pistachio);
  padding: 22px 0;
  position: relative;
  z-index: 10;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-pistachio) 0%, transparent 100%);
  opacity: 0.4;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

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

.footer-meta .mini-mark {
  font-family: var(--f-serif);
  font-weight: 800;
  font-size: 18px;
  color: var(--c-pistachio);
  letter-spacing: 0.04em;
}

.footer-meta .mini-domain {
  font-family: var(--f-mono);
  font-weight: 300;
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.06em;
}

.footer-meta .mini-tag {
  font-family: var(--f-jp);
  font-weight: 300;
  font-size: 9px;
  color: var(--c-drywall);
  letter-spacing: 0.06em;
  margin-left: 6px;
}

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

.footer-links a {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--c-drywall);
  text-transform: uppercase;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--c-pistachio);
}

.cookie-banner {
  position: fixed;
  bottom: 22px;
  left: 22px;
  right: 22px;
  max-width: 480px;
  background: var(--c-plaster);
  border: 1.5px solid var(--c-pistachio);
  border-radius: var(--r-tl) var(--r-tr) var(--r-bl) var(--r-br);
  padding: 22px 24px;
  z-index: 999;
  box-shadow: var(--shadow-hover);
  color: var(--c-peat);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-banner h4 {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 18px;
  margin: 0;
}

.cookie-banner p {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  color: var(--c-peat);
}

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

.cookie-banner .cookie-btn {
  background: var(--c-pistachio);
  color: #fff;
  border: 1.5px solid var(--c-pistachio);
  padding: 10px 18px;
  border-radius: 8px 18px 8px 22px;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.24s ease;
  white-space: nowrap;
}

.cookie-banner .cookie-btn.decline {
  background: transparent;
  color: var(--c-peat);
  border-color: var(--c-drywall);
}

.cookie-banner .cookie-btn:hover {
  background: var(--c-peat);
  color: #fff;
  border-color: var(--c-peat);
}

.cookie-banner .cookie-btn.decline:hover {
  background: var(--c-peat);
  color: #fff;
  border-color: var(--c-peat);
}

.compact-hero {
  padding: 120px 0 60px;
  position: relative;
  background: linear-gradient(135deg, rgba(200,217,192,0.28), rgba(208,200,223,0.22));
  border-bottom: 1.5px solid var(--c-pistachio);
}

.compact-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 16px;
}

.compact-hero p {
  font-size: 17px;
  max-width: 680px;
  color: var(--c-peat);
  margin-bottom: 20px;
}

.section-card {
  background: var(--c-plaster);
  border: 1.5px solid var(--border-taupe);
  border-radius: var(--r-tl) var(--r-tr) var(--r-bl) var(--r-br);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: all 0.24s ease;
  position: relative;
}

.section-card:hover {
  border-color: var(--c-pistachio);
  border-width: 2px;
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.price-card {
  background: var(--c-plaster);
  border: 1.5px solid var(--border-taupe);
  border-radius: var(--r-tl) var(--r-tr) var(--r-bl) var(--r-br);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.24s ease;
}

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

.price-card .price {
  font-family: var(--f-serif);
  font-weight: 800;
  font-size: 32px;
  color: var(--c-pistachio);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.price-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  color: var(--c-peat);
}

.price-card ul li {
  margin-bottom: 4px;
}

.toc-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.toc-list a {
  background: var(--c-plaster);
  border: 1.5px solid var(--border-taupe);
  border-radius: var(--r-tl) var(--r-tr) var(--r-bl) var(--r-br);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  text-decoration: none;
  color: var(--c-peat);
  transition: all 0.24s ease;
}

.toc-list a:hover {
  border-color: var(--c-pistachio);
  transform: translateX(6px);
  box-shadow: var(--shadow-hover);
}

.toc-list .icon {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--c-pistachio);
  border-radius: 12px 18px 10px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-pistachio);
  background: rgba(200,217,192,0.18);
}

.toc-list .meta {
  margin-left: auto;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  color: var(--c-drywall);
  letter-spacing: 0.08em;
}

.callout-band {
  background: linear-gradient(135deg, rgba(254,254,249,0.5), rgba(200,217,192,0.32));
  border-top: 1.5px solid var(--c-pistachio);
  border-bottom: 1.5px solid var(--c-pistachio);
  padding: 60px 0;
  text-align: center;
}

.callout-band h2 {
  margin-bottom: 14px;
}

.callout-band p {
  max-width: 640px;
  margin: 0 auto 24px;
  color: var(--c-peat);
}

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

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

.tax-card {
  background: var(--c-plaster);
  border: 1.5px solid var(--border-taupe);
  border-radius: var(--r-tl) var(--r-tr) var(--r-bl) var(--r-br);
  padding: 36px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-soft);
}

.tax-card h3 {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--c-peat);
}

.tax-card p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.tax-card ul {
  margin: 0 0 12px 0;
  padding-left: 24px;
}

.tax-card ul li {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 4px;
}

.thanks-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
  background: linear-gradient(135deg, rgba(200,217,192,0.32), rgba(208,200,223,0.22));
}

.thanks-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 18px;
}

.thanks-hero p {
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 17px;
}

.thanks-mark {
  width: 72px;
  height: 72px;
  border: 1.5px solid var(--c-pistachio);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-pistachio);
  margin-bottom: 24px;
  background: var(--c-plaster);
  box-shadow: var(--shadow-soft);
}

.thanks-mark svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 1100px) {
  .nav-ribbon {
    display: none;
  }
  .burger-cluster {
    display: flex;
  }
  .sidenav-bar {
    display: none;
  }
  .drift-stage {
    padding-top: 56px;
  }
  .hero-canvas {
    min-height: auto;
    padding: 40px 0 60px;
  }
  .hero-asym {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero-card-1,
  .hero-card-2,
  .hero-card-3 {
    grid-column: 1 / -1;
    grid-row: auto;
    max-width: 100%;
    margin: 0;
    justify-self: stretch;
  }
  .hero-card-4 {
    display: none;
  }
  .hero-card-2 {
    padding: 28px 24px;
  }
  .service-tab-body .grid {
    grid-template-columns: 1fr;
  }
  .split-bio {
    grid-template-columns: 1fr;
  }
  .split-bio .sticky-photo {
    position: relative;
    top: 0;
    margin-right: 0;
    margin-bottom: 24px;
  }
  .split-bio .story {
    padding-left: 0;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-tile:hover,
  .why-tile.is-open {
    flex: 1 1 0;
  }
  .process-card {
    max-width: 100%;
  }
  .process-card:nth-child(even) {
    align-self: flex-start;
  }
  .process-card.is-open .pb {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .coverflow-card {
    width: 88%;
  }
  .coverflow-stage {
    height: 480px;
  }
  .coverflow-card {
    grid-template-columns: 1fr;
  }
  .pricing-table {
    grid-template-columns: 1fr;
  }
  .team-row .team-pop {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 14px;
    opacity: 0;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .team-row.is-open .team-pop {
    opacity: 1;
    max-height: 240px;
    padding: 14px;
    right: 0;
  }
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .drift-section {
    padding: 60px 0;
  }
  .hero-card-2 h1 {
    font-size: 2rem;
  }
  .marquee-band {
    padding: 40px 0 30px;
  }
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 18px 18px;
  }
}
