:root {
  --green-950: #07130e;
  --green-900: #0d1f17;
  --green-850: #12271d;
  --green-800: #193326;
  --cream: #e8e3d9;
  --cream-soft: #f0ede7;
  --wood: #a36d3e;
  --wood-deep: #6b4329;
  --line-light: rgba(232, 227, 217, 0.18);
  --line-dark: rgba(13, 31, 23, 0.14);
  --text-muted-light: rgba(232, 227, 217, 0.62);
  --text-muted-dark: rgba(13, 31, 23, 0.64);
  --header-height: 82px;
  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  background: var(--green-950);
  color: var(--cream);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
  color: inherit;
  font: inherit;
}

::selection {
  background: rgba(163, 109, 62, 0.52);
  color: var(--cream);
}

.site-header {
  --nav-top: 0px;
  --nav-width-inset: 0px;
  --nav-height: var(--header-height);
  --nav-pad: 56px;
  --nav-radius: 0px;
  --nav-bg-alpha: 0.2;
  --nav-border-alpha: 0.08;
  --nav-border-top-alpha: 0.05;
  --nav-shadow-alpha: 0;
  --nav-inner-alpha: 0;
  --nav-inner-bottom-alpha: 0;
  --nav-blur: 0px;
  --nav-saturate: 135%;
  --nav-logo-scale: 1;
  position: fixed;
  top: var(--nav-top);
  left: 50%;
  right: auto;
  z-index: 40;
  width: calc(100% - var(--nav-width-inset));
  max-width: none;
  height: var(--nav-height);
  margin: 0 auto;
  transform: translate3d(-50%, 0, 0);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 0 var(--nav-pad);
  border: 1px solid transparent;
  border-color: rgba(232, 227, 217, var(--nav-border-alpha));
  border-top-color: rgba(232, 227, 217, var(--nav-border-top-alpha));
  border-radius: var(--nav-radius);
  background: rgba(8, 19, 14, var(--nav-bg-alpha));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, var(--nav-inner-alpha)),
    inset 0 -1px 0 rgba(255, 255, 255, var(--nav-inner-bottom-alpha)),
    0 18px 70px rgba(0, 0, 0, var(--nav-shadow-alpha));
  backdrop-filter: blur(var(--nav-blur)) saturate(var(--nav-saturate));
  -webkit-backdrop-filter: blur(var(--nav-blur)) saturate(var(--nav-saturate));
  transition:
    background 180ms linear,
    border-color 180ms linear,
    box-shadow 180ms linear,
    opacity 800ms ease;
  contain: layout paint;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  width: clamp(82px, 6.4vw, 100px);
  height: auto;
  opacity: 0.93;
  transform: scale(var(--nav-logo-scale));
  transform-origin: left center;
  transition: opacity 240ms ease;
}

.desktop-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 50px;
  font-size: 0.74rem;
  text-transform: uppercase;
  color: rgba(232, 227, 217, 0.86);
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  transition: color 220ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms var(--ease-out);
}

.desktop-nav a:hover {
  color: var(--cream);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.icon-button:hover {
  background: rgba(232, 227, 217, 0.08);
  box-shadow: 0 0 26px rgba(232, 227, 217, 0.16);
  transform: translateY(-1px);
}

.icon-button i {
  font-size: 1.5rem;
}

.nav-toggle {
  display: none;
  justify-self: end;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}

.menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 6, 0.34);
  opacity: 0;
  cursor: pointer;
  transition: opacity 520ms ease;
}

.menu-tray {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(380px, 86vw);
  min-height: 100%;
  padding: 96px 42px 42px;
  background:
    radial-gradient(circle at 20% 22%, rgba(121, 143, 103, 0.12), transparent 36%),
    linear-gradient(145deg, rgba(8, 21, 15, 0.96), rgba(7, 17, 12, 0.92));
  border-left: 1px solid rgba(232, 227, 217, 0.09);
  box-shadow: -36px 0 100px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  transform: translateX(102%);
  opacity: 0.7;
  transition:
    transform 680ms var(--ease-out),
    opacity 520ms ease;
}

.mobile-menu.is-open {
  pointer-events: auto;
}

.mobile-menu.is-open .menu-backdrop {
  opacity: 1;
}

.mobile-menu.is-open .menu-tray {
  transform: translateX(0);
  opacity: 1;
}

.tray-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tray-head .brand-logo {
  width: 118px;
}

