
:root {
  --bg: #f7f4ef;
  --paper: #ffffff;
  --ink: #111111;
  --muted: #64615d;
  --line: #e5ded4;
  --soft: #efe8dd;
  --soft-blue: #dceff1;
  --dark: #0f1113;
  --dark-2: #1c1f22;
  --accent: #9b734f;
  --accent-dark: #6e4f35;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(17, 17, 17, .12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent-dark); }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}
.narrow { width: min(calc(100% - 40px), 780px); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,244,239,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17,17,17,.08);
}
.nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 50%;
}
.primary-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: flex-end;
  font-size: 14px;
  letter-spacing: .02em;
}
.primary-nav a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  color: var(--dark);
}
.primary-nav a:hover,
.primary-nav a.active,
.primary-nav a[aria-current="page"] {
  border-bottom-color: var(--ink);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 12px;
  padding: 11px;
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.hero,
.page-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.35), rgba(0,0,0,.1));
}
.hero-content {
  position: relative;
  color: #fff;
  max-width: 760px;
  padding: 120px 0;
}
.hero-content.center { text-align: center; margin-inline: auto; }
.hero h1,
.page-hero h1 {
  margin: 0 0 18px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .96;
  letter-spacing: -.04em;
}
.hero p,
.page-hero p { font-size: clamp(18px, 2vw, 22px); max-width: 740px; }
.kicker {
  margin: 0 0 12px;
  font-size: 13px !important;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
  color: var(--accent);
}
.hero .kicker { color: #f3d5b9; }
.hero-actions,
.inline-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--paper);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 35px rgba(0,0,0,.14);
  color: var(--ink);
}
.button-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.button-light:hover { background: #fff; color: var(--ink); }
.button-dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.button-dark:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }
.text-link {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.section { padding: 88px 0; }
.section-muted { background: var(--soft); }
.section-dark { background: var(--dark); color: #fff; }
.section-dark a { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}
.welcome-section h2,
.section-heading h2,
.cta-card h2,
.contact-preview h2,
.section h2 {
  margin: 0 0 16px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -.03em;
}
.welcome-section p { color: var(--muted); }
.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading p:last-child { color: var(--muted); margin: 0; }
.section-dark .section-heading p:last-child { color: rgba(255,255,255,.75); }

.image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.image-pair img,
.gallery img,
.masonry-gallery img,
.hero-image-card img,
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.image-pair img:first-child { background: #fff; object-fit: contain; padding: 26px; }
.image-pair img:nth-child(2) { transform: translateY(40px); }

.gallery { display: grid; gap: 18px; }
.gallery-4 { grid-template-columns: repeat(4, 1fr); }
.gallery img { min-height: 260px; }
.masonry-gallery {
  columns: 4 240px;
  column-gap: 18px;
}
.masonry-gallery img {
  display: inline-block;
  margin: 0 0 18px;
  break-inside: avoid;
  min-height: auto;
}

.testimonial-band { background: var(--dark-2); color: #fff; }
.testimonial-card {
  max-width: 820px;
  text-align: center;
}
.stars { color: #f6d68a; font-size: 24px; letter-spacing: .2em; margin-bottom: 20px; }
blockquote {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.14;
}
.testimonial-card p { margin-top: 18px; color: rgba(255,255,255,.75); }

.cards { display: grid; gap: 22px; }
.two-cards { grid-template-columns: 1fr 1fr; }
.service-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-card img { height: 310px; border-radius: 0; box-shadow: none; }
.service-card div { padding: 26px; }
.service-card h3,
.info-cards h3,
.menu-card h3,
.site-footer h2,
.site-footer h3 {
  margin: 0 0 10px;
  font-family: Georgia, 'Times New Roman', serif;
}
.service-card p { margin: 0; color: var(--muted); }

.page-hero {
  min-height: auto;
  background: var(--bg);
  color: var(--ink);
  padding: 88px 0;
}
.page-hero-centered { text-align: center; }
.page-hero-centered p { margin-inline: auto; color: var(--muted); }
.light-hero { background: var(--bg); }
.hero-image-card img { max-height: 520px; }
.night-hero { background: linear-gradient(135deg, #d8f5ff, #f6fbff); }
.contact-hero .form-card { margin-top: 26px; }

.stats-section { padding: 36px 0 70px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stat-card {
  padding: 28px;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stat-card strong {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
}
.stat-card span { color: var(--muted); }

.menu-image-wrap,
.menu-image-grid {
  background: var(--paper);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.menu-image-wrap { max-width: 1080px; margin-inline: auto; }
.menu-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.menu-image {
  width: 100%;
  border-radius: calc(var(--radius) - 8px);
  box-shadow: none;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}
.two-menu-columns { grid-template-columns: 1fr 1fr; }
.menu-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 16px 40px rgba(17,17,17,.06);
}
.menu-card h3 {
  font-size: 28px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.menu-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-card li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.menu-card li:last-child { border-bottom: 0; }
.menu-card strong { display: block; line-height: 1.25; }
.menu-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.menu-card li > span { font-weight: 700; white-space: nowrap; color: var(--accent-dark); }

.cta-section { padding-top: 0; }
.cta-card {
  text-align: center;
  background: var(--paper);
  border-radius: var(--radius);
  padding: clamp(34px, 6vw, 70px);
  box-shadow: var(--shadow);
}
.cta-card p { color: var(--muted); max-width: 600px; margin: 0 auto 24px; }

.form-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  color: var(--ink);
}
.form-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 700;
}
.form-card input,
.form-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  background: #fbfaf8;
  color: var(--ink);
}
.form-card input:focus,
.form-card textarea:focus {
  outline: 2px solid rgba(155, 115, 79, .35);
  border-color: var(--accent);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-stack { display: grid; gap: 14px; margin-top: 22px; }
.contact-stack p { margin: 0; }
.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.info-cards article {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.info-cards p { margin: 0; color: var(--muted); }

.site-footer {
  background: #0d0d0d;
  color: #fff;
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 34px;
}
.site-footer p { color: rgba(255,255,255,.72); margin: 0; }
.site-footer a { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.social-links { display: flex; gap: 10px; margin: 14px 0 18px; }
.social-links a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
}
.social-links svg { width: 19px; height: 19px; fill: currentColor; }
.copyright {
  border-top: 1px solid rgba(255,255,255,.16);
  margin-top: 42px;
  padding-top: 22px;
  color: rgba(255,255,255,.55);
  font-size: 14px;
}

.hero-events { min-height: calc(100vh - 92px); }
.hero-events .hero-overlay { background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.55)); }

@media (max-width: 1060px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-wrap { min-height: 78px; }
  .brand img { width: 58px; height: 58px; }
  .menu-toggle { display: block; }
  .primary-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    background: var(--paper);
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .primary-nav a:last-child { border-bottom: 0; }
  .hero, .page-hero { min-height: auto; }
  .hero-content { padding: 96px 0; }
  .split-grid,
  .two-cards,
  .stats-grid,
  .menu-image-grid,
  .two-menu-columns,
  .info-cards { grid-template-columns: 1fr; }
  .image-pair img:nth-child(2) { transform: translateY(0); }
  .section { padding: 68px 0; }
}
@media (max-width: 620px) {
  .container,
  .narrow { width: min(calc(100% - 28px), var(--max)); }
  .hero-content { padding: 74px 0; }
  .hero h1,
  .page-hero h1 { font-size: clamp(38px, 14vw, 56px); }
  .menu-grid,
  .gallery-4,
  .footer-grid,
  .form-row { grid-template-columns: 1fr; }
  .image-pair { grid-template-columns: 1fr; }
  .gallery img { min-height: 220px; }
  .menu-card { padding: 20px; }
  .menu-card li { grid-template-columns: 1fr; gap: 4px; }
  .site-footer { padding-top: 48px; }
}
