:root {
  --black: #10100f;
  --ink: #1e1b18;
  --gold: #caa15d;
  --gold-soft: #f1d49a;
  --sea: #1b6f75;
  --mist: #f5f0e8;
  --sand: #e7dccb;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, .72);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input, select { font: inherit; }

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 1000;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 22px clamp(18px, 4vw, 56px);
  color: var(--white);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  color: var(--gold-soft);
  font-weight: 700;
  letter-spacing: .04em;
}
.brand strong { display: block; font-size: 15px; letter-spacing: .06em; text-transform: uppercase; }
.brand small { display: block; margin-top: 3px; color: rgba(255, 255, 255, .65); font-size: 11px; }
.desktop-nav { display: flex; justify-content: center; gap: 24px; font-size: 13px; color: rgba(255, 255, 255, .78); }
.desktop-nav a:hover, .header-phone:hover { color: var(--gold-soft); }
.header-phone { font-weight: 700; color: var(--white); white-space: nowrap; }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
  background: rgba(16, 16, 15, .25);
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 18;
  display: none;
  place-items: center;
  align-content: center;
  gap: 24px;
  background: rgba(16, 16, 15, .96);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-size: 24px; }
.mobile-menu .mobile-phone { color: var(--gold-soft); font-weight: 700; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-media, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { object-fit: cover; object-position: center; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 12, 11, .86) 0%, rgba(12, 12, 11, .58) 44%, rgba(12, 12, 11, .28) 100%),
    linear-gradient(0deg, rgba(16, 16, 15, .70) 0%, rgba(16, 16, 15, .08) 55%, rgba(16, 16, 15, .38) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 780px;
  min-width: 0;
  padding: 132px clamp(18px, 6vw, 86px) 70px;
}
.eyebrow, .section-kicker {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
  max-width: 100%;
}
.mobile-title { display: none; }
.lead {
  max-width: 650px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0 44px; }
.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 28px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--gold); color: var(--black); }
.btn.ghost { border-color: rgba(255, 255, 255, .42); color: var(--white); background: rgba(255, 255, 255, .06); backdrop-filter: blur(10px); }
.btn.wide { width: 100%; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 640px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(16, 16, 15, .34);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
}
.hero-stats div { padding: 18px; border-right: 1px solid rgba(255, 255, 255, .14); }
.hero-stats div:last-child { border-right: 0; }
.hero-stats strong { display: block; color: var(--gold-soft); font-size: 23px; }
.hero-stats span { display: block; margin-top: 5px; color: rgba(255, 255, 255, .62); font-size: 12px; }

.section { padding: clamp(76px, 9vw, 124px) clamp(18px, 4vw, 56px); }
.section-light { background: var(--mist); color: var(--ink); }
.section-sand { background: var(--sand); color: var(--ink); }
.section-dark {
  background:
    radial-gradient(circle at 14% 16%, rgba(202, 161, 93, .22), transparent 30%),
    radial-gradient(circle at 90% 78%, rgba(27, 111, 117, .38), transparent 33%),
    #10100f;
  color: var(--white);
}
.container { width: min(1180px, 100%); margin: 0 auto; }
.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: start;
}
h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
}
.copy p, .copy-muted {
  color: rgba(30, 27, 24, .72);
  font-size: 16px;
  line-height: 1.8;
}
.section-dark .copy-muted { color: var(--muted); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 50px;
}
.feature-grid article, .product-grid article {
  min-height: 230px;
  padding: 0;
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(16, 16, 15, .08);
}
.feature-grid article > img {
  height: 170px;
  object-fit: cover;
}
.feature-grid article > span,
.feature-grid article > h3,
.feature-grid article > p {
  margin-left: 28px;
  margin-right: 28px;
}
.feature-grid span {
  display: block;
  margin-top: 24px;
  color: var(--gold);
  font-weight: 900;
  font-size: 13px;
}
.feature-grid h3, .product-grid h3 { margin-top: 18px; margin-bottom: 12px; font-size: 24px; }
.feature-grid p, .product-grid p { color: rgba(30, 27, 24, .68); line-height: 1.65; }
.feature-grid article > p { margin-bottom: 28px; }

