:root {
  color-scheme: light;
  --paper: #f6eedf;
  --paper-soft: #fbf5ea;
  --paper-deep: #e8dcc7;
  --white: #fdf9f1;
  --ink: #231d16;
  --muted: rgba(35, 29, 22, 0.66);
  --soft: rgba(35, 29, 22, 0.08);
  --gold: #a77b22;
  --line: rgba(63, 89, 91, 0.72);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-width: 0;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.6rem;
  padding: 0 6vw;
  color: #fff9ef;
  transition: color 260ms ease, background 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(246, 238, 223, 0.92);
  color: rgba(35, 29, 22, 0.76);
  backdrop-filter: blur(10px);
  box-shadow: 0 0.6rem 1.6rem rgba(30, 25, 18, 0.04);
}

.site-logo {
  position: absolute;
  left: 6vw;
  display: block;
  width: 4.2rem;
}

.site-logo img {
  display: block;
  width: 100%;
  filter: drop-shadow(0 0.35rem 0.9rem rgba(0, 0, 0, 0.32));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.05rem, 3.2vw, 2.8rem);
}

.site-nav a {
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-shadow: 0 0.16rem 0.8rem rgba(0, 0, 0, 0.45);
}

.site-header.is-scrolled .site-nav a {
  text-shadow: none;
}

.floating-whatsapp {
  position: fixed;
  right: clamp(1rem, 2.2vw, 1.75rem);
  bottom: clamp(1rem, 2.2vw, 1.75rem);
  z-index: 30;
  display: grid;
  place-items: center;
  width: clamp(3.2rem, 5vw, 4.4rem);
  aspect-ratio: 1;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 0.85rem 1.8rem rgba(35, 29, 22, 0.2);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 1rem 2.2rem rgba(35, 29, 22, 0.24);
}

.floating-whatsapp img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: min(720px, 72vh);
  overflow: hidden;
  background: #b9a17d;
  color: #fff9ef;
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide.is-active img {
  animation: heroZoom 7200ms ease-out forwards;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(8, 6, 4, 0.38), rgba(8, 6, 4, 0.34)),
    linear-gradient(90deg, rgba(8, 6, 4, 0.42), rgba(8, 6, 4, 0.08), rgba(8, 6, 4, 0.46));
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(650px, calc(100vw - 2rem));
  margin-top: clamp(8.4rem, 19vh, 10.8rem);
  padding-top: 0;
  text-align: center;
}

.hero-copy p {
  margin: 0 0 0.9rem;
  color: rgba(255, 249, 239, 0.76);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 2.25vw, 2rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-wrap: balance;
}

.intro-section {
  display: grid;
  justify-items: center;
  padding: clamp(1.9rem, 3.2vw, 2.5rem) 1.25rem clamp(3.8rem, 9vw, 7rem);
  background: var(--paper-soft);
  text-align: center;
}

.intro-logo {
  width: clamp(4.6rem, 7vw, 5.8rem);
  margin-bottom: 0.75rem;
}

.intro-copy {
  width: min(680px, 100%);
}

.intro-copy p {
  margin: 0 0 1rem;
  color: rgba(35, 29, 22, 0.62);
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  line-height: 1.65;
}

.gold-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  margin-top: 1.1rem;
  padding: 0 1.35rem;
  color: #fff9ef;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.88rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}

.gold-button {
  min-width: 15rem;
  border-radius: 0.45rem;
  background: linear-gradient(90deg, #b58128, #c3b82d);
}

.section-heading {
  margin-top: clamp(4rem, 9vw, 6rem);
  text-align: center;
}

.section-heading p {
  margin: 0;
  color: rgba(35, 29, 22, 0.48);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1;
  text-transform: uppercase;
}

.section-heading h2,
.offer-copy h2,
.dream-copy h2,
.reviews-section h2 {
  margin: 0;
  color: rgba(35, 29, 22, 0.68);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading h2 {
  text-transform: uppercase;
}

.offer-section,
.dream-section {
  padding: clamp(3rem, 7vw, 5rem) 1.25rem;
  background: var(--paper);
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2.1rem, 4.2vw, 4rem);
  align-items: center;
  width: min(980px, 100%);
  margin: 0 auto;
}

.offer-photo,
.dream-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 0.7rem;
  aspect-ratio: 1.58;
  box-shadow: 0 1.5rem 3.5rem rgba(58, 45, 22, 0.08);
  background: #eadfcf;
}

