:root {
  --brown: #6f1f17;
  --brown-2: #8f2f18;
  --orange: #e9a515;
  --gold: #d99b2b;
  --cream: #f7f1e7;
  --paper: #fffdf8;
  --ink: #211d1a;
  --muted: #716962;
  --line: rgba(33, 29, 26, .13);
  --shadow: 0 18px 50px rgba(53, 29, 16, .12);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Montserrat, Arial, sans-serif;
  line-height: 1.7
}

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: auto
}

.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase
}

.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 18px
}

.topbar a {
  opacity: .9
}

.topbar-social {
  margin-left: auto
}

.topbar-social+.topbar-social {
  margin-left: -8px
}

.header {
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, .42), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, .15)
}

.nav {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.brand img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, .25));
  margin-top: 24px
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase
}

.nav-links a {
  transition: .2s
}

.nav-links a:hover {
  color: #f6bd36
}

.nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 999px
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 28px
}

.hero {
  min-height: 760px;
  position: relative;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 70% 45%, rgba(233, 165, 21, .24), transparent 30%), linear-gradient(120deg, #231d19 0%, #4d2018 48%, #8d3b18 100%);
  overflow: hidden
}

.hero:after {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(233, 165, 21, .25);
  border-radius: 50%;
  right: -120px;
  top: 100px;
  box-shadow: 0 0 0 80px rgba(233, 165, 21, .025), 0 0 0 160px rgba(233, 165, 21, .02)
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25, 18, 15, .78), rgba(25, 18, 15, .18))
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 70px;
  color: #fff;
  max-width: 790px
}

.eyebrow {
  font-size: 11px;
  letter-spacing: .24em;
  font-weight: 700;
  color: var(--orange);
  margin: 0 0 15px
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(60px, 8vw, 100px);
  line-height: .85;
  margin: 0 0 30px;
  font-weight: 600;
  letter-spacing: -.035em
}

.hero h1 span {
  color: #f1b52c
}

.hero-copy {
  font-size: 16px;
  max-width: 620px;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 35px
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s, background .2s
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .16)
}

.btn-primary {
  background: var(--orange);
  color: var(--ink)
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, .55);
  color: #fff
}

.btn-dark {
  background: var(--ink);
  color: #fff
}

.btn-light {
  background: #fff;
  color: var(--brown)
}

.hero-location {
  margin-top: 40px;
  font-size: 12px;
  color: rgba(255, 255, 255, .7)
}

.hero-location span {
  color: var(--orange);
  font-size: 18px;
  margin-right: 7px
}

.section {
  padding: 110px 0
}

.intro {
  background: var(--cream)
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: start
}

.section-heading h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 6vw, 72px);
  line-height: .9;
  margin: 0;
  letter-spacing: -.02em;
  font-weight: 600
}

.section-heading h2 em {
  color: var(--brown-2);
  font-style: italic
}

.intro-text {
  font-size: 16px;
  color: var(--muted);
  max-width: 580px
}

.intro-text strong {
  color: var(--ink)
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--brown-2);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 5px
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 75px
}

.values article {
  border-top: 1px solid var(--line);
  padding-top: 22px
}

.values span {
  font-size: 11px;
  color: var(--brown-2);
  font-weight: 700
}

.values h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  margin: 7px 0
}

.values p {
  font-size: 13px;
  color: var(--muted);
  margin: 0
}

.menu-section {
  background: #fff
}

.menu-head,
.gallery-head {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: end;
  margin-bottom: 45px
}

.menu-head>p,
.gallery-head>p {
  max-width: 470px;
  color: var(--muted);
  font-size: 13px
}

.menu-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
  min-height: 420px;
  box-shadow: var(--shadow);
  overflow: hidden
}

.menu-card-art {
  position: relative;
  background: linear-gradient(135deg, #5e1e15, #9d431a);
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden
}

.menu-card-art:before,
.menu-card-art:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(242, 181, 44, .4);
  border-radius: 50%;
  width: 340px;
  height: 340px
}

.menu-card-art:after {
  width: 250px;
  height: 250px
}

.plate {
  width: 205px;
  height: 205px;
  border-radius: 50%;
  background: #efe8d9;
  border: 12px solid rgba(255, 255, 255, .7);
  box-shadow: 0 25px 35px rgba(0, 0, 0, .28);
  position: relative
}

.plate:after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  background: var(--orange);
  border-radius: 50%;
  top: 35px;
  left: 35px;
  box-shadow: 35px 10px 0 -12px #6f1f17, -25px 35px 0 -15px #5c2719
}

.menu-script {
  position: absolute;
  bottom: 28px;
  right: 30px;
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  font-size: 32px;
  font-style: italic
}

.menu-card-copy {
  padding: 65px
}

.tag {
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--brown-2);
  font-weight: 700
}

.menu-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 55px;
  line-height: 1;
  margin: 10px 0
}

.menu-card-copy p {
  color: var(--muted);
  max-width: 420px
}

.menu-card-copy small {
  display: block;
  color: #91867e;
  font-size: 10px;
  margin-top: 18px
}

.seo-keywords {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 30px
}

.seo-keywords span {
  border: 1px solid var(--line);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 10px;
  color: var(--muted)
}

.gallery {
  background: var(--ink);
  color: #fff
}

.gallery .section-heading h2 {
  color: #fff
}

