:root {
  --ink: #10211f;
  --deep: #123b34;
  --sea: #1f6f73;
  --terracotta: #b8663b;
  --gold: #d2aa62;
  --paper: #f5f2ea;
  --mist: #e8eef0;
  --white: #ffffff;
  --muted: #5c6967;
  --line: rgba(16, 33, 31, 0.14);
  --shadow: 0 22px 54px rgba(16, 33, 31, 0.18);
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 78px;
  padding: 12px 64px;
  color: var(--white);
  background: rgba(16, 33, 31, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  width: 104px;
  height: auto;
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
}

.brand span {
  font-weight: 900;
}

nav {
  display: flex;
  gap: 6px;
}

nav a,
.phone-chip,
.lang button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.tools {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.lang button {
  min-width: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

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

.phone-chip {
  color: var(--ink);
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: 960px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px 64px 46px;
  color: var(--white);
  background: var(--deep);
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 33, 31, 0.95), rgba(16, 33, 31, 0.72) 46%, rgba(16, 33, 31, 0.08)),
    linear-gradient(0deg, rgba(16, 33, 31, 0.86), rgba(16, 33, 31, 0) 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding-bottom: 170px;
}

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

.hero .eyebrow {
  color: #efc57b;
}

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

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 870px;
  font-size: 5.2rem;
  line-height: 0.98;
}

h2 {
  font-size: 3.35rem;
  line-height: 1.05;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.16rem;
}

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

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.btn.primary {
  color: var(--ink);
  background: var(--gold);
}

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

.btn.outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
}

.btn.dark {
  color: var(--white);
  background: var(--deep);
}

.quick {
  position: absolute;
  z-index: 3;
  left: 64px;
  right: 64px;
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  max-width: 1160px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(16, 33, 31, 0.82);
  backdrop-filter: blur(14px);
}

.quick div {
  min-width: 0;
  padding: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.quick div:first-child {
  border-left: 0;
}

.quick strong,
.quick span {
  display: block;
}

.quick strong {
  color: var(--white);
  font-size: 1rem;
}

.quick span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: 96px 64px;
}

.intro,
.location,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 56px;
  align-items: center;
}

.intro p:not(.eyebrow),
.section-head p:not(.eyebrow),
.location-copy p:not(.eyebrow),
.contact p {
  color: var(--muted);
  font-size: 1.05rem;
}

.action-panel,
.contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.action-panel a,
.contact-card a {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(16, 33, 31, 0.08);
}

.action-panel span,
.contact-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.action-panel strong,
.contact-card strong {
  display: block;
  overflow-wrap: anywhere;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 0.9fr 1.1fr;
  gap: 1px;
  background: var(--deep);
}

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

.menu {
  background: var(--white);
}

.section-head {
  max-width: 850px;
  margin-bottom: 32px;
}

.menu-grid,
.proof-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.menu-grid article,
.proof-grid article,
.faq-grid details {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.menu-grid article {
  padding: 22px;
}

.menu-grid span {
  display: block;
  color: var(--terracotta);
  font-size: 1.7rem;
  font-weight: 900;
}

.menu-grid h3 {
  margin-top: 14px;
}

.menu-grid p,
.proof-grid p,
.faq-grid p {
  color: var(--muted);
}

.inline-link,
.proof-grid a {
  display: inline-flex;
  margin-top: 24px;
  color: var(--sea);
  font-weight: 900;
}

.location {
  color: var(--white);
  background: var(--sea);
}

.location .eyebrow {
  color: #f3ca86;
}

.location p {
  color: rgba(255, 255, 255, 0.84);
}

.location img {
  width: 100%;
  min-height: 390px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proof {
  background: var(--mist);
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-grid article {
  padding: 24px;
  background: var(--white);
}

.proof-grid strong {
  display: block;
  color: var(--deep);
  font-size: 1.65rem;
}

.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-grid details {
  padding: 18px;
  background: var(--white);
}

summary {
  cursor: pointer;
  font-weight: 900;
}

.contact {
  background: var(--white);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 64px 88px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

footer p {
  margin: 0;
}

.mobile-bar {
  position: fixed;
  z-index: 35;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(16, 33, 31, 0.94);
  box-shadow: var(--shadow);
}

.mobile-bar a {
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 980px) {
  .header {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 10px 18px;
  }

  nav {
    display: none;
  }

  .phone-chip {
    display: none;
  }

  .hero {
    min-height: 920px;
    padding: 116px 18px 44px;
  }

  h1 {
    font-size: 3.9rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .hero-content {
    padding-bottom: 295px;
  }

  .quick {
    left: 18px;
    right: 18px;
    grid-template-columns: 1fr;
  }

  .quick div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .quick div:first-child {
    border-top: 0;
  }

  .section {
    padding: 72px 18px;
  }

  .intro,
  .location,
  .contact,
  .action-panel,
  .contact-card,
  .gallery-strip,
  .menu-grid,
  .proof-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  body {
    padding-bottom: 74px;
  }

  .brand img {
    width: 88px;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 1010px;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  h3 {
    font-size: 1.2rem;
  }

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

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

  .mobile-bar[data-visible="true"] {
    display: grid;
  }
}
