.index-landing-page .container {
  max-width: 1180px;
  padding-bottom: 0;
  width: min(1180px, calc(100% - 48px));
}

.index-landing-page .hero {
  align-items: center;
  display: grid;
  height: auto;
  min-height: clamp(640px, 80svh, 820px);
  position: relative;
}

.index-landing-page .hero:before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(8, 8, 8, 0.58) 48%, rgba(14, 10, 10, 0.82) 100%);
}

.index-landing-page .hero-content {
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.52), rgba(10, 10, 10, 0.32));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
  max-width: 600px;
  padding: clamp(26px, 4vw, 38px);
  text-align: center;
}

.index-landing-page .hero-eyebrow {
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Georgia", serif;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  padding: 10px 16px;
  text-transform: uppercase;
}

.index-landing-page .hero-content h1 {
  font-size: clamp(3.6rem, 7.8vw, 6.6rem);
  height: auto;
  line-height: 0.94;
  margin-bottom: 0;
  text-wrap: balance;
}

.index-landing-page .hero-content p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 560px;
}

.index-landing-page .hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.index-landing-page .hero-btn-primary,
.index-landing-page .hero-btn-secondary {
  align-items: center;
  border-radius: 18px;
  display: inline-flex;
  justify-content: center;
  margin: 0;
  min-height: 52px;
  min-width: 220px;
}

.index-landing-page .hero-actions {
  margin: 0 auto;
  width: fit-content;
}

.index-landing-page .hero-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
  color: #fff;
}