.tray-nav {
  display: grid;
  gap: 28px;
  margin-top: 58px;
  text-transform: uppercase;
  font-size: 0.84rem;
  color: rgba(232, 227, 217, 0.78);
}

.tray-nav a {
  display: flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
  transition: color 240ms ease, transform 240ms ease;
}

.tray-nav a:hover,
.tray-nav a.is-active {
  color: var(--cream);
  transform: translateX(4px);
}

.tray-nav i {
  width: 22px;
  font-size: 1.35rem;
}

.section {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 7.6vw 98px;
  background:
    linear-gradient(90deg, rgba(8, 21, 15, 0.86) 0%, rgba(12, 26, 19, 0.72) 36%, rgba(12, 26, 19, 0.26) 67%, rgba(8, 16, 12, 0.1) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.12));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(7, 19, 14, 0.18));
  pointer-events: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 19, 14, 0.78) 0%, rgba(7, 19, 14, 0.34) 45%, rgba(7, 19, 14, 0.04) 100%),
    url("assets/hero-scene.png") center center / cover no-repeat;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.hero-logo-heading {
  margin: 0 0 20px;
  line-height: 0;
}

.hero-logo {
  width: min(52vw, 610px);
  height: auto;
  opacity: 0.92;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.18));
}

.hero p {
  margin: 0 0 34px;
  max-width: 360px;
  color: var(--text-muted-light);
  font-size: 1.15rem;
  line-height: 1.6;
}

.neo-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 50px;
  padding: 0 25px;
  border-radius: 999px;
  border: 1px solid rgba(232, 227, 217, 0.26);
  background:
    radial-gradient(circle at 26% 16%, rgba(255, 255, 255, 0.34), transparent 34%),
    linear-gradient(145deg, rgba(238, 235, 221, 0.2), rgba(238, 235, 221, 0.06)),
    rgba(119, 132, 91, 0.13);
  box-shadow:
    inset 8px 8px 18px rgba(0, 0, 0, 0.22),
    inset -9px -9px 18px rgba(255, 255, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 0 34px rgba(220, 232, 190, 0.28),
    0 14px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(175%);
  -webkit-backdrop-filter: blur(18px) saturate(175%);
  color: rgba(249, 247, 240, 0.92);
  text-transform: uppercase;
  font-size: 0.72rem;
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease;
}

.neo-button::before {
  content: "";
  position: absolute;
  inset: -4px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 50%, rgba(235, 247, 205, 0.46), transparent 48%),
    linear-gradient(90deg, rgba(232, 227, 217, 0.34), rgba(163, 109, 62, 0.28));
  opacity: 0.32;
  filter: blur(14px);
  transition: opacity 240ms ease;
}

.neo-button::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.22), transparent 34%),
    radial-gradient(circle at 82% 82%, rgba(255, 255, 255, 0.1), transparent 42%);
  opacity: 0.75;
  pointer-events: none;
}

.neo-button span,
.neo-button i {
  position: relative;
  z-index: 1;
}

.neo-button i {
  font-size: 1.02rem;
}

.neo-button:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 227, 217, 0.42);
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.42), transparent 36%),
    linear-gradient(145deg, rgba(238, 235, 221, 0.28), rgba(238, 235, 221, 0.08)),
    rgba(163, 109, 62, 0.16);
  box-shadow:
    inset 7px 7px 16px rgba(0, 0, 0, 0.2),
    inset -9px -9px 18px rgba(255, 255, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 0 52px rgba(226, 242, 197, 0.52),
    0 16px 38px rgba(0, 0, 0, 0.28);
}

.neo-button:hover::before {
  opacity: 0.88;
}

.neo-button.icon-only {
  width: 52px;
  height: 52px;
  min-height: 52px;
  padding: 0;
  gap: 0;
}

.neo-button.icon-only i {
  font-size: 1.26rem;
}

