:root {
  --bg: #111111;
  --surface: rgba(22, 22, 22, 0.82);
  --surface-strong: #181818;
  --surface-dark: #050505;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.84);
  --line: rgba(214, 175, 79, 0.18);
  --accent: #d6af4f;
  --accent-deep: #a57f26;
  --accent-soft: rgba(214, 175, 79, 0.16);
  --berry: #f0d78a;
  --sage: #8e7a45;
  --gold: #d6af4f;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(214, 175, 79, 0.14), transparent 22%),
    radial-gradient(circle at right 18%, rgba(214, 175, 79, 0.1), transparent 18%),
    linear-gradient(180deg, #090909 0%, #111111 52%, #161616 100%);
}

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

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 16px auto 88px;
}

.topbar,
.nav,
.trust-strip,
.about-panel,
.contact,
.footer {
  backdrop-filter: blur(16px);
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  border: 1px solid rgba(214, 175, 79, 0.18);
  border-radius: 18px;
  background: rgba(5, 5, 5, 0.96);
  color: #f6edda;
  font-size: 0.92rem;
}

.topbar p {
  margin: 0;
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 700;
}

.topbar-links a:last-child {
  color: var(--gold);
}

.nav {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(214, 175, 79, 0.18);
  border-radius: 24px;
  background: rgba(18, 18, 18, 0.9);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f0d78a, var(--accent-deep));
  color: #111111;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-copy strong,
.section-heading h2,
.hero h1,
.about-panel h2,
.contact h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.01em;
  color: var(--gold);
}

.brand-copy strong {
  font-size: 1.35rem;
}

.brand-copy span {
  color: var(--text);
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
}

.nav-links a:not(.button) {
  position: relative;
  padding-bottom: 4px;
}

.nav-links a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-solid {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: white;
}

.button-ghost {
  border-color: rgba(214, 175, 79, 0.24);
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  display: block;
  margin-top: 20px;
  padding: 0;
  min-height: auto;
}

.hero-banner {
  margin-top: 24px;
}

.hero-banner-frame,
.hero-copy,
.services-panel,
.about-panel,
.contact-copy,
.contact-form,
.footer {
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-banner-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(214, 175, 79, 0.18);
  box-shadow: var(--shadow);
  background: #0a0a0a;
}

.hero-banner-photo {
  width: 100%;
  height: min(62vw, 720px);
  min-height: 320px;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}

.hero-copy {
  margin-top: 20px;
  padding: 36px;
  background:
    linear-gradient(180deg, rgba(20, 20, 20, 0.96), rgba(15, 15, 15, 0.9)),
    linear-gradient(135deg, rgba(214, 175, 79, 0.12), transparent 40%);
}

.menu-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  margin-top: 24px;
}

.menu-hero-copy,
.menu-hero-card,
.menu-card {
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.menu-hero-copy {
  padding: 36px;
  background:
    linear-gradient(180deg, rgba(20, 20, 20, 0.96), rgba(15, 15, 15, 0.9)),
    linear-gradient(135deg, rgba(214, 175, 79, 0.12), transparent 40%);
}

.menu-hero-copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.92;
  color: var(--gold);
}

.menu-hero-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(18, 18, 18, 0.95)),
    radial-gradient(circle at top right, rgba(214, 175, 79, 0.14), transparent 26%);
}

.menu-hero-card strong {
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  color: var(--gold);
}

.menu-hero-card p,
.menu-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}

.menu-grid {
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.menu-overview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.menu-summary-card {
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 24px;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(25, 25, 25, 0.96), rgba(17, 17, 17, 0.94)),
    linear-gradient(135deg, rgba(214, 175, 79, 0.12), transparent);
}

.menu-summary-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(240, 215, 138, 0.9);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.menu-summary-card strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  line-height: 1.08;
  color: var(--gold);
}

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

.menu-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(214, 175, 79, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
}

.menu-card h3 {
  margin: 0 0 10px;
  font-size: 1.6rem;
}

.gallery-section-heading {
  margin-bottom: 14px;
}

.gallery-section-heading h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 0.96;
  color: var(--gold);
}

.gallery-masonry {
  columns: 3 260px;
  column-gap: 16px;
}

.gallery-photo-card {
  break-inside: avoid;
  margin: 0 0 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.gallery-photo-card img {
  width: 100%;
  height: auto;
  display: block;
}

.menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.menu-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.6;
}

.menu-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
}

.eyebrow,
.card-label {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.3rem, 5vw, 6rem);
  line-height: 0.9;
}

.hero-text,
.section-heading p,
.about-panel p,
.contact-copy p,
.service-card p {
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
}

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

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.hero-points div,
.visual-grid article,
.temperature-card,
.services-panel,
.contact-form,
.trust-strip div,
.coverage-grid span {
  background: var(--surface);
}

.hero-points div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.hero-points strong,
.temperature-card strong,
.service-card h3 {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
}

.hero-points span {
  color: var(--text);
  font-size: 0.92rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.trust-strip div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
}

.trust-strip strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  color: var(--gold);
}

.trust-strip span {
  color: var(--text);
}

.section {
  margin-top: 24px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 16px;
}

.section-heading h2,
.about-panel h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4.1rem);
  line-height: 0.92;
}

.section-heading.narrow {
  max-width: 560px;
}

.reviews-heading {
  color: var(--gold);
}

.services-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background:
    linear-gradient(180deg, rgba(25, 25, 25, 0.96), rgba(17, 17, 17, 0.94)),
    linear-gradient(135deg, rgba(214, 175, 79, 0.12), transparent);
}

.services-panel h3 {
  margin: 0 0 10px;
  font-size: 2rem;
  color: var(--text);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin-top: 18px;
}

