:root {
  --color-ink: #080a07;
  --color-forest: #111a10;
  --color-moss: #9bd27b;
  --color-moss-strong: #4ade80;
  --color-paper: #f6f3ec;
  --color-muted: rgba(246, 243, 236, 0.68);
  --color-line: rgba(246, 243, 236, 0.14);
  --color-glass: rgba(255, 255, 255, 0.065);
  --color-white: #ffffff;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Instrument Serif", Georgia, serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  margin: 0;
  min-width: 320px;
  background: var(--color-ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  overflow-y: visible;
  background: var(--color-ink);
  color: var(--color-paper);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  font: inherit;
}

input,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(155, 210, 123, 0.82);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 20px;
}

.admin-bar .site-header {
  top: 32px;
}

.site-nav {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1440px;
  height: 44px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.site-logo {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

.site-logo-mark {
  width: 28px;
  height: 28px;
}

.nav-pill,
.reserve-button,
.mobile-menu-button,
.mobile-close-button {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  border-radius: 999px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.nav-pill::before,
.reserve-button::before,
.mobile-menu-button::before,
.mobile-close-button::before {
  position: absolute;
  inset: 0;
  padding: 1.4px;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.15) 80%,
    rgba(255, 255, 255, 0.45) 100%
  );
  content: "";
  pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.desktop-nav {
  position: absolute;
  left: 50%;
  display: flex;
  height: 44px;
  align-items: center;
  gap: 4px;
  padding: 0 8px;
  transform: translateX(-50%);
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transition: color 300ms ease;
  white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--color-white);
}

.reserve-button {
  display: inline-flex;
  height: 44px;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transition: transform 300ms ease, background 300ms ease, color 300ms ease;
  white-space: nowrap;
}

.reserve-button:hover,
.reserve-button:focus-visible {
  transform: scale(1.02);
}

.reserve-button:active,
.action-button:active,
.service-cta-bar a:active,
.inquiry-form button:active,
.hero-brief a:active {
  transform: translateY(1px) scale(0.99);
}

.reserve-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 18px rgba(74, 222, 128, 0.85);
}

.mobile-menu-button,
.mobile-close-button {
  display: none;
  width: 64px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  cursor: pointer;
}

.menu-lines {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.menu-lines span,
.mobile-close-button span {
  display: block;
  height: 1.5px;
  background: var(--color-white);
}

.menu-lines span:first-child {
  width: 20px;
}

.menu-lines span:last-child {
  width: 14px;
}

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: none;
  padding: 20px 24px;
  background: var(--color-ink);
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms cubic-bezier(0.77, 0, 0.18, 1), visibility 500ms cubic-bezier(0.77, 0, 0.18, 1);
}

.mobile-panel.is-open {
  opacity: 1;
  visibility: visible;
}

.admin-bar .mobile-panel {
  top: 32px;
}

.mobile-close-button {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2;
  opacity: 0;
  transform: rotate(-90deg) scale(0.8);
  transition: opacity 500ms cubic-bezier(0.77, 0, 0.18, 1), transform 500ms cubic-bezier(0.77, 0, 0.18, 1);
}

.admin-bar .mobile-close-button {
  top: 52px;
}

.mobile-panel.is-open .mobile-close-button {
  opacity: 1;
  transform: rotate(0) scale(1);
  transition-delay: 100ms;
}

.mobile-close-button span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
}

.mobile-close-button span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-close-button span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-panel-inner {
  display: flex;
  min-height: 100%;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding-top: 40px;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.mobile-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(30px, 9vw, 40px);
  font-weight: 500;
  line-height: 1.05;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.77, 0, 0.18, 1), transform 700ms cubic-bezier(0.77, 0, 0.18, 1);
}

.mobile-panel.is-open .mobile-links a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--item-delay, 100ms);
}

.mobile-cta {
  position: absolute;
  bottom: 32px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.77, 0, 0.18, 1), transform 700ms cubic-bezier(0.77, 0, 0.18, 1);
}

.mobile-panel.is-open .mobile-cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 400ms;
}

.home-main {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  background:
    radial-gradient(circle at 52% 18%, rgba(76, 112, 54, 0.28), transparent 32rem),
    var(--color-ink);
}

.hero-section {
  position: relative;
  min-height: max(620px, 100dvh);
  overflow: hidden;
  background: var(--color-ink);
}

.hero-grid {
  position: absolute;
  inset: -32px;
  z-index: 0;
  opacity: 0.1;
  will-change: transform;
}

