:root {
  color-scheme: light;
  --ink: #1b1917;
  --muted: #6f6861;
  --line: #e7e0d8;
  --paper: #fbfaf7;
  --soft: #f1eee8;
  --gold: #b9852f;
  --sage: #5f7564;
  --clay: #9b5f4d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(42, 34, 25, 0.13);
  --max: 1180px;
}

* {
  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.55;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: clamp(10px, 2vw, 24px);
  right: clamp(10px, 2vw, 24px);
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 14px;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(251, 250, 247, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(26, 22, 18, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-grid;
  place-items: center;
}

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.9rem;
}

.nav a,
.header-action,
.button,
.text-link {
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav a:hover,
.text-link:hover {
  color: var(--gold);
}

.header-action {
  padding: 10px 15px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 780;
}

.header-action:hover {
  background: var(--ink);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 140px clamp(20px, 6vw, 78px) 9vh;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 12, 9, 0.9), rgba(16, 12, 9, 0.42) 48%, rgba(16, 12, 9, 0.2)),
    linear-gradient(to top, rgba(16, 12, 9, 0.78), rgba(16, 12, 9, 0.08) 55%);
}

.hero-content {
  position: relative;
  width: min(740px, 100%);
  padding-top: 40px;
}

.hero-logo {
  width: clamp(72px, 11vw, 128px);
  height: clamp(72px, 11vw, 128px);
  object-fit: contain;
  margin-bottom: 22px;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.42));
}

.hero-slogan {
  width: min(330px, 74vw);
  height: auto;
  margin-top: 14px;
  opacity: 0.9;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.36));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 13vw, 9.8rem);
  line-height: 0.9;
  font-weight: 900;
}

h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 0.98;
  font-weight: 840;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.hero-copy {
  width: min(650px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(680px, 100%);
  margin: 34px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-facts div {
  padding: 14px 16px;
}

.hero-facts dt {
  margin: 0 0 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 760;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 830;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 760;
}

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

.button-primary {
  background: var(--white);
  color: var(--ink);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.button-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-info article {
  min-height: 210px;
  padding: clamp(24px, 4vw, 44px);
  background: var(--paper);
}

.quick-info span {
  display: block;
  margin-bottom: 36px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
}

.quick-info h2 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.quick-info p,
.section-copy p,
.family-band p,
.contact-section p,
.menu-card p {
  margin: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  max-width: calc(var(--max) + 156px);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 128px) clamp(20px, 6vw, 78px);
}

.split-section.reverse {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.88fr);
}

.reverse .section-copy {
  order: 2;
}

.section-copy p:not(.eyebrow) {
  max-width: 590px;
  margin-top: 22px;
  font-size: 1.06rem;
}

.price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.price-line strong {
  color: var(--clay);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.price-line span {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--sage);
  font-weight: 820;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--sage);
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 760;
}

.image-panel {
  margin: 0;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
}

.menu-section {
  padding: clamp(64px, 9vw, 122px) clamp(20px, 6vw, 78px);
  background: var(--soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1fr);
  gap: 32px;
  align-items: end;
  max-width: var(--max);
  margin: 0 auto 40px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.catalog-callout {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: min(100%, 520px);
  margin: 0 0 24px calc((100% - min(100%, var(--max))) / 2);
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.catalog-callout img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  padding: 6px;
  border-radius: 8px;
  background: var(--soft);
}

.catalog-callout strong,
.catalog-callout small {
  display: block;
}

.catalog-callout small {
  color: var(--muted);
}

.menu-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

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

.menu-card div {
  padding: 22px;
}

.family-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(48px, 8vw, 94px) clamp(20px, 6vw, 78px);
  background: #20231f;
  color: var(--white);
}

.family-band img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.family-band p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
}

.gallery-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.gallery-section img {
  width: 100%;
  height: clamp(300px, 42vw, 560px);
  object-fit: cover;
}

.app-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  max-width: calc(var(--max) + 156px);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) clamp(20px, 6vw, 78px);
  background: var(--paper);
}

.app-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
}

.phone-stage {
  display: grid;
  justify-items: center;
}

.phone-stage img {
  width: min(260px, 70vw);
  height: auto;
  filter: drop-shadow(0 34px 48px rgba(42, 34, 25, 0.2));
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 36px;
  max-width: calc(var(--max) + 156px);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) clamp(20px, 6vw, 78px);
}

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

.contact-grid a,
.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-grid span,
.contact-row span {
  color: var(--muted);
}

.contact-grid strong,
.contact-row strong {
  text-align: right;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(20px, 6vw, 78px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer strong {
  color: var(--ink);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .quick-info,
  .split-section,
  .split-section.reverse,
  .section-heading,
  .menu-grid,
  .family-band,
  .gallery-section,
  .app-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .reverse .section-copy {
    order: 0;
  }

  .quick-info article {
    min-height: auto;
  }

  .quick-info span {
    margin-bottom: 18px;
  }
}

@media (max-width: 560px) {
  .site-header {
    left: 8px;
    right: 8px;
    margin-top: 8px;
    padding: 9px;
  }

  .header-action {
    display: none;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-mark img {
    width: 100%;
    height: 100%;
  }

  .hero {
    padding: 118px 18px 48px;
  }

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

  h1 {
    font-size: clamp(3.3rem, 22vw, 5.7rem);
  }

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

  .split-section,
  .menu-section,
  .family-band,
  .app-section,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-grid a,
  .contact-row {
    display: grid;
  }

  .contact-grid strong,
  .contact-row strong {
    text-align: left;
  }
}