.services-list span {
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  font-size: 1.45rem;
}

.services-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--text);
  font-weight: 800;
}

.services-panel .card-label {
  color: var(--text);
}

.about-panel {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(22, 22, 22, 0.96), rgba(14, 14, 14, 0.9)),
    radial-gradient(circle at bottom left, rgba(214, 175, 79, 0.1), transparent 28%);
}

.checklist {
  display: grid;
  gap: 12px;
}

.checklist div {
  position: relative;
  padding: 18px 18px 18px 54px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
}

.story-image-wrap {
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(214, 175, 79, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.story-image {
  width: min(100%, 420px);
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.checklist div::before {
  content: "•";
  position: absolute;
  left: 18px;
  top: 12px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(214, 175, 79, 0.16);
  color: var(--gold);
  font-size: 1rem;
  font-weight: 800;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.coverage-grid span {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  box-shadow: var(--shadow);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  text-align: center;
}

.review-grid span {
  min-height: 128px;
}

.review-image-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.review-image-card img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(1.04) contrast(1.06) saturate(1.02);
}

@media (min-width: 761px) {
  .review-grid {
    grid-template-columns: 1fr;
    max-width: 900px;
  }

  .review-grid span {
    min-height: auto;
  }
}

.contact {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.contact-copy,
.contact-form,
.desktop-contact-card,
.footer {
  padding: 28px;
}

.contact-copy {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(18, 18, 18, 0.95)),
    radial-gradient(circle at top right, rgba(214, 175, 79, 0.14), transparent 26%);
  color: white;
}

.contact-copy .eyebrow,
.contact-copy p,
.contact-copy span,
.contact-copy a {
  color: var(--text);
}

.contact-copy h2 {
  color: var(--gold);
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.desktop-contact-card {
  display: grid;
  align-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(20, 20, 20, 0.96), rgba(15, 15, 15, 0.9)),
    linear-gradient(135deg, rgba(214, 175, 79, 0.12), transparent 40%);
}

.desktop-contact-label {
  margin: 0;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.desktop-contact-card strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  color: var(--gold);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(214, 175, 79, 0.18);
  border-radius: 16px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(214, 175, 79, 0.22);
  border-color: rgba(214, 175, 79, 0.45);
}

.form-note {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 24px 0 0;
  background: rgba(5, 5, 5, 0.96);
  color: white;
}

.footer p {
  margin-bottom: 0;
  color: var(--text);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .menu-hero,
  .about-panel,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-points,
  .trust-strip,
  .menu-overview,
  .menu-grid,
  .coverage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-masonry {
    columns: 2 220px;
  }

  .services-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
    margin-bottom: 108px;
  }

  .topbar,
  .nav,
  .hero,
  .hero-copy,
  .hero-visual,
  .services-panel,
  .about-panel,
  .contact-copy,
  .contact-form,
  .footer {
    border-radius: 22px;
  }

  .topbar,
  .nav,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    gap: 14px;
    padding: 10px 12px;
    border-radius: 18px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 1.2rem;
  }

  .nav-links {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding-top: 4px;
  }

  .hero {
    padding: 0;
    min-height: auto;
  }

  .hero-copy {
    padding: 18px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .hero-points,
  .trust-strip,
  .menu-overview,
  .menu-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .section {
    margin-top: 18px;
  }

  .section-heading {
    margin-bottom: 16px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .hero-points {
    gap: 10px;
    margin-top: 22px;
  }

  .trust-strip,
  .menu-overview,
  .menu-grid,
  .contact,
  .checklist {
    gap: 12px;
  }

  .hero-points div,
  .trust-strip div,
  .services-panel,
  .menu-card,
  .contact-copy,
  .contact-form,
  .about-panel,
  .menu-summary-card {
    padding: 16px;
  }

  .review-grid span {
    min-height: 88px;
    padding: 12px;
    font-size: 1.35rem;
  }

  .review-image-card img {
    width: calc(100% + 8px);
    max-width: none;
    margin-left: -4px;
  }

  .services-panel,
  .menu-card {
    min-height: auto;
  }

  .services-list {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
  }

  .contact-links {
    margin-top: 18px;
    gap: 10px;
  }

  .contact-form {
    gap: 12px;
  }

  .desktop-contact-card {
    display: none;
  }

  .gallery-masonry {
    columns: 1;
  }

  .hero-banner-photo {
    min-height: 280px;
    height: 72vw;
    object-position: center 24%;
  }

  .section-heading h2,
  .about-panel h2,
  .contact h2,
  .menu-hero-copy h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .brand-copy strong {
    font-size: 1.1rem;
  }

  .brand-copy span,
  .topbar,
  .hero-text,
  .section-heading p,
  .about-panel p,
  .contact-copy p,
  .menu-card p,
  .menu-list li,
  .form-note,
  .services-list span {
    font-size: 0.94rem;
  }

  .nav-links a:not(.button),
  .button {
    font-size: 0.82rem;
  }

  .services-panel h3,
  .menu-card h3 {
    font-size: 1.35rem;
  }

  .services-list span {
    font-size: 1.2rem;
    line-height: 1.2;
  }

  .trust-strip strong {
    font-size: 1.7rem;
  }

  .menu-summary-card strong {
    font-size: 1.45rem;
  }

  .nav-links a {
    text-align: center;
  }

  .nav-links a:not(.button) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 8px;
    border: 1px solid rgba(214, 175, 79, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
  }

  .button {
    min-height: 40px;
    padding: 0 10px;
  }

  .nav-links a:not(.button)::after {
    display: none;
  }
}

@media (min-width: 761px) {
  .contact-form {
    display: none;
  }
}