.index-landing-page .hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.index-landing-page .hero-quick-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.index-landing-page .hero-quick-points span {
  background: rgba(10, 10, 10, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  padding: 10px 14px;
}

.landing-entry-strip {
  background:
    radial-gradient(circle at top left, rgba(var(--primary-color-rgb), 0.14), transparent 40%),
    linear-gradient(180deg, #fff 0%, #f5f1ed 100%);
  margin-top: -64px;
  padding: 0;
  position: relative;
  z-index: 2;
}

.landing-entry-strip .container,
.index-landing-page #about .container,
.index-landing-page #reservation .container {
  padding-bottom: 0;
}

.landing-entry-grid {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-entry-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(var(--secondary-color-rgb), 0.08);
  border-radius: 26px;
  box-shadow: 0 22px 50px rgba(var(--secondary-color-rgb), 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 22px 20px;
  margin: 30px auto;
  width: 100%;
}

.landing-entry-card h2 {
  color: var(--secondary-color);
  font-size: 1.78rem;
  line-height: 1.15;
  margin: 0 0 10px;
}

.landing-entry-card p {
  color: #4e4741;
  margin: 0;
}

.landing-entry-card-muted {
  background: linear-gradient(180deg, rgba(var(--secondary-color-rgb), 0.98), rgba(35, 35, 35, 0.96));
}

.landing-entry-card-muted h2,
.landing-entry-card-muted p {
  color: rgba(255, 255, 255, 0.94);
}

.landing-entry-kicker {
  color: #cd1719;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.landing-entry-card-muted .landing-entry-kicker {
  color: #ff9e90;
}

.landing-entry-link {
  color: var(--secondary-color);
  display: inline-flex;
  font-size: 0.98rem;
  font-weight: 700;
  margin-top: auto;
  text-decoration: none;
}

.landing-entry-link::after {
  content: "->";
  margin-left: 8px;
}

.landing-entry-card-muted .landing-entry-link {
  color: #fff;
}

.index-landing-page #about {
  background: linear-gradient(180deg, #f7f3ef 0%, #fff 100%);
  padding: 24px 0 18px;
}

.index-landing-page .section-header {
  margin: 0 0 16px;
  text-align: center;
}

.index-landing-page .section-header h2 {
  margin: 0 0 8px;
}

.index-landing-page .section-header p {
  color: #6b625a;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0;
}

.index-landing-page .about-content {
  align-items: start;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr);
}

.index-landing-page .about-text {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(var(--secondary-color-rgb), 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(var(--secondary-color-rgb), 0.06);
  height: 100%;
  padding: 26px 26px 10px;
}

.index-landing-page .about-text p {
  color: #423932;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 18px;
}

.index-landing-page .about-image {
  aspect-ratio: 4 / 3;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(var(--primary-color-rgb), 0.12), transparent 45%),
    linear-gradient(180deg, #ffffff 0%, #f3eee9 100%);
  border: 1px solid rgba(var(--secondary-color-rgb), 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(var(--secondary-color-rgb), 0.06);
  display: flex;
  height: 100%;
  overflow: hidden;
  padding: 12px;
}

.index-landing-page .about-image picture {
  display: block;
  height: 100%;
  width: 100%;
}

.index-landing-page .about-image img {
  background: linear-gradient(135deg, #f6eee8 0%, #eed9cc 100%);
  border-radius: 25px;
  display: block;
  height: 100%;
  max-height: none;
  object-fit: cover;
  width: 100%;
}

.index-landing-page .reservation-inner {
  background:
    radial-gradient(circle at top right, rgba(var(--primary-color-rgb), 0.08), transparent 40%),
    linear-gradient(180deg, #f8f4f0 0%, #f1ebe5 100%);
  padding: 0 0 32px;
}

.index-landing-page .form-content {
  justify-content: center;
  padding: 0;
}

.index-landing-page .reservation-form {
  border: 1px solid rgba(var(--secondary-color-rgb), 0.08);
  border-radius: 26px;
  box-shadow: 0 20px 44px rgba(var(--secondary-color-rgb), 0.08);
  max-width: 500px;
  margin: 30px auto;
  padding: 24px 22px 20px;
  width: min(100%, 500px);
}

.index-landing-page .reservation-form form,
.index-landing-page #formMessage {
  width: 100%;
  justify-items: center;
}

.index-landing-page .reservation-form h2 {
  margin: 0;
  padding: 0 0 14px;
  text-align: center;
}

.index-landing-page .form-group {
  margin-bottom: 12px;
  width: 100%;
}

.index-landing-page .form-group input {
  background: #fbfaf8;
}

.index-landing-page .btn-form {
  display: block;
  margin-bottom: 10px;
  min-height: 48px;
}

.index-landing-page .footer {
  padding-top: 40px;
}

.index-landing-page .footer-inner {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.index-landing-page .footer-col {
  margin: 0;
}

.index-landing-page .footer-col p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.index-landing-page .social-links {
  padding-top: 12px;
}

@media (max-width: 992px) {
  .index-landing-page .container {
    width: min(1180px, calc(100% - 36px));
  }

  .index-landing-page .hero {
    min-height: clamp(640px, 80svh, 820px);
    padding: 82px 0 44px;
  }

  .index-landing-page .hero-content {
    max-width: 640px;
  }

  /* Phase 9.8: was `.landing-entry-grid { grid-template-columns: 1fr }`
     here — collapsed cards to 1-column at 992px which made tablet
     viewports (768-991px) waste half the row. Now we keep 2-col down
     to 768 (see separate @media block below) and only fall to 1-col
     on real mobile. */

  .landing-entry-strip {
    margin-top: -36px;
  }

  .landing-entry-card {
    padding: 20px 20px 18px;
  }

  .landing-entry-card h2 {
    font-size: 1.55rem;
  }

  .index-landing-page .about-content {
    grid-template-columns: 1fr;
  }

  .index-landing-page .about-image {
    aspect-ratio: auto;
  }

  .index-landing-page .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  /* Phase 9.8: keep 2-col cards down to 769px (tablet); fall to 1-col
     only on real mobile (≤768px). */
  .landing-entry-grid {
    grid-template-columns: 1fr;
  }

  .index-landing-page .container {
    width: min(1180px, calc(100% - 24px));
  }

  .index-landing-page .hero {
    min-height: auto;
    padding: 70px 0 24px;
  }

  .index-landing-page .hero-content {
    border-radius: 24px;
    gap: 18px;
    max-width: 100%;
    padding: 22px 18px;
  }

  .index-landing-page .hero-eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    padding: 9px 12px;
  }

  .index-landing-page .hero-content p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 320px;
  }

  .index-landing-page .hero-content h1 {
    font-size: clamp(2.9rem, 15vw, 4rem);
    line-height: 0.92;
  }

  .index-landing-page .hero-actions {
    flex-direction: column;
  }

  .index-landing-page .hero-btn-primary,
  .index-landing-page .hero-btn-secondary {
    min-width: 0;
    width: min(280px, 100%);
  }

  .index-landing-page .hero-quick-points {
    align-items: stretch;
    flex-direction: column;
    margin: 0 auto;
    max-width: 300px;
    width: 100%;
  }

  .index-landing-page .hero-quick-points span {
    border-radius: 18px;
    font-size: 0.9rem;
    text-align: center;
  }

  .landing-entry-strip {
    margin-top: 0;
    padding-top: 8px;
  }

  .index-landing-page #about {
    padding: 18px 0 14px;
  }

  .index-landing-page .about-text {
    padding: 22px 18px 10px;
  }

  .index-landing-page .about-text p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .index-landing-page .about-image {
    aspect-ratio: auto;
    min-height: 240px;
  }

  .index-landing-page .reservation-inner {
    padding: 0 0 20px;
  }

  .index-landing-page .reservation-form {
    border-radius: 24px;
    padding: 20px 14px 16px;
  }

  .index-landing-page .footer {
    padding-top: 28px;
  }

  .index-landing-page .footer-inner {
    gap: 14px 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .index-landing-page .footer-col:last-child {
    grid-column: 1 / -1;
  }
}
