:root {
  --paper: #f7f0e6;
  --paper-strong: #fffaf2;
  --ink: #171512;
  --muted: #6d6255;
  --line: rgba(23, 21, 18, 0.14);
  --wine: #8f2d2e;
  --wine-dark: #5b1c1c;
  --sea: #1f6f68;
  --sage: #d9e2d2;
  --shadow: 0 18px 50px rgba(31, 24, 18, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 10;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 6px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(247, 240, 230, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand,
.header-actions,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-links {
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--wine);
}

.header-actions {
  gap: 10px;
}

.lang-toggle,
.button {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.lang-toggle {
  width: 48px;
  padding: 0;
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.button {
  background: var(--wine);
  color: #fffaf5;
  box-shadow: 0 8px 18px rgba(143, 45, 46, 0.24);
}

.button:hover,
.button:focus-visible {
  background: var(--wine-dark);
}

.button-light {
  background: var(--paper-strong);
  color: var(--wine-dark);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.button-light:hover,
.button-light:focus-visible {
  background: #fff;
  color: var(--wine);
}

.button-ghost {
  background: transparent;
  color: #fffaf5;
  border-color: rgba(255, 250, 245, 0.5);
  box-shadow: none;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.button-small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.92rem;
}

.hero {
  position: relative;
  min-height: min(760px, 82svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #241612;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 9, 7, 0.86), rgba(12, 9, 7, 0.42) 54%, rgba(12, 9, 7, 0.18)),
    linear-gradient(0deg, rgba(12, 9, 7, 0.62), transparent 48%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 45%;
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(56px, 10vw, 104px) clamp(18px, 6vw, 82px);
  color: #fffaf5;
}

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

.hero .eyebrow {
  color: #f3c75d;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 9vw, 8.2rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.8vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.06rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 250, 245, 0.9);
  font-size: clamp(1.06rem, 2.2vw, 1.35rem);
}

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

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
}

.quick-facts div {
  min-height: 96px;
  padding: 22px clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.quick-facts div:last-child {
  border-right: 0;
}

.quick-facts span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  font-weight: 900;
}

.quick-facts strong {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) 0;
}

.intro-grid,
.split-section,
.proof-section,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.section-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.flow-list {
  display: grid;
  gap: 12px;
}

.flow-list article,
.proof-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 250, 242, 0.72);
}

.flow-list span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--wine);
  font-weight: 900;
}

.flow-list p,
.proof-grid span {
  color: var(--muted);
}

.menu-section {
  background: #1e1a16;
  color: #fffaf5;
  padding-bottom: clamp(56px, 8vw, 104px);
}

.section-heading {
  padding-bottom: 30px;
}

.menu-section .section-heading p {
  max-width: 760px;
  color: rgba(255, 250, 245, 0.72);
}

.menu-section .eyebrow {
  color: #f3c75d;
}

.menu-strip {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.menu-page {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 245, 0.28);
  border-radius: 8px;
  background: transparent;
  color: #fffaf5;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.menu-page.is-active,
.menu-page:hover,
.menu-page:focus-visible {
  background: #f3c75d;
  color: #1e1a16;
}

.menu-viewer {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(12px, 2vw, 22px);
  border: 1px solid rgba(255, 250, 245, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 245, 0.08);
}

.menu-viewer img {
  width: 100%;
  border-radius: 6px;
  background: #fff;
}

.split-section {
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1fr);
  align-items: center;
}

.photo-stack {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 14px;
  align-items: end;
}

.photo-stack img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-stack img:last-child {
  transform: translateY(36px);
}

.team-lines {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.team-lines p {
  margin: 0;
  color: var(--ink);
}

.gallery-band {
  padding: clamp(46px, 7vw, 90px) 0;
  background: var(--sage);
}

.gallery-grid {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.gallery-grid img {
  width: 100%;
  height: clamp(220px, 24vw, 380px);
  object-fit: cover;
  border-radius: 8px;
}

.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(5) {
  transform: translateY(26px);
}

.proof-section {
  grid-template-columns: 0.85fr 1.15fr;
}

.proof-grid {
  display: grid;
  gap: 12px;
}

.proof-grid strong {
  display: block;
  margin-bottom: 8px;
}

.contact-band {
  background: var(--wine-dark);
  color: #fffaf5;
}

.contact-grid {
  align-items: center;
}

.contact-grid p {
  color: rgba(255, 250, 245, 0.74);
}

.contact-band .eyebrow {
  color: #f3c75d;
}

.contact-actions {
  display: grid;
  gap: 10px;
}

.contact-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 68px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 250, 245, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 245, 0.06);
}

.contact-row:hover,
.contact-row:focus-visible {
  background: rgba(255, 250, 245, 0.12);
}

.contact-row span {
  color: rgba(255, 250, 245, 0.7);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 900;
}

.contact-row strong {
  overflow-wrap: anywhere;
}

.social-line {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-line a {
  border: 1px solid rgba(255, 250, 245, 0.26);
  border-radius: 8px;
  padding: 10px 14px;
  color: rgba(255, 250, 245, 0.86);
  font-weight: 800;
}

.site-footer {
  padding: 28px clamp(18px, 4vw, 54px) 92px;
  background: #15110f;
  color: rgba(255, 250, 245, 0.68);
  font-size: 0.88rem;
}

.site-footer p {
  max-width: 1000px;
  margin: 0 0 8px;
}

.mobile-cta {
  display: none;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 68px;
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  .brand span {
    font-size: 0.94rem;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    min-height: 76svh;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(12, 9, 7, 0.82), rgba(12, 9, 7, 0.44) 62%, rgba(12, 9, 7, 0.18)),
      linear-gradient(90deg, rgba(12, 9, 7, 0.64), transparent 70%);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 42px;
  }

  h1 {
    font-size: clamp(3.1rem, 18vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.25rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .quick-facts {
    grid-template-columns: 1fr 1fr;
  }

  .quick-facts div:nth-child(2n) {
    border-right: 0;
  }

  .quick-facts div {
    min-height: 88px;
    padding: 18px 16px;
  }

  .intro-grid,
  .split-section,
  .proof-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .photo-stack {
    order: 2;
  }

  .photo-stack img:last-child,
  .gallery-grid img:nth-child(2),
  .gallery-grid img:nth-child(5) {
    transform: none;
  }

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

  .gallery-grid img {
    height: 240px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .mobile-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(255, 250, 245, 0.4);
    border-radius: 8px;
    background: rgba(23, 21, 18, 0.9);
    backdrop-filter: blur(16px);
  }

  .mobile-cta a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--paper-strong);
    color: var(--wine-dark);
    font-size: 0.86rem;
    font-weight: 900;
    text-align: center;
  }

  .mobile-cta a:nth-child(2) {
    background: var(--wine);
    color: #fffaf5;
  }
}

@media (max-width: 500px) {
  .brand img {
    width: 38px;
    height: 38px;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .quick-facts div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-facts div:last-child {
    border-bottom: 0;
  }

  .menu-strip {
    align-items: stretch;
  }

  .menu-strip .button {
    width: 100%;
  }

  .gallery-grid {
    gap: 8px;
  }

  .gallery-grid img {
    height: 190px;
  }

  .site-footer {
    padding-bottom: 112px;
  }
}
