:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-warm: #f7f4ef;
  --text: #202020;
  --muted: #6c6c6c;
  --brand: #202020;
  --terracotta: #8f6a4a;
  --gold: #b99a5d;
  --leaf: #73786a;
  --border: rgba(32, 32, 32, 0.11);
  --border-strong: rgba(32, 32, 32, 0.22);
  --soft: rgba(32, 32, 32, 0.045);
  --ok: #5f7655;
  --warn: #9c5d30;
  --shadow: 0 18px 52px rgba(32, 32, 32, 0.10);
  --max: 1180px;
  --header-h: 78px;
  --t: 200ms cubic-bezier(.4, 0, .2, 1);
  color-scheme: light;
}

[data-theme="dark"] {
  --bg: #12100e;
  --surface: #1b1815;
  --surface-warm: #211d18;
  --text: #fffdf8;
  --muted: #d2c8ba;
  --brand: #fffdf8;
  --terracotta: #c7795a;
  --gold: #d8b96f;
  --leaf: #a0a581;
  --border: rgba(255, 250, 244, 0.14);
  --border-strong: rgba(255, 250, 244, 0.25);
  --soft: rgba(228, 189, 104, 0.13);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Raleway, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: 0.68;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  transition: transform var(--t);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  height: var(--header-h);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
  transition: box-shadow var(--t);
}

.site-header.is-scrolled,
.site-header.menu-open {
  box-shadow: 0 10px 34px rgba(32, 32, 32, 0.08);
}

.nav-shell {
  width: min(var(--max), calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-symbol {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand);
  color: var(--bg);
  display: grid;
  place-items: center;
  box-shadow: none;
}

.brand-symbol svg {
  width: 26px;
  height: 26px;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-name {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-kicker {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: 24px;
  align-items: center;
}

.site-nav a,
.nav-link {
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 0;
  transition: color var(--t);
}

.site-nav a:hover,
.nav-link:hover {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.icon-button,
.menu-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  transition: background var(--t), transform var(--t), border-color var(--t);
}

.icon-button svg,
.menu-button svg,
.btn svg {
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.icon-button svg *,
.menu-button svg *,
.btn svg * {
  pointer-events: none;
}

.icon-button:hover,
.menu-button:hover {
  transform: translateY(-1px);
  border-color: var(--border-strong);
  background: var(--surface);
}

.menu-button {
  display: none;
}

.btn {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--bg);
  background: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform var(--t), background var(--t), color var(--t), border-color var(--t);
}

.btn:hover {
  transform: translateY(-1px);
  background: #000000;
}

.btn.secondary {
  background: transparent;
  border-color: var(--brand);
  color: var(--brand);
}

.btn.secondary:hover {
  background: var(--brand);
  color: var(--bg);
}

.btn.gold {
  background: var(--brand);
  color: var(--bg);
}

.hero {
  min-height: 90vh;
  position: relative;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 64px) 0 58px;
  isolation: isolate;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero::before {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.60), rgba(255, 255, 255, 0.28)), var(--hero-image);
  background-size: cover;
  background-position: center;
  animation: heroFade 18s infinite;
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(0deg, var(--bg) 0%, transparent 30%),
    rgba(255, 255, 255, 0.08);
}

@keyframes heroFade {
  0%, 31% { opacity: 1; transform: scale(1); }
  34%, 64% { opacity: 0.92; transform: scale(1.03); }
  68%, 100% { opacity: 1; transform: scale(1.01); }
}

.hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(260px, 360px);
  gap: 42px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.94;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  max-width: 820px;
}

