:root {
  --ink: #111111;
  --paper: #fafafa;
  --white: #ffffff;
  --muted: #6d6d68;
  --line: #d9d9d4;
  --soft: #f0f0ee;
  --accent: #c7a14a;
  --accent-dark: #85671d;
  --shadow: 0 24px 80px rgba(17, 17, 17, 0.12);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 4px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  background: rgba(8, 8, 8, 0.92);
  border-bottom: 1px solid rgba(199, 161, 74, 0.24);
  color: var(--white);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-solid,
.site-header.header-light {
  background: rgba(8, 8, 8, 0.96);
  color: var(--white);
  border-color: rgba(199, 161, 74, 0.28);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1160px, calc(100% - 32px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

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

.brand-logo {
  width: 92px;
  height: 64px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  font-size: 0;
}

.nav-toggle::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 12px;
  display: block;
  height: 2px;
  background: currentColor;
  box-shadow: 0 8px currentColor, 0 16px currentColor;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.45rem;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.82);
}

.main-nav a {
  position: relative;
  padding: 0.45rem 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button.button-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.button.button-ghost {
  background: transparent;
  color: inherit;
}

.hero {
  min-height: 92vh;
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.38), rgba(17, 17, 17, 0.78)),
    url("team-counter.jpg") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22vh;
  background: linear-gradient(180deg, transparent, rgba(251, 251, 248, 0.08));
  z-index: -1;
}

.hero-inner,
.section-inner,
.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  padding: 10rem 0 7rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #efcf72;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 930px;
  font-size: clamp(3.6rem, 11vw, 8.5rem);
}

h2 {
  max-width: 850px;
  font-size: clamp(2.7rem, 6vw, 5.9rem);
}

h3 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.lead {
  max-width: 680px;
  margin: 1.5rem 0 0;
  color: color-mix(in srgb, currentColor 78%, transparent);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

main {
  overflow: hidden;
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.section-tight {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.intro-grid,
.feature-grid,
.contact-grid,
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.measure {
  max-width: 640px;
}

.large-copy {
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 4.4rem);
  line-height: 1.05;
}

.text-muted {
  color: var(--muted);
}

.image-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.image-panel:hover img {
  transform: scale(1.035);
}

.offerings {
  background: var(--ink);
  color: var(--white);
}

.offering-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 3rem;
  background: rgba(255, 255, 255, 0.18);
}

.offering {
  min-height: 320px;
  padding: clamp(1.5rem, 3vw, 2.3rem);
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.offering span,
.stat span {
  color: #efcf72;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offering p {
  color: rgba(255, 255, 255, 0.72);
}

.split-band {
  background: var(--soft);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 3rem;
  background: var(--line);
}

.stat {
  padding: 2rem;
  background: var(--paper);
}

.stat strong {
  display: block;
  margin-top: 0.8rem;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.95;
}

.page-hero {
  padding: 12rem 0 6rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.page-hero .lead {
  color: var(--muted);
}

.menu-list {
  display: grid;
  gap: 1px;
  margin-top: 3rem;
  background: var(--line);
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: baseline;
  padding: 1.8rem 0;
  background: var(--paper);
}

.menu-item p {
  max-width: 640px;
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.menu-item .price-note {
  color: var(--accent-dark);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-stack {
  display: grid;
  gap: 1rem;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--white);
}

.map-panel {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.contact-list {
  display: grid;
  gap: 1.2rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.instagram-strip {
  background: var(--soft);
}

.instagram-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.instagram-grid a {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 8px;
  background: var(--ink);
}

.instagram-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease, transform 500ms ease;
}

.instagram-grid a:hover img {
  opacity: 0.78;
  transform: scale(1.04);
}

.site-footer {
  background: #080808;
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: grid;
  gap: 3rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 2rem;
  align-items: end;
}

.footer-logo {
  width: 150px;
  height: 84px;
  object-fit: contain;
}

.footer-nav,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 84px;
    display: grid;
    gap: 0;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 0.9rem;
  }

  .hero-inner {
    padding-bottom: 5rem;
  }

  .intro-grid,
  .feature-grid,
  .contact-grid,
  .about-grid,
  .footer-top,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid .image-panel img {
    min-height: 300px;
    max-height: 420px;
  }

  .offering-grid,
  .stats,
  .instagram-grid {
    grid-template-columns: 1fr;
  }

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

  .menu-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

@media (max-width: 560px) {
  .nav-shell,
  .hero-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 24px, 1160px);
  }

  .brand-logo {
    width: 76px;
    height: 54px;
  }

  .hero {
    min-height: 88vh;
  }

  .feature-grid .image-panel img {
    min-height: 240px;
    max-height: 320px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.35rem, 14vw, 3.6rem);
  }

  .hero-actions,
  .section-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}
