:root {
  --espresso: #17110d;
  --coffee: #3a2418;
  --cocoa: #65422d;
  --cream: #fff8ec;
  --milk: #f2e2ca;
  --linen: #fbf2e4;
  --gold: #c99b47;
  --olive: #697057;
  --ruby: #7f2d2a;
  --ink-soft: rgba(23, 17, 13, 0.72);
  --line: rgba(58, 36, 24, 0.16);
  --shadow: 0 28px 80px rgba(23, 17, 13, 0.18);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", "Segoe UI", system-ui, sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--espresso);
  background: var(--cream);
  font-family: var(--body);
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--cream);
  background: var(--espresso);
  transform: translateY(-140%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 64px);
  color: var(--cream);
  background: #17110d;
  border-bottom: 1px solid rgba(255, 248, 236, 0.18);
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  color: var(--cream);
  background: #17110d;
  border-bottom: 1px solid rgba(255, 248, 236, 0.18);
}

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

.brand-logo {
  width: clamp(118px, 18vw, 178px);
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.35));
  transition: filter 220ms ease, transform 220ms ease;
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.site-header .brand-copy {
  display: none;
}

.brand strong {
  font-family: var(--display);
  font-size: 1.22rem;
  line-height: 1;
}

.brand small {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.main-nav {
  display: none;
}

.menu-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 200ms ease;
}

body.menu-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

body.menu-open .main-nav {
  position: fixed;
  inset: 73px 0 0;
  display: grid;
  align-content: start;
  gap: 0;
  padding: 18px;
  color: var(--cream);
  background: #17110d;
}

body.menu-open .main-nav a {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 248, 236, 0.16);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  padding: 104px 18px 28px;
  color: var(--cream);
  background: var(--espresso);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08);
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(23, 17, 13, 0.28), rgba(23, 17, 13, 0.86)),
    linear-gradient(110deg, rgba(23, 17, 13, 0.88), rgba(23, 17, 13, 0.24) 62%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 980px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
blockquote {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.35rem, 14vw, 9.4rem);
  line-height: 0.82;
}

h2 {
  font-size: clamp(2.55rem, 10vw, 6.4rem);
  line-height: 0.88;
}

h3 {
  font-size: clamp(1.45rem, 6vw, 2.2rem);
  line-height: 1;
}

.hero-text {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 248, 236, 0.82);
  font-size: clamp(1rem, 4vw, 1.25rem);
  line-height: 1.6;
}

.hero-actions,
.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn-icon {
  display: inline-grid;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  place-items: center;
}

.btn-icon.text-icon {
  font-family: "Segoe UI Symbol", "Arial Unicode MS", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
}

.btn-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--espresso);
  background: var(--gold);
  border-color: var(--gold);
}

.btn-outline {
  color: var(--espresso);
  background: transparent;
  border-color: rgba(23, 17, 13, 0.28);
}

.btn-outline.light {
  color: var(--cream);
  border-color: rgba(255, 248, 236, 0.56);
}

.hero-panel {
  position: relative;
  z-index: 1;
  align-self: end;
  margin-top: 44px;
  padding: 18px;
  border: 1px solid rgba(255, 248, 236, 0.24);
  background: rgba(23, 17, 13, 0.38);
  backdrop-filter: blur(14px);
}

.hero-panel p,
.hero-panel span {
  margin: 0;
  color: rgba(255, 248, 236, 0.72);
  line-height: 1.55;
}

.hero-panel strong {
  display: block;
  margin: 8px 0;
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1;
}

.intro-band {
  overflow: hidden;
  color: var(--cream);
  background: var(--coffee);
  border-top: 1px solid rgba(255, 248, 236, 0.18);
  border-bottom: 1px solid rgba(255, 248, 236, 0.18);
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee span {
  padding: 18px 26px;
  color: rgba(255, 248, 236, 0.82);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-pad {
  padding: clamp(64px, 14vw, 136px) 18px;
}

.about,
.proof,
.contact-layout {
  display: grid;
  gap: 34px;
}

.section-label span {
  display: block;
  max-width: 240px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.about-copy p,
.signature-card p,
.service-card p,
.menu-item p,
.instagram-feed p,
.contact-details p,
.site-footer p {
  color: var(--ink-soft);
  line-height: 1.75;
}

.about-copy p {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: 1.02rem;
}

.signature {
  display: grid;
  gap: 0;
  padding-top: 0;
  background:
    linear-gradient(90deg, rgba(127, 45, 42, 0.08), transparent 42%),
    var(--linen);
}

.signature-image img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.signature-card {
  padding: 34px 22px;
  background: var(--espresso);
  color: var(--cream);
}

.signature-card p {
  color: rgba(255, 248, 236, 0.72);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  gap: 14px;
}

.service-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.38);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.service-card:hover {
  border-color: rgba(201, 155, 71, 0.55);
  box-shadow: 0 18px 50px rgba(23, 17, 13, 0.1);
  transform: translateY(-4px);
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--cream);
  background: var(--coffee);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.menu {
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(105, 112, 87, 0.24), transparent 42%),
    var(--espresso);
}

.menu .section-heading h2 {
  max-width: 920px;
}

.menu-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.menu-tabs button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 10px 16px;
  color: rgba(255, 248, 236, 0.82);
  border: 1px solid rgba(255, 248, 236, 0.2);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-tabs button.active {
  color: var(--espresso);
  background: var(--gold);
  border-color: var(--gold);
}

.menu-board {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.menu-item {
  display: grid;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 248, 236, 0.18);
}

.menu-item p {
  margin: 8px 0 0;
  color: rgba(255, 248, 236, 0.68);
}

.menu-item span {
  color: var(--gold);
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  gap: 14px;
}

.gallery-tile {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  background: var(--milk);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.gallery-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(23, 17, 13, 0.72));
}