.hero-grid-svg {
  width: 100%;
  height: 100%;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 10;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-title {
  position: absolute;
  z-index: 20;
  top: 80px;
  right: 0;
  left: 0;
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(72px, 17vw, 256px);
  font-weight: 400;
  line-height: 0.9;
  pointer-events: none;
  text-align: center;
  text-transform: uppercase;
  user-select: none;
}

.hero-brief {
  position: absolute;
  right: 28px;
  bottom: 82px;
  z-index: 38;
  display: flex;
  width: min(520px, calc(100% - 56px));
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 8px 8px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(8, 10, 7, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 24px 80px rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
  animation: fade-in-up 780ms var(--ease-out) 320ms both;
}

.hero-brief p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.hero-brief a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 14px;
  background: var(--color-paper);
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform 260ms var(--ease-out), background 260ms var(--ease-out);
  white-space: nowrap;
}

.hero-brief a:hover {
  background: var(--color-white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 25;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.bottle-reveal-window {
  position: absolute;
  inset: 0;
  z-index: 30;
  clip-path: inset(40% 0 0 0);
  pointer-events: none;
  -webkit-mask-image: radial-gradient(
    ellipse 28rem 21rem at 50% 64%,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 72%,
    rgba(255, 255, 255, 0.72) 84%,
    rgba(255, 255, 255, 0.22) 94%,
    rgba(255, 255, 255, 0) 100%
  );
  mask-image: radial-gradient(
    ellipse 28rem 21rem at 50% 64%,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 72%,
    rgba(255, 255, 255, 0.72) 84%,
    rgba(255, 255, 255, 0.22) 94%,
    rgba(255, 255, 255, 0) 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.spotlight-reveal {
  --spotlight-x: 50vw;
  --spotlight-y: 62vh;
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  contain: paint;
  transform: translateZ(0);
  -webkit-mask-image: radial-gradient(
    circle 260px at var(--spotlight-x) var(--spotlight-y),
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 40%,
    rgba(255, 255, 255, 0.75) 60%,
    rgba(255, 255, 255, 0.4) 75%,
    rgba(255, 255, 255, 0.12) 88%,
    rgba(255, 255, 255, 0) 100%
  );
  mask-image: radial-gradient(
    circle 260px at var(--spotlight-x) var(--spotlight-y),
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 40%,
    rgba(255, 255, 255, 0.75) 60%,
    rgba(255, 255, 255, 0.4) 75%,
    rgba(255, 255, 255, 0.12) 88%,
    rgba(255, 255, 255, 0) 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

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

.section-shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.intro-section {
  position: relative;
  z-index: 12;
  overflow: hidden;
  isolation: isolate;
  margin-top: -28px;
  min-height: 100dvh;
  padding: 112px 0 128px;
  border-radius: 28px 28px 0 0;
  background:
    radial-gradient(circle at 18% 4%, rgba(155, 210, 123, 0.16), transparent 28rem),
    linear-gradient(180deg, #111a10 0%, #091007 100%);
  box-shadow: 0 -22px 70px rgba(0, 0, 0, 0.38);
}

.intro-cinema {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.intro-cinema video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.88;
  filter: saturate(100%) contrast(1.02) brightness(1.12);
  transform: scale(1.035);
}

.intro-cinema::before,
.intro-cinema::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.intro-cinema::before {
  background:
    linear-gradient(180deg, rgba(8, 10, 7, 0.14), rgba(8, 10, 7, 0.22) 42%, rgba(8, 10, 7, 0.32)),
    linear-gradient(90deg, rgba(8, 10, 7, 0.26), rgba(8, 10, 7, 0.06) 44%, rgba(8, 10, 7, 0.2));
}

.intro-cinema::after {
  background:
    radial-gradient(circle at 50% 40%, rgba(155, 210, 123, 0.035), transparent 24rem),
    radial-gradient(circle at 80% 14%, rgba(246, 243, 236, 0.025), transparent 20rem);
}

.intro-section > .section-shell {
  position: relative;
  z-index: 2;
}

.intro-section::before,
.service-section::before,
.process-section::before,
.inquiry-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.intro-section::before {
  z-index: 1;
  background-image:
    linear-gradient(rgba(246, 243, 236, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 243, 236, 0.024) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.28), transparent 78%);
}

.intro-top {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 28px;
  text-align: center;
}

.intro-top p {
  max-width: 760px;
  margin: 0;
  color: rgba(246, 243, 236, 0.86);
  font-size: clamp(20px, 2.35vw, 34px);
  font-weight: 500;
  line-height: 1.28;
  text-wrap: balance;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.action-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 260ms var(--ease-out), background 260ms var(--ease-out), color 260ms var(--ease-out);
  white-space: nowrap;
}

.action-button-primary {
  background: var(--color-paper);
  color: var(--color-ink);
}

.action-button-primary:hover {
  background: var(--color-white);
}

.action-button-secondary {
  border: 1px solid rgba(246, 243, 236, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-paper);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.action-button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.intro-statement {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(180px, 0.3fr) minmax(0, 0.86fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: start;
}

.statement-mark {
  display: grid;
  gap: 16px;
  color: var(--color-paper);
}

.statement-mark svg {
  width: 46px;
  height: 46px;
}

.statement-mark span {
  max-width: 160px;
  color: rgba(246, 243, 236, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
}

.intro-statement p {
  margin: 0;
  color: var(--color-paper);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1.14;
  text-wrap: balance;
}

.service-section {
  position: relative;
  overflow: visible;
  padding: 128px 0 156px;
  background:
    radial-gradient(circle at 84% 12%, rgba(155, 210, 123, 0.12), transparent 24rem),
    var(--color-ink);
}

.service-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.service-backdrop img {
  position: sticky;
  top: 0;
  display: block;
  width: 100%;
  height: 100dvh;
  object-fit: cover;
  filter: blur(1px) saturate(92%);
  opacity: 0.46;
  transform: scale(1.02);
}

.service-section::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 10, 7, 0.62), rgba(8, 10, 7, 0.8) 42%, rgba(8, 10, 7, 0.91)),
    linear-gradient(90deg, rgba(246, 243, 236, 0.05) 1px, transparent 1px);
  background-size: auto, 72px 72px;
}

.service-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 390px) 1fr;
  gap: clamp(48px, 7vw, 104px);
  align-items: start;
}

.service-sticky {
  position: sticky;
  top: 0;
  display: flex;
  min-height: 100dvh;
  max-height: 100dvh;
  flex-direction: column;
  justify-content: space-between;
  padding: 92px 0 46px;
}

.section-kicker {
  margin: 0 0 18px;
  color: rgba(155, 210, 123, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-sticky h2,
.process-header h2,
.inquiry-copy h2 {
  margin: 0;
  color: var(--color-paper);
  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-wrap: balance;
}

.service-sticky h2 {
  font-size: clamp(36px, 4.1vw, 58px);
}

.service-sticky > div:first-child > p:last-child,
.process-header > p:last-child,
.inquiry-copy > p:last-child {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--color-muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.58;
}

.service-sticky > div:first-child > p:last-child {
  max-width: 410px;
}

.service-nav {
  display: grid;
  gap: 8px;
  margin: 30px 0;
}

.service-nav button {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid rgba(246, 243, 236, 0.09);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(246, 243, 236, 0.42);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  transition: background 260ms var(--ease-out), color 260ms var(--ease-out), border-color 260ms var(--ease-out), transform 260ms var(--ease-out);
}

.service-nav button:hover,
.service-nav button.is-active {
  border-color: rgba(155, 210, 123, 0.32);
  background: rgba(155, 210, 123, 0.12);
  color: var(--color-paper);
}

.service-nav button:active {
  transform: translateY(1px);
}

.service-cta-bar {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(246, 243, 236, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.service-cta-bar p {
  margin: 0;
  color: rgba(246, 243, 236, 0.66);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.service-cta-bar a {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 12px;
  background: var(--color-paper);
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 800;
  transition: transform 260ms var(--ease-out), background 260ms var(--ease-out);
}

.service-cta-bar a:hover {
  background: var(--color-white);
}

.service-cards {
  display: grid;
  gap: 48px;
  padding: 72px 0 48px;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 640px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(246, 243, 236, 0.13);
  border-radius: 24px;
  background:
    radial-gradient(circle at 78% 16%, rgba(155, 210, 123, 0.1), transparent 17rem),
    linear-gradient(145deg, rgba(20, 28, 18, 0.86), rgba(8, 12, 7, 0.9)),
    rgba(0, 0, 0, 0.28);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.26);
}

.service-card[data-reveal] {
  opacity: 0;
  transform: translateX(96px) scale(0.985);
  transition: opacity 760ms var(--ease-out), transform 760ms var(--ease-out), border-color 260ms var(--ease-out);
  will-change: transform, opacity;
}

.service-card[data-reveal].is-visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.service-card::before {
  position: absolute;
  inset: auto -10% -35% 12%;
  height: 46%;
  border-radius: 999px;
  background: transparent;
  filter: none;
  content: "";
}

.service-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(246, 243, 236, 0.54);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-card-head strong {
  color: rgba(155, 210, 123, 0.76);
  font-weight: 800;
}

.service-card-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.service-card-logo svg {
  width: 38px;
  height: 38px;
  color: rgba(246, 243, 236, 0.76);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 34px 0 16px;
  color: var(--color-paper);
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.service-card > p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0;
  color: rgba(246, 243, 236, 0.66);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.56;
}

.service-card-media {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 34px 0 24px;
  border: 1px solid rgba(246, 243, 236, 0.12);
  border-radius: 20px;
  background:
    radial-gradient(circle at 26% 16%, rgba(246, 243, 236, 0.2), transparent 25%),
    rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.service-card-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
}

.service-card-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-card-list span {
  padding: 9px 12px;
  border: 1px solid rgba(246, 243, 236, 0.11);
  border-radius: 999px;
  background: rgba(8, 10, 7, 0.24);
  color: rgba(246, 243, 236, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.process-section {
  position: relative;
  padding: 128px 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(155, 210, 123, 0.12), transparent 24rem),
    linear-gradient(180deg, #080a07 0%, #10180e 100%);
}

.process-section::before {
  background-image: linear-gradient(rgba(246, 243, 236, 0.045) 1px, transparent 1px);
  background-size: 100% 84px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6), transparent);
}

.process-header {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 72px;
  overflow: visible;
}

.process-item {
  min-height: 250px;
  padding: 22px;
  border: 1px solid rgba(246, 243, 236, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.process-item:nth-child(2n) {
  margin-top: 34px;
}

.process-item h3 {
  margin: 0 0 72px;
  color: var(--color-paper);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.process-item p {
  margin: 0;
  color: rgba(246, 243, 236, 0.58);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.inquiry-section {
  position: relative;
  display: flex;
  min-height: 100dvh;
  align-items: center;
  padding: 118px 0 88px;
  background:
    radial-gradient(circle at 72% 10%, rgba(155, 210, 123, 0.16), transparent 24rem),
    var(--color-forest);
}

.inquiry-section::before {
  background: linear-gradient(180deg, rgba(8, 10, 7, 0), rgba(8, 10, 7, 0.42));
}

.inquiry-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr minmax(360px, 0.62fr);
  gap: clamp(42px, 8vw, 108px);
  align-items: start;
}

.inquiry-copy {
  padding-top: 18px;
}

.inquiry-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(246, 243, 236, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 34px 100px rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
}

.inquiry-form label span {
  color: rgba(246, 243, 236, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(246, 243, 236, 0.12);
  border-radius: 14px;
  background: rgba(8, 10, 7, 0.38);
  color: var(--color-paper);
  font-size: 15px;
  font-weight: 500;
}

.inquiry-form input {
  min-height: 52px;
  padding: 0 16px;
}

.inquiry-form textarea {
  min-height: 128px;
  resize: vertical;
  padding: 15px 16px;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(246, 243, 236, 0.36);
}

.inquiry-form button {
  min-height: 54px;
  margin-top: 6px;
  border-radius: 16px;
  background: var(--color-paper);
  color: var(--color-ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: transform 260ms var(--ease-out), background 260ms var(--ease-out);
}

.inquiry-form button:hover {
  background: var(--color-white);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 46px 0 24px;
  border-top: 1px solid rgba(246, 243, 236, 0.1);
  background:
    radial-gradient(circle at 18% 0%, rgba(155, 210, 123, 0.08), transparent 24rem),
    linear-gradient(180deg, #0e160d 0%, #080a07 100%);
}

.site-footer::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(246, 243, 236, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 243, 236, 0.024) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 86%);
}

.footer-layout,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(180px, 0.55fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-logo {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 14px;
  color: var(--color-paper);
}

.footer-logo svg {
  width: 34px;
  height: 34px;
}

.footer-logo span {
  max-width: 150px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 380px;
  margin: 0;
  color: rgba(246, 243, 236, 0.62);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

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

.footer-links {
  flex-direction: column;
  align-items: flex-start;
}

.footer-contact {
  justify-content: flex-end;
  font-style: normal;
}

.footer-links a,
.footer-contact a,
.footer-bottom a {
  color: inherit;
  transition: color 220ms var(--ease-out), opacity 220ms var(--ease-out);
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: var(--color-paper);
}

.footer-links a {
  color: rgba(246, 243, 236, 0.62);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.footer-contact a {
  color: rgba(246, 243, 236, 0.62);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(246, 243, 236, 0.1);
  color: rgba(246, 243, 236, 0.48);
  font-size: 12px;
  font-weight: 600;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: rgba(155, 210, 123, 0.74);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out);
}

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

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.fallback-page {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0;
}

.fallback-page h1 {
  margin: 0 0 16px;
  font-size: clamp(40px, 8vw, 88px);
  line-height: 0.95;
}

.fallback-page p {
  max-width: 620px;
  margin: 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 782px) {
  .admin-bar .site-header,
  .admin-bar .mobile-panel {
    top: 46px;
  }

  .admin-bar .mobile-close-button {
    top: 66px;
  }
}

@media (max-width: 767px) {
  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .mobile-menu-button,
  .mobile-panel {
    display: flex;
  }

  .hero-title {
    top: 80px;
  }

  .hero-brief {
    right: 18px;
    bottom: 28px;
    left: 18px;
    width: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }

  .hero-brief p {
    max-width: none;
    font-size: 13px;
  }

  .hero-brief a {
    width: 100%;
  }

  .section-shell {
    width: min(100% - 36px, 1240px);
  }

  .intro-section {
    padding: 68px 0 84px;
  }

  .intro-top {
    gap: 22px;
  }

  .intro-statement,
  .service-layout,
  .inquiry-layout {
    grid-template-columns: 1fr;
  }

  .intro-statement {
    gap: 32px;
  }

  .intro-statement p {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.18;
  }

  .service-section,
  .process-section,
  .inquiry-section {
    padding: 84px 0;
  }

  .service-sticky {
    position: relative;
    min-height: 0;
    padding: 0;
  }

  .service-nav {
    display: none;
  }

  .service-cards {
    padding: 12px 0 0;
  }

  .service-card {
    min-height: 0;
    padding-top: 84px;
    scroll-margin-top: 96px;
  }

  .service-card h3 {
    margin-top: 44px;
  }

  .service-card-media {
    margin-left: 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
    margin-top: 44px;
    overflow: visible;
  }

  .process-item,
  .process-item:nth-child(2n) {
    min-height: 0;
    margin-top: 0;
  }

  .process-item h3 {
    margin-bottom: 28px;
  }

  .site-footer {
    padding: 42px 0 22px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-links,
  .footer-contact {
    justify-content: flex-start;
    gap: 12px 16px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 30px;
  }
}

@media (min-width: 640px) {
  .site-header {
    padding-right: 28px;
    padding-left: 28px;
  }

  .hero-title {
    top: 112px;
  }
}

@media (min-width: 768px) {
  .hero-title {
    top: 128px;
  }
}

@media (max-width: 639px) {
  .bottle-reveal-window {
    -webkit-mask-image: radial-gradient(
      ellipse 13rem 19rem at 50% 62%,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 1) 72%,
      rgba(255, 255, 255, 0.72) 84%,
      rgba(255, 255, 255, 0.22) 94%,
      rgba(255, 255, 255, 0) 100%
    );
    mask-image: radial-gradient(
      ellipse 13rem 19rem at 50% 62%,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 1) 72%,
      rgba(255, 255, 255, 0.72) 84%,
      rgba(255, 255, 255, 0.22) 94%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .hero-section {
    min-height: 100dvh;
  }

  .hero-title {
    font-size: clamp(58px, 17vw, 76px);
  }

  .intro-actions,
  .service-card-list {
    justify-content: flex-start;
  }

  .action-button {
    width: 100%;
  }

  .service-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .inquiry-form input,
  .inquiry-form textarea {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .hero-brief {
    bottom: 16px;
  }

  .service-sticky h2,
  .process-header h2,
  .inquiry-copy h2 {
    font-size: clamp(34px, 12vw, 46px);
  }
}

@media (prefers-reduced-transparency: reduce) {
  .nav-pill,
  .reserve-button,
  .mobile-menu-button,
  .mobile-close-button,
  .hero-brief,
  .action-button-secondary,
  .service-cta-bar,
  .service-card,
  .inquiry-form {
    background: rgba(8, 10, 7, 0.94);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
