:root {
  --ink: #171414;
  --muted: #6d6560;
  --paper: #f8f4ee;
  --white: #fffaf4;
  --wine: #47204e;
  --plum: #2f1738;
  --tomato: #c75336;
  --sage: #557263;
  --gold: #c19a58;
  --line: rgba(23, 20, 20, 0.14);
  --shadow: 0 22px 55px rgba(38, 25, 20, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body::selection {
  background: var(--gold);
  color: var(--ink);
}

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 30;
  background: var(--white);
  padding: 0.75rem 1rem;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 72px;
  padding: 0 4vw;
  background: rgba(47, 23, 56, 0.95);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 250, 244, 0.14);
}

.brand img {
  width: 106px;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 1.3rem;
  font-size: 0.86rem;
  font-weight: 700;
}

.desktop-nav a,
.header-link,
.lang-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.desktop-nav a {
  color: rgba(255, 250, 244, 0.84);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-link,
.lang-toggle {
  border: 1px solid rgba(255, 250, 244, 0.26);
  color: var(--white);
  background: transparent;
  padding: 0 0.85rem;
  border-radius: 7px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.header-link.strong {
  background: var(--tomato);
  border-color: var(--tomato);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--plum);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(23, 20, 20, 0.78), rgba(23, 20, 20, 0.28) 58%, rgba(23, 20, 20, 0.62)),
    linear-gradient(0deg, rgba(23, 20, 20, 0.72), rgba(23, 20, 20, 0.08) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 148px 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.62fr);
  gap: 2rem;
  align-items: end;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 0.98;
  font-weight: 600;
  margin-bottom: 1.1rem;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.8rem;
  line-height: 1.04;
  font-weight: 600;
  margin-bottom: 1rem;
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.15;
  margin-bottom: 0.55rem;
}

.hero-text {
  max-width: 690px;
  color: rgba(255, 250, 244, 0.86);
  font-size: 1.08rem;
  line-height: 1.7;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 0.8rem 1.15rem;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn.primary {
  background: var(--tomato);
  color: var(--white);
}

.btn.secondary {
  background: rgba(255, 250, 244, 0.09);
  border-color: rgba(255, 250, 244, 0.34);
  color: var(--white);
}

.btn.light {
  background: var(--white);
  color: var(--plum);
}

.hero-actions,
.inline-actions,
.planner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-panel {
  display: grid;
  gap: 0;
  border: 1px solid rgba(255, 250, 244, 0.22);
  background: rgba(47, 23, 56, 0.78);
  backdrop-filter: blur(12px);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel div {
  padding: 1.25rem;
  border-bottom: 1px solid rgba(255, 250, 244, 0.16);
}

.hero-panel div:last-child {
  border-bottom: 0;
}

.fact-number {
  display: block;
  font-weight: 950;
  font-size: 1.25rem;
}

.fact-label {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 250, 244, 0.72);
  line-height: 1.45;
}

.quick-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.quick-band a {
  min-height: 98px;
  padding: 1.3rem;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.quick-band a:last-child {
  border-right: 0;
}

.quick-band span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-band strong {
  font-size: 1rem;
}

.section,
.split-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 3rem;
  align-items: end;
}

.section-copy p,
.split-copy p,
.section-heading p,
.event-band p,
.planner-result p,
.footer p {
  color: var(--muted);
  line-height: 1.75;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

.proof-item {
  min-height: 168px;
  padding: 1.35rem;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item span {
  color: var(--tomato);
  font-size: 2rem;
  font-weight: 950;
}

.proof-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading a {
  color: var(--tomato);
  font-weight: 950;
  border-bottom: 2px solid currentColor;
  padding-bottom: 0.2rem;
}

.section-heading.narrow {
  display: block;
  max-width: 760px;
}

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

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

.menu-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.menu-card div {
  padding: 1.25rem;
}

.menu-card p {
  color: var(--muted);
  line-height: 1.6;
}

.menu-card strong {
  color: var(--tomato);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 520px;
}

.image-main {
  width: 82%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-small {
  position: absolute;
  right: 0;
  bottom: 34px;
  width: 42%;
  max-width: 240px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 7px solid var(--paper);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.6rem;
  display: grid;
  gap: 0.75rem;
}

.check-list li {
  padding-left: 1.7rem;
  position: relative;
  color: var(--muted);
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.72rem;
  height: 0.72rem;
  background: var(--sage);
  border-radius: 50%;
}

.event-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr) auto;
  align-items: center;
  gap: 2rem;
  padding: 52px 4vw;
  background: var(--plum);
  color: var(--white);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.event-band > * {
  min-width: 0;
}

.event-band p {
  color: rgba(255, 250, 244, 0.74);
  margin: 0;
}

.event-band h2 {
  margin-bottom: 0;
  font-size: 3.1rem;
}

.planner {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.planner-options {
  display: grid;
  gap: 0.55rem;
}

.planner-option {
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 0 1rem;
  font: inherit;
  font-weight: 950;
  text-align: left;
  cursor: pointer;
}

.planner-option.active {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}

.planner-result {
  min-height: 304px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.planner-kicker {
  color: var(--tomato);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.planner-result .btn.secondary,
.inline-actions .btn.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.gallery-strip img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  padding: 52px 4vw 76px;
  background: #151211;
  color: var(--white);
}

.footer img {
  width: 110px;
  margin-bottom: 1rem;
}

.footer p {
  max-width: 700px;
  color: rgba(255, 250, 244, 0.68);
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: end;
}

.footer-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 250, 244, 0.22);
  padding: 0 0.85rem;
  border-radius: 7px;
  font-weight: 850;
}

.mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.85rem;
  }

  h2 {
    font-size: 3rem;
  }

  .event-band h2 {
    font-size: 2.7rem;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    justify-content: end;
  }

  .header-link:not(.strong) {
    display: none;
  }

  .hero-content,
  .intro,
  .split-section,
  .planner,
  .event-band,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 128px;
  }

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

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .quick-band a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .image-stack {
    min-height: 430px;
  }

  .image-main {
    height: 430px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding: 0 16px;
  }

  .brand img {
    width: 86px;
  }

  .header-link,
  .lang-toggle {
    min-height: 38px;
    padding: 0 0.68rem;
  }

  .hero {
    min-height: 94vh;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding: 118px 0 84px;
    gap: 1rem;
  }

  h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions .btn,
  .inline-actions .btn,
  .planner-actions .btn {
    width: 100%;
  }

  .quick-band,
  .menu-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .quick-band a {
    min-height: 78px;
  }

  .section,
  .split-section {
    width: calc(100% - 28px);
    padding: 64px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .image-stack {
    min-height: 374px;
  }

  .image-main {
    width: 86%;
    height: 374px;
  }

  .image-small {
    width: 44%;
    bottom: 22px;
    border-width: 5px;
  }

  .event-band {
    padding: 48px 14px;
  }

  .event-band .btn {
    width: 100%;
  }

  .planner-result {
    min-height: 320px;
    padding: 1.2rem;
  }

  .gallery-strip img {
    height: 280px;
  }

  .footer {
    padding-bottom: 110px;
  }

  .footer-links {
    justify-content: start;
  }

  .mobile-cta {
    position: fixed;
    z-index: 25;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: var(--plum);
    border: 1px solid rgba(255, 250, 244, 0.18);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }

  body.show-mobile-cta .mobile-cta {
    display: grid;
  }

  .mobile-cta a {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 900;
    border-right: 1px solid rgba(255, 250, 244, 0.16);
  }

  .mobile-cta a:last-child {
    border-right: 0;
  }
}