.hero-subtitle {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-panel {
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  margin: 0;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-panel p {
  margin: 10px 0 18px;
  color: var(--muted);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.mini-stat strong {
  display: block;
  color: var(--brand);
  font-size: 1.25rem;
  line-height: 1;
}

.mini-stat span {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section {
  padding: 86px 0;
}

.section.alt {
  background: var(--surface-warm);
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 0.95;
  font-weight: 700;
  text-transform: uppercase;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.venue-card,
.concept-card,
.menu-card,
.account-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.service-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 360px;
}

.service-media,
.venue-media,
.menu-media {
  min-height: 240px;
  background: var(--surface-warm);
  overflow: hidden;
}

.service-media.media-fallback,
.venue-media.media-fallback,
.menu-media.media-fallback {
  background:
    linear-gradient(135deg, rgba(32, 32, 32, 0.06), rgba(185, 154, 93, 0.18)),
    radial-gradient(circle at 72% 28%, rgba(185, 154, 93, 0.20), transparent 34%),
    var(--surface-warm);
}

.service-media img,
.venue-media img,
.menu-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.4, 0, .2, 1);
}

.service-card:hover img,
.venue-card:hover img,
.menu-card:hover img {
  transform: scale(1.04);
}

.service-body,
.venue-body,
.concept-card,
.menu-body,
.account-card {
  padding: 24px;
}

.service-body h3,
.venue-body h3,
.concept-card h3,
.menu-body h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.service-body p,
.venue-body p,
.concept-card p,
.menu-body p {
  margin: 0 0 18px;
  color: var(--muted);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  display: grid;
  gap: 9px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
}

.feature-list svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 4px;
  color: var(--gold);
}

.concept-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.story-block {
  min-height: 520px;
  position: relative;
  display: grid;
  align-items: end;
  padding: 34px;
  border-radius: 8px;
  overflow: hidden;
  background-image: linear-gradient(180deg, rgba(36, 31, 27, 0.1), rgba(36, 31, 27, 0.76)), var(--story-image);
  background-size: cover;
  background-position: center;
}

.story-block h2 {
  max-width: 680px;
  margin: 0;
  color: #fffaf4;
  font-size: clamp(2.1rem, 4.8vw, 4.8rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.concept-stack {
  display: grid;
  gap: 18px;
}

.concept-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--brand);
}

.venue-card {
  display: grid;
}

.venue-card.is-featured {
  grid-column: span 2;
  grid-template-columns: 1.1fr 0.9fr;
}

.venue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tag {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.menu-card {
  display: grid;
}

.menu-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.price {
  color: var(--brand);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.cta-band {
  background: #202020;
  color: var(--bg);
  padding: 74px 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-grid h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.cta-grid p {
  margin: 16px 0 0;
  max-width: 660px;
  color: color-mix(in srgb, var(--bg) 78%, transparent);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-band .btn {
  background: var(--gold);
  color: #171412;
}

.cta-band .btn.secondary {
  border-color: var(--bg);
  background: transparent;
  color: var(--bg);
}

.site-footer {
  padding: 50px 0 28px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.7fr);
  gap: 28px;
}

.footer-grid h3,
.footer-grid h4 {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
}

.footer-grid a {
  display: block;
  margin: 7px 0;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.88rem;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.muted-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(18, 14, 11, 0.62);
  backdrop-filter: blur(10px);
}

.modal {
  width: min(720px, 100%);
  max-height: min(780px, calc(100vh - 36px));
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.modal-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.modal-head h2 {
  margin: 0;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.modal-body {
  padding: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-grid .wide {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  padding: 11px 12px;
  outline: 0;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}

textarea {
  resize: vertical;
  min-height: 112px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--terracotta) 16%, transparent);
}

.form-actions {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.toast-wrap {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  gap: 10px;
}

.toast {
  min-width: min(360px, calc(100vw - 36px));
  border: 1px solid var(--border);
  border-left: 4px solid var(--terracotta);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  padding: 13px 14px;
  box-shadow: var(--shadow);
  animation: toastIn var(--t);
}

.toast.ok {
  border-left-color: var(--ok);
}

.toast.err {
  border-left-color: var(--warn);
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: auto auto 1fr;
  }

  .menu-button {
    display: inline-grid;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 22px 24px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a,
  .nav-link {
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    text-align: left;
  }

  .nav-actions {
    grid-column: 3;
  }

  .hero-inner,
  .section-head,
  .concept-grid,
  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    max-width: 520px;
  }

  .service-card,
  .venue-card.is-featured {
    grid-template-columns: 1fr;
  }

  .grid.three,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .venue-card.is-featured {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 68px;
  }

  .nav-shell {
    width: min(100% - 24px, var(--max));
    gap: 8px;
  }

  .brand-symbol {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .brand-symbol svg {
    width: 22px;
    height: 22px;
  }

  .brand-mark {
    gap: 8px;
  }

  .brand-name {
    font-size: 0.75rem;
    max-width: 112px;
    white-space: normal;
  }

  .brand-kicker {
    display: none;
  }

  .nav-actions {
    gap: 6px;
  }

  .icon-button,
  .menu-button {
    width: 38px;
    height: 38px;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    padding-top: calc(var(--header-h) + 42px);
  }

  .hero h1 {
    font-size: clamp(2.75rem, 18vw, 4.9rem);
  }

  .hero-actions,
  .cta-actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .section-head {
    gap: 16px;
  }

  .story-block {
    min-height: 430px;
    padding: 22px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

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