.income-layout, .lead-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .68fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
}
.income-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}
.income-cards div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}
.income-cards strong { display: block; color: var(--gold-soft); font-size: 28px; }
.income-cards span { display: block; margin-top: 6px; color: rgba(255, 255, 255, .62); font-size: 13px; line-height: 1.45; }
.calc-card, .lead-form {
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .95);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}
.calc-card label, .lead-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.calc-card output { color: var(--sea); font-size: 20px; font-weight: 900; letter-spacing: 0; text-transform: none; }
input[type="range"] { accent-color: var(--gold); }
.lead-form input:not([type="checkbox"]), .lead-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(16, 16, 15, .15);
  border-radius: var(--radius);
  padding: 0 15px;
  background: #fff;
  color: var(--ink);
}
.lead-form input:focus, .lead-form select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(202, 161, 93, .18); outline: none; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1.45;
  text-transform: none !important;
}
.consent input { margin-top: 2px; }
.form-status { min-height: 20px; margin: 12px 0 0; font-size: 13px; color: var(--sea); }
.form-status.error { color: #a83232; }

.section-video {
  background: #0c0c0b;
  color: var(--white);
}
.video-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.video-layout p:last-child {
  color: rgba(255, 255, 255, .72);
  line-height: 1.75;
}
.presentation-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .42);
  background: #000;
}

.section-head { text-align: center; max-width: 820px; }
.section-head p:last-child { color: rgba(30, 27, 24, .68); line-height: 1.7; }
.gallery {
  width: min(1180px, calc(100% - 36px));
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 16px;
}
.gallery figure {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd;
}
.gallery .gallery-main { grid-row: span 2; min-height: 576px; }
.gallery img { height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(16, 16, 15, .82), transparent);
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.product-grid article { padding: 24px; }
.floor-plan {
  height: 190px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: #faf7f0;
  object-fit: contain;
}
.product-grid strong { display: block; margin-top: 24px; color: var(--sea); font-size: 26px; }
.product-grid article > span {
  display: block;
  margin-top: 10px;
  color: rgba(30, 27, 24, .56);
  font-size: 13px;
  line-height: 1.45;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}
.faq-grid article {
  min-height: 210px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(16, 16, 15, .08);
}
.faq-grid h3 {
  margin-bottom: 14px;
  font-size: 23px;
  line-height: 1.2;
}
.faq-grid p {
  margin-bottom: 0;
  color: rgba(30, 27, 24, .68);
  line-height: 1.68;
}
.check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, .82);
}
.check-list li::before { content: "✓"; color: var(--gold-soft); margin-right: 10px; }

.site-footer {
  position: relative;
  padding: 72px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, .68);
  background:
    linear-gradient(90deg, rgba(9, 9, 8, .90), rgba(9, 9, 8, .60)),
    url('../images/terrace-restaurant.webp') center / cover;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
}
.site-footer strong { display: block; color: var(--white); margin-bottom: 10px; }
.site-footer p { max-width: 760px; margin-bottom: 0; line-height: 1.65; }
.site-footer a { display: block; margin-bottom: 8px; color: rgba(255, 255, 255, .78); }
.site-footer a:hover { color: var(--gold-soft); }

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 16px 16px;
  }
  .desktop-nav, .header-phone { display: none; }
  .menu-toggle, .mobile-menu { display: grid; }
  .brand strong { font-size: 12px; }
  .brand small { font-size: 10px; }
  .brand-mark { width: 38px; height: 38px; }
  .hero { min-height: 100svh; align-items: flex-end; }
  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(12, 12, 11, .92) 0%, rgba(12, 12, 11, .68) 46%, rgba(12, 12, 11, .20) 100%),
      linear-gradient(90deg, rgba(12, 12, 11, .50), rgba(12, 12, 11, .22));
  }
  .hero-media { object-position: 62% center; }
  .hero-content { padding: 110px 18px 34px; }
  .desktop-title { display: none; }
  .mobile-title { display: inline-block; }
  .lead { max-width: calc(100vw - 36px); font-size: 16px; }
  .hero-actions { flex-direction: column; margin: 26px 0 28px; }
  .btn { width: 100%; min-height: 52px; padding: 0 18px; font-size: 12px; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats div { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .14); padding: 13px 16px; }
  .hero-stats div:last-child { border-bottom: 0; }
  .split, .income-layout, .lead-layout, .feature-grid, .product-grid, .faq-grid, .footer-grid, .video-layout { grid-template-columns: 1fr; }
  .feature-grid article, .product-grid article { min-height: auto; }
  .income-cards { grid-template-columns: 1fr; }
  .gallery {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
  }
  .gallery figure, .gallery .gallery-main { min-height: 280px; grid-row: auto; }
  .footer-grid { gap: 28px; }
}

@media (max-width: 420px) {
  h1 { font-size: 42px; line-height: 1.02; }
  h2 { font-size: 33px; }
  .section { padding-left: 16px; padding-right: 16px; }
}