.scroll-cue {
  position: absolute;
  left: 7.6vw;
  bottom: 58px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(232, 227, 217, 0.5);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.mouse-mark {
  width: 24px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(232, 227, 217, 0.46);
  border-radius: 999px;
}

.mouse-mark i {
  font-size: 1.05rem;
}

.dark-section {
  background:
    radial-gradient(circle at 11% 52%, rgba(198, 218, 169, 0.08), transparent 30%),
    linear-gradient(110deg, var(--green-900), var(--green-800));
}

.menu-section {
  padding: 74px 7.8vw 70px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(320px, 1.42fr);
  gap: 8vw;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

.section-copy h2,
.about-copy h2 {
  margin: 0;
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 300;
}

.section-copy h2::after,
.about-copy h2::after {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  margin: 18px 0 16px;
  background: currentColor;
  opacity: 0.72;
}

.section-copy p {
  max-width: 235px;
  margin: 0 0 34px;
  color: var(--text-muted-light);
  font-size: 0.95rem;
  line-height: 1.55;
}

.glass-panel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(232, 227, 217, 0.28);
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.2), transparent 34%),
    radial-gradient(circle at 88% 80%, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.045)),
    rgba(232, 227, 217, 0.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 12px 12px 30px rgba(255, 255, 255, 0.035),
    inset -18px -18px 42px rgba(0, 0, 0, 0.08),
    0 28px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
}

.glass-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 24% 78%, rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%);
  opacity: 0.58;
  pointer-events: none;
}

.glass-panel > * {
  position: relative;
  z-index: 1;
}

.menu-empty {
  min-height: 270px;
  display: grid;
  place-items: center;
}

.orb-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(232, 227, 217, 0.2);
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.22), transparent 48%),
    rgba(232, 227, 217, 0.08);
  box-shadow:
    inset 8px 8px 18px rgba(0, 0, 0, 0.18),
    inset -8px -8px 18px rgba(255, 255, 255, 0.08);
}

.orb-icon i {
  font-size: 1.8rem;
}

.light-section {
  background:
    radial-gradient(circle at 4% 0%, rgba(163, 109, 62, 0.14), transparent 32%),
    linear-gradient(105deg, var(--cream-soft), #e0d8cd);
  color: var(--green-900);
}

.about-section {
  padding: 72px 7.8vw 72px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.58fr);
  gap: 8vw;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

.about-copy p {
  margin: 0 0 23px;
  max-width: 720px;
  color: var(--text-muted-dark);
  font-size: 0.83rem;
  line-height: 1.76;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-visual {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(17, 24, 19, 0.22);
  background: var(--wood-deep);
}

.about-visual img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.contact-section {
  padding: 72px 7.8vw 82px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(290px, 1fr) repeat(2, minmax(220px, 0.72fr));
  gap: 28px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-card {
  min-height: 232px;
  padding: 34px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-card p {
  margin: 28px 0 0;
  color: var(--text-muted-light);
  font-size: 0.95rem;
  line-height: 1.65;
}

.contact-card a {
  transition: color 220ms ease;
}

.contact-card a:hover {
  color: var(--cream);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  filter: blur(18px);
  transition:
    opacity 1050ms ease,
    transform 1050ms var(--ease-out),
    filter 1050ms ease;
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

body:not(.is-loaded) .site-header,
body:not(.is-loaded) .hero-image {
  opacity: 0;
}

.site-header,
.hero-image {
  transition:
    opacity 800ms ease,
    background 180ms linear,
    box-shadow 180ms linear,
    border-color 180ms linear,
    backdrop-filter 180ms linear;
}

@media (max-width: 980px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    --nav-pad: 28px;
  }

  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 124px 36px 92px;
  }

  .hero-logo {
    width: min(72vw, 500px);
  }

  .hero p {
    font-size: 1.05rem;
  }

  .scroll-cue {
    left: 36px;
  }

  .section-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-copy p {
    max-width: 340px;
  }

  .menu-empty {
    min-height: 236px;
  }

  .about-visual {
    max-width: 420px;
  }

  .about-visual img {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .site-header {
    --nav-pad: 20px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 92px;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 116px 22px 88px;
    background:
      linear-gradient(90deg, rgba(8, 21, 15, 0.92) 0%, rgba(12, 26, 19, 0.78) 50%, rgba(12, 26, 19, 0.36) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.18));
  }

  .hero-image {
    background-position: 58% center;
  }

  .hero-logo {
    width: min(82vw, 330px);
  }

  .hero p {
    max-width: 280px;
    font-size: 0.98rem;
  }

  .scroll-cue {
    left: 22px;
    bottom: 32px;
  }

  .menu-section,
  .about-section,
  .contact-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .section-copy h2,
  .about-copy h2 {
    font-size: 1.95rem;
  }

  .menu-empty {
    min-height: 210px;
  }

  .about-copy p,
  .contact-card p {
    font-size: 0.88rem;
  }

  .about-visual {
    max-width: none;
  }

  .about-visual img {
    min-height: 340px;
  }

  .contact-card {
    min-height: 210px;
  }

  .menu-tray {
    width: 100%;
    padding: 88px 34px 36px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