.gallery-head>p {
  color: rgba(255, 255, 255, .65)
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 210px;
  gap: 12px
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #4c211a, #9b4b1b);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: rgba(255, 255, 255, .02)
}

.gallery-item:nth-child(3) {
  background: linear-gradient(135deg, #8d3d18, #c18b21)
}

.gallery-item:nth-child(4) {
  background: linear-gradient(135deg, #2b2723, #66574b)
}

.gallery-item:nth-child(5) {
  background: linear-gradient(135deg, #6d2418, #9f6d2d)
}

.gallery-item:nth-child(6) {
  background: linear-gradient(135deg, #38221b, #8b301a)
}

.gallery-item.large {
  grid-row: span 2
}

.gallery-item:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 198, 72, .28), transparent 25%)
}

.gallery-item span,
.gallery-item small {
  position: relative;
  z-index: 1
}

.gallery-item span {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px
}

.gallery-item small {
  display: block;
  font-family: Montserrat;
  font-size: 9px;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .55);
  margin-left: auto
}

.placeholder {
  cursor: default
}

.location {
  background: var(--cream)
}

.location-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
  align-items: stretch
}

.location-lead {
  color: var(--muted);
  max-width: 450px
}

.address {
  display: flex;
  gap: 18px;
  margin: 27px 0
}

.address>span {
  font-size: 24px;
  color: var(--brown-2)
}

.address strong {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em
}

.address p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px
}

.address a {
  color: var(--brown-2);
  font-weight: 700
}

.map-wrap {
  height: 470px;
  box-shadow: var(--shadow);
  background: #ddd;
  overflow: hidden
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(.8) contrast(.95)
}

.google-review {
  background: linear-gradient(135deg, #fff7ed, #f3eadf)
}

.google-review-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px
}

.google-review-copy {
  max-width: 520px
}

.google-review-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px
}

.social {
  background: #fff
}

.social-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px
}

.social-inner p:not(.eyebrow) {
  color: var(--muted);
  font-size: 13px
}

.social-buttons {
  display: flex;
  gap: 12px
}

.social-buttons a {
  padding: 16px 22px;
  border: 1px solid var(--line);
  min-width: 150px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase
}

.social-buttons a:hover {
  border-color: var(--brown-2);
  color: var(--brown-2)
}

.cta {
  background: var(--brown);
  color: #fff;
  padding: 75px 0
}

.cta .eyebrow {
  color: #f4b735
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px
}

.cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  line-height: 1;
  margin: 0
}

.cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, .72);
  font-size: 13px
}

footer {
  background: #171513;
  color: #fff;
  padding: 65px 0 20px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr 1fr;
  gap: 50px
}

.footer-logo {
  width: 105px;
  height: 105px;
  object-fit: contain;
  margin-bottom: 10px
}

.footer-grid>div:first-child p {
  font-size: 12px;
  color: #a8a09a;
  max-width: 260px
}

.footer-grid h4 {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 12px 0 18px
}

.footer-grid a,
.footer-grid span {
  display: block;
  font-size: 11px;
  color: #aaa29c;
  margin: 8px 0
}

.footer-grid a:hover {
  color: #fff
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, .09);
  margin-top: 45px;
  padding-top: 20px;
  font-size: 9px;
  color: #716a64;
  letter-spacing: .04em
}

.floating-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1da851;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 25px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
  font-weight: 700
}

.floating-wa:hover {
  transform: translateY(-2px)
}

@media(max-width:850px) {
  .topbar-social {
    display: none
  }

  .nav {
    height: 76px
  }

  .brand img {
    width: 78px;
    height: 78px;
    margin-top: 16px
  }

  .menu-toggle {
    display: block
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #211d1a;
    padding: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .2)
  }

  .nav-links.open {
    display: flex
  }

  .nav-links a {
    padding: 12px 10px
  }

  .nav-cta {
    text-align: center;
    margin-top: 5px
  }

  .hero {
    min-height: 720px
  }

  .hero h1 {
    font-size: 64px
  }

  .intro-grid,
  .location-grid,
  .google-review-inner {
    grid-template-columns: 1fr;
    gap: 35px
  }

  .values {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 50px
  }

  .menu-head,
  .gallery-head,
  .social-inner,
  .cta-inner {
    display: block
  }

  .menu-head>p,
  .gallery-head>p {
    margin-top: 25px
  }

  .menu-card {
    grid-template-columns: 1fr
  }

  .menu-card-art {
    min-height: 300px
  }

  .menu-card-copy {
    padding: 40px 30px
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px
  }

  .gallery-item.large {
    grid-row: span 1
  }

  .google-review-inner {
    display: block
  }

  .social-buttons {
    margin-top: 25px;
    flex-wrap: wrap
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .cta .btn {
    margin-top: 25px
  }
}

@media(max-width:520px) {
  .container {
    width: min(100% - 28px, 1160px)
  }

  .topbar-inner {
    font-size: 9px;
    gap: 8px
  }

  .hero {
    min-height: 670px
  }

  .hero h1 {
    font-size: 54px
  }

  .hero-copy {
    font-size: 14px
  }

  .section {
    padding: 75px 0
  }

  .section-heading h2 {
    font-size: 52px
  }

  .gallery-grid {
    grid-template-columns: 1fr
  }

  .gallery-item {
    min-height: 200px
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .social-buttons a {
    width: 100%
  }
}