:root {
  --cream: #fbf8f5;
  --sand: #f4eee8;
  --text: #2d2725;
  --muted: #7e7069;
  --line: #e7dcd4;
  --gold: #c79c69;
  --gold-dark: #b98952;
  --button-soft: #ead8ca;
  --shadow: 0 18px 50px rgba(91, 67, 50, 0.07);
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(199, 156, 105, 0.08), transparent 26%),
    linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select,
input {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* TOP LOCATION */

.top-location {
  background: #f3ebe4;
  border-bottom: 1px solid rgba(199, 156, 105, 0.12);
}

.top-location-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #876f5f;
  font-size: 0.92rem;
}

/* HEADER */

.site-header {
  padding: 18px 0;
  background: rgba(251, 248, 245, 0.82);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo {
  color: var(--gold);
  font-size: 46px;
  line-height: 1;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
}

.brand-text small {
  margin-top: 4px;
  font-size: 0.72rem;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 46px;
  margin-left: auto;
  color: #86776f;
  font-size: 0.98rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--gold-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-btn,
.top-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.2s ease;
}

.contact-btn {
  border: 1px solid rgba(199, 156, 105, 0.28);
  background: rgba(255, 255, 255, 0.45);
  color: #6d5f58;
}

.top-cta {
  background: var(--button-soft);
  color: #5f524b;
  box-shadow: 0 8px 20px rgba(184, 137, 82, 0.08);
}

.contact-btn:hover,
.top-cta:hover {
  transform: translateY(-1px);
}

/* HERO */

.hero {
  padding-top: 10px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  align-items: stretch;
  min-height: 690px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 28px 34px 10px;
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 7vw, 6rem);
  line-height: 0.93;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.hero-copy .lead {
  margin: 34px 0 0;
  max-width: 520px;
  font-size: clamp(1.1rem, 1.8vw, 1.38rem);
  line-height: 1.65;
  color: #62564f;
}

.hero-copy .note {
  margin: 22px 0 0;
  color: #8b6a45;
  font-size: 1.08rem;
  line-height: 1.6;
}

.hero-image {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background:
    url("https://images.unsplash.com/photo-1519823551278-64ac92734fb1?auto=format&fit=crop&w=1600&q=80")
    center center / cover no-repeat;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(251, 248, 245, 0.96) 0%,
    rgba(251, 248, 245, 0.7) 14%,
    rgba(251, 248, 245, 0.18) 34%,
    rgba(251, 248, 245, 0) 52%
  );
}

/* BOOKING */

.booking-zone {
  padding: 26px 0 12px;
}

.trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 58px;
  margin-bottom: 24px;
  color: #87776f;
  font-size: 1rem;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(199, 156, 105, 0.35);
  display: inline-grid;
  place-items: center;
  color: var(--gold);
  font-size: 0.86rem;
}

.booking-bar {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 320px 72px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.booking-field {
  background: rgba(255, 255, 255, 0.46);
}

.booking-field + .booking-field,
.booking-field + .slots-btn,
.slots-btn + .bar-arrow {
  border-left: 1px solid var(--line);
}

.booking-field select,
.booking-field input {
  width: 100%;
  height: 74px;
  border: 0;
  outline: none;
  background: transparent;
  padding: 0 26px;
  color: #5f534d;
  font-size: 1rem;
}

.slots-btn {
  height: 74px;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, #d8b283, #bc8a51);
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

.bar-arrow {
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.5);
  color: #8a7a72;
  font-size: 1.35rem;
}

/* PROOF LINE */

.proof-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 40px auto 0;
  color: #7a6b64;
}

.proof-line::before,
.proof-line::after {
  content: "";
  width: min(100%, 280px);
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2d5cb);
}

.proof-line::after {
  background: linear-gradient(90deg, #e2d5cb, transparent);
}

.proof-line span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.65rem);
  color: #6f615b;
  white-space: nowrap;
  text-align: center;
}

.proof-line small {
  color: var(--gold);
  margin-right: 7px;
}

/* OFFERS */

.offers {
  padding: 36px 0 34px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.offer-card {
  position: relative;
  padding: 46px 30px 25px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(232, 221, 213, 0.95);
  box-shadow: 0 14px 36px rgba(91, 67, 50, 0.05);
  text-align: center;
}

.offer-card.featured {
  border-color: rgba(199, 156, 105, 0.5);
}

.offer-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d8b283, #bc8a51);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(190, 141, 84, 0.22);
}

.clock {
  width: 66px;
  height: 66px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(199, 156, 105, 0.52);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.55rem;
  font-family: Georgia, serif;
}

.offer-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  font-weight: 500;
}

.price {
  margin: 16px 0 28px;
  font-size: 2.15rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.offer-btn {
  width: 100%;
  height: 58px;
  border: 0;
  border-radius: 12px;
  background: var(--button-soft);
  color: #5f524b;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s ease;
}

.offer-card.featured .offer-btn {
  background: linear-gradient(135deg, #d8b283, #bc8a51);
  color: white;
}

.offer-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(184, 137, 82, 0.12);
}

.offer-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 24px;
  color: #8a7971;
  font-size: 0.97rem;
}

.meta-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 48px;
}

.meta-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(199, 156, 105, 0.32);
  color: var(--gold);
  font-size: 0.9rem;
}

/* ABOUT */

.about-section {
  padding: 82px 0;
}

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.about-visual {
  height: 500px;
  border-radius: 26px;
  background:
    url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=1200&q=80")
    center / cover no-repeat;
}

.about-tag {
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-content h2 {
  margin: 10px 0 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.9rem;
  line-height: 1.08;
  font-weight: 600;
}

.about-content p {
  margin: 0 0 15px;
  color: #6d5f58;
  line-height: 1.72;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 26px;
}

.feature {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(232, 221, 213, 0.72);
}

.feature strong {
  display: block;
  margin-bottom: 5px;
}

.feature span {
  color: #777;
  font-size: 0.9rem;
}

/* BOTTOM */

.bottom-proof {
  padding: 60px 0 42px;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .hero-grid,
  .offers-grid,
  .offer-meta,
  .about-wrap {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-image {
    min-height: 500px;
  }

  .booking-bar {
    grid-template-columns: 1fr 1fr;
  }

  .slots-btn,
  .bar-arrow {
    border-top: 1px solid var(--line);
  }

  .offer-meta {
    gap: 12px;
  }

  .meta-item {
    justify-content: flex-start;
  }

  .about-visual {
    height: 390px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--max), calc(100% - 20px));
  }

  .header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .nav {
    flex-wrap: wrap;
    gap: 18px 24px;
  }

  .header-actions {
    width: 100%;
  }

  .contact-btn,
  .top-cta {
    flex: 1;
  }

  .top-location-inner {
    text-align: center;
    padding: 8px 0;
  }

  .hero-copy {
    padding: 34px 0 26px;
  }

  .hero-copy h1 {
    font-size: 3.25rem;
  }

  .hero-copy .lead {
    font-size: 1.05rem;
  }

  .hero-image {
    min-height: 360px;
  }

  .booking-bar {
    grid-template-columns: 1fr;
  }

  .booking-field + .booking-field,
  .booking-field + .slots-btn,
  .slots-btn + .bar-arrow {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .proof-line {
    gap: 12px;
  }

  .proof-line span {
    white-space: normal;
  }

  .about-content h2 {
    font-size: 2.25rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

.top-location-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #876f5f;
  font-size: 0.92rem;
}

.top-phone {
  font-weight: 600;
  transition: 0.2s ease;
}

.top-phone:hover {
  color: var(--gold-dark);
}

.top-separator {
  opacity: 0.4;
}