.gallery-tile:hover img {
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.05);
}

.gallery-tile figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  color: var(--cream);
  font-family: var(--display);
  font-size: 1.55rem;
}

.proof {
  color: var(--cream);
  background:
    linear-gradient(120deg, rgba(127, 45, 42, 0.42), rgba(23, 17, 13, 0.18)),
    var(--coffee);
}

blockquote {
  font-size: clamp(2.3rem, 9vw, 5.8rem);
  line-height: 0.95;
}

.instagram-feed {
  align-self: end;
  padding: 24px;
  border: 1px solid rgba(255, 248, 236, 0.24);
  background: rgba(255, 248, 236, 0.08);
}

.instagram-feed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.instagram-feed-head span {
  color: var(--gold);
  font-weight: 900;
}

.instagram-feed-head a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 14px;
  color: var(--espresso);
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.instagram-grid a {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: rgba(255, 248, 236, 0.12);
}

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

.instagram-grid a:hover img {
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.06);
}

.instagram-feed p {
  margin: 16px 0 0;
  color: rgba(255, 248, 236, 0.76);
}

.contact {
  background: var(--linen);
}

.contact-details {
  display: grid;
  gap: 12px;
}

.contact-details article {
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

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

.contact-details p {
  margin: 8px 0 0;
  font-size: 1.05rem;
}

.map-card {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: saturate(0.76) contrast(1.02);
}

.site-footer {
  display: grid;
  gap: 28px;
  padding: 38px 18px;
  color: var(--cream);
  background: var(--espresso);
}

.site-footer p {
  max-width: 390px;
  color: rgba(255, 248, 236, 0.68);
}

.site-footer .brand-logo {
  width: min(220px, 68vw);
}

.site-footer .brand-copy {
  display: grid;
}

.site-footer nav {
  display: grid;
  gap: 12px;
  align-content: start;
}

.site-footer nav a {
  color: rgba(255, 248, 236, 0.78);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

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

@media (min-width: 720px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 34px;
    padding: 120px clamp(28px, 5vw, 72px) 48px;
  }

  .hero-actions,
  .contact-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .section-pad {
    padding-right: clamp(28px, 5vw, 72px);
    padding-left: clamp(28px, 5vw, 72px);
  }

  .about {
    grid-template-columns: 0.34fr minmax(0, 1fr);
  }

  .signature {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
    align-items: stretch;
  }

  .signature-card {
    display: grid;
    align-content: center;
    padding: clamp(42px, 6vw, 82px);
  }

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

  .menu-item {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 260px;
  }

  .gallery-tile,
  .gallery-tile img {
    min-height: 0;
    height: 100%;
  }

  .gallery-tile.large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-tile.wide {
    grid-column: span 2;
  }

  .gallery-tile.tall {
    grid-row: span 2;
  }

  .proof,
  .contact-layout,
  .site-footer {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    align-items: start;
  }
}

@media (min-width: 980px) {
  .site-header {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .site-header.is-scrolled {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.4vw, 34px);
  }

  .main-nav a {
    position: relative;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .main-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    content: "";
    background: currentColor;
    opacity: 0;
    transform: scaleX(0.45);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav a:hover::after {
    opacity: 1;
    transform: scaleX(1);
  }

  h1 {
    max-width: 10ch;
  }

  .hero-panel {
    margin-top: 0;
  }

  .section-heading {
    grid-template-columns: 0.34fr minmax(0, 1fr);
    gap: 42px;
  }

  .section-heading h2 {
    max-width: 1000px;
  }

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

  .service-card {
    min-height: 360px;
  }
}

.site-header,
.site-header.is-scrolled,
body.menu-open .site-header,
body.menu-open .main-nav {
  background-color: #17110d !important;
}