.offer-photo img,
.dream-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  transition: opacity 700ms ease;
  will-change: opacity;
  pointer-events: none;
}

.offer-copy,
.dream-copy {
  color: rgba(35, 29, 22, 0.68);
}

.offer-copy--right {
  text-align: left;
}

.section-ornament {
  position: relative;
  width: 9.6rem;
  height: 1px;
  margin: 1rem 0 1.4rem;
  background: var(--line);
}

.offer-copy--right .section-ornament {
  margin-left: 0;
}

.section-ornament::before,
.section-ornament::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.38rem;
  height: 0.38rem;
  border: 1px solid rgba(63, 89, 91, 0.85);
  background: var(--paper);
  transform: translate(-50%, -50%) rotate(45deg);
}

.section-ornament::after {
  width: 0.16rem;
  height: 0.16rem;
  background: rgba(63, 89, 91, 0.85);
}

.offer-copy p,
.dream-copy p {
  margin: 0;
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.72;
}

.dream-section {
  background: var(--paper-soft);
}

.dream-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5.6rem);
  align-items: center;
  width: min(980px, 100%);
  margin: 0 auto;
}

.reviews-section {
  padding: clamp(3rem, 7vw, 5rem) 1.25rem 4rem;
  background: var(--paper-deep);
  text-align: center;
}

.reviews-section .section-heading {
  margin-top: 0;
}

.reviews-section .section-ornament {
  margin: 0.9rem auto 2.1rem;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: min(980px, 100%);
  margin: 0 auto;
}

.review-card {
  position: relative;
  min-height: 12rem;
  padding: 2.3rem 1.05rem 1rem;
  border: 1px solid rgba(35, 29, 22, 0.12);
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 0.8rem 1.8rem rgba(30, 25, 18, 0.04);
}

.review-avatar {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  display: grid;
  place-items: center;
  width: 3rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #c99a31;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  transform: translateX(-50%);
}

.review-card:nth-child(2) .review-avatar {
  background: #63756a;
}

.review-card:nth-child(3) .review-avatar {
  background: #b88475;
}

.review-card:nth-child(4) .review-avatar {
  background: #806c52;
}

.review-card h3 {
  margin: 0;
  color: #18140f;
  font-size: 0.95rem;
  line-height: 1.25;
}

.review-meta {
  margin: 0.22rem 0 0.5rem;
  color: rgba(35, 29, 22, 0.48);
  font-size: 0.75rem;
  line-height: 1.35;
}

.review-stars {
  margin: 0 0 0.55rem;
  color: #efad29;
  letter-spacing: 0.05em;
}

.review-card p:not(.review-meta):not(.review-stars) {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: rgba(24, 20, 15, 0.82);
  font-size: 0.86rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.outline-button {
  margin-top: 1.4rem;
  border: 1px solid rgba(35, 29, 22, 0.34);
  color: var(--ink);
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

@media (max-width: 900px) {
  .site-header {
    justify-content: flex-end;
    min-height: 4rem;
    padding: 0 1rem;
  }

  .site-logo {
    left: 1rem;
    width: 3.25rem;
  }

  .site-nav {
    gap: 0.72rem;
  }

  .site-nav a {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-copy {
    width: min(100vw - 2rem, 34rem);
    margin-top: 34vh;
  }

  .hero-copy p {
    font-size: 0.7rem;
    letter-spacing: 0.13em;
  }

  .hero-copy h1 {
    font-size: clamp(1.55rem, 6.2vw, 2.15rem);
    letter-spacing: 0.04em;
  }

  .offer-grid,
  .dream-row {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .offer-copy--right {
    text-align: left;
  }

  .offer-copy--right .section-ornament {
    margin-left: 0;
  }

  .offer-grid .offer-copy--right {
    order: 4;
  }

  .offer-grid .offer-photo:nth-of-type(2) {
    order: 3;
  }

  .review-cards {
    grid-template-columns: 1fr;
    gap: 2.3rem;
    width: min(100%, 24rem);
  }
}

@media (max-width: 420px) {
  .site-nav {
    gap: 0.5rem;
  }

  .site-nav a {
    font-size: 0.52rem;
  }

  .intro-section,
  .offer-section,
  .dream-section,
  .reviews-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
