:root {
  --cream: #f7f2e9;
  --paper: #fffdf8;
  --ink: #3f2d24;
  --muted: #78675d;
  --terracotta: #b96845;
  --terracotta-soft: #d99a7b;
  --olive: #3f5d2d;
  --olive-dark: #29421e;
  --line: rgba(102, 70, 52, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(210px, 0.8fr) 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.4rem 4.5vw;
}

.brand {
  width: 245px;
  height: 70px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.3rem, 2.7vw, 3.2rem);
  font-size: 0.9rem;
}

nav a {
  border-bottom: 1px solid transparent;
  padding: 0.3rem 0;
  transition: border-color 180ms ease;
}

nav a:hover,
nav a:focus-visible {
  border-color: currentColor;
}

.header-cta,
.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-weight: 700;
}

.header-cta {
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  color: white;
  backdrop-filter: blur(8px);
}

.hero {
  display: grid;
  min-height: 100svh;
  grid-template-columns: 43% 57%;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8.5rem 6.5vw 4rem 5.2vw;
  background:
    radial-gradient(circle at 12% 90%, rgba(185, 104, 69, 0.08), transparent 28%),
    var(--cream);
}

.hero-copy::after {
  position: absolute;
  z-index: -1;
  top: -3%;
  right: -6.5rem;
  width: 13rem;
  height: 106%;
  border-right: 1px solid rgba(185, 104, 69, 0.7);
  border-radius: 0 50% 50% 0;
  background: var(--cream);
  content: "";
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--terracotta);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  max-width: 680px;
  font-size: clamp(3.4rem, 5.5vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

h1 em {
  color: var(--terracotta);
  font-weight: 400;
}

.hero-description {
  max-width: 550px;
  margin: 1.8rem 0 1.35rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.55;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.55rem;
}

.hero-facts span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.68rem 0.9rem;
  background: rgba(255, 255, 255, 0.42);
  color: #5e493d;
  font-size: 0.78rem;
}

.primary-cta {
  width: fit-content;
  border-radius: 999px;
  padding: 1.05rem 1.35rem;
  background: var(--olive);
  color: white;
  box-shadow: 0 12px 28px rgba(54, 83, 37, 0.22);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.primary-cta:hover,
.primary-cta:focus-visible {
  transform: translateY(-2px);
  background: var(--olive-dark);
}

.cta-note {
  margin: 0.7rem 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.hero-visual {
  position: relative;
  min-height: 700px;
  background: #b9b8a0;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 35, 18, 0.2), transparent 38%, rgba(20, 28, 15, 0.3));
  content: "";
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 57%;
}

.hero-badge {
  position: absolute;
  z-index: 1;
  right: 3rem;
  bottom: 7rem;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 1.3rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 15px 40px rgba(25, 33, 17, 0.16);
  backdrop-filter: blur(10px);
}

.hero-badge strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 400;
}

.hero-badge span {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.scroll-hint {
  position: absolute;
  z-index: 1;
  right: 3rem;
  bottom: 2rem;
  display: flex;
  gap: 1rem;
  color: white;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.promise {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 8vw;
  padding: 7rem 7vw;
  background: var(--paper);
}

.promise h2 {
  max-width: 850px;
  font-size: clamp(2.4rem, 4vw, 4.7rem);
  line-height: 1.02;
}

.promise div p {
  max-width: 640px;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.day-story {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: 0 5vw 6rem;
}

.day-story article {
  position: relative;
  min-height: 280px;
  border-left: 1px solid var(--line);
  padding: 2.5rem 3vw;
}

.day-story article:last-child {
  border-right: 1px solid var(--line);
}

.day-story article > span {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  color: rgba(185, 104, 69, 0.35);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
}

.day-story h3,
.audience-cards h3 {
  margin: 0.3rem 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.1vw, 2.2rem);
  font-weight: 400;
}

.day-story article > p:last-child,
.audience-cards article > p:last-child {
  max-width: 340px;
  color: var(--muted);
  line-height: 1.65;
}

.house-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 820px;
}

.house-photo {
  position: relative;
  overflow: hidden;
}

.house-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.house-photo > span {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  border-radius: 999px;
  padding: 0.8rem 1rem;
  background: rgba(255, 253, 248, 0.9);
  color: var(--ink);
  font-size: 0.76rem;
  backdrop-filter: blur(8px);
}

.house-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 7vw 6rem 6vw;
  background: #e9eee2;
}

.house-copy h2,
.section-heading h2,
.video-copy h2,
.for-who h2,
.location-copy h2,
.instagram-section h2,
.faq-heading h2,
.final-cta h2 {
  font-size: clamp(2.6rem, 4.3vw, 5rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.house-copy > p:not(.eyebrow) {
  margin: 1.5rem 0 2.2rem;
  color: var(--muted);
  line-height: 1.7;
}

.amenities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(63, 93, 45, 0.22);
  border-left: 1px solid rgba(63, 93, 45, 0.22);
}

.amenities div {
  display: flex;
  min-height: 105px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(63, 93, 45, 0.22);
  border-bottom: 1px solid rgba(63, 93, 45, 0.22);
  padding: 1rem;
}

.amenities strong {
  color: var(--olive);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
}

.amenities span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.74rem;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 2rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1rem;
  color: #56604c;
  font-size: 0.82rem;
  line-height: 1.5;
}

.feature-list li::before {
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terracotta);
  content: "";
}

.gallery-section {
  padding: 8rem 4vw;
  background: var(--paper);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin: 0 auto 3rem;
  max-width: 1440px;
}

.section-heading > p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  max-width: 1440px;
  margin: 0 auto;
  grid-auto-rows: 270px;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 0.4rem;
  background: #ddd3c5;
}

.gallery-grid figure::after {
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgba(28, 27, 18, 0.58));
  content: "";
}

.gallery-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.gallery-grid figcaption {
  position: absolute;
  z-index: 1;
  bottom: 1rem;
  left: 1.1rem;
  color: white;
  font-size: 0.8rem;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.video-section,
.location-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 660px;
}

.video-image,
.location-image {
  position: relative;
  overflow: hidden;
}

.video-image img,
.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 6vw;
  background: var(--terracotta);
  color: #fff7ef;
}

.video-copy .eyebrow,
.final-cta .eyebrow {
  color: #f6d7c8;
}

.video-copy > p:not(.eyebrow) {
  margin: 1.5rem 0;
  color: rgba(255, 247, 239, 0.78);
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  gap: 0.7rem;
  border-bottom: 1px solid currentColor;
  padding: 0.45rem 0;
  font-weight: 700;
}

.for-who {
  padding: 8rem 5vw;
  background: var(--cream);
}

.for-who-heading {
  display: grid;
  max-width: 1370px;
  margin: 0 auto 4rem;
  grid-template-columns: 0.45fr 1fr;
  align-items: end;
  gap: 4rem;
}

.audience-cards {
  display: grid;
  max-width: 1370px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.audience-cards article {
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  padding: 2rem;
  background: rgba(255, 253, 248, 0.65);
}

.audience-cards article:nth-child(2) {
  transform: translateY(1.5rem);
  background: var(--olive);
  color: white;
}

.audience-cards article:nth-child(2) > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.audience-cards article > span {
  display: inline-flex;
  margin-bottom: 6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  color: var(--terracotta);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audience-cards article:nth-child(2) > span {
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.location-section {
  grid-template-columns: 0.9fr 1.1fr;
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 6vw;
  background: #e9eee2;
}

.location-copy > p:not(.eyebrow) {
  margin: 1.5rem 0 2rem;
  color: var(--muted);
  line-height: 1.7;
}

.location-note {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--terracotta);
  padding-left: 1rem;
}

.location-note span {
  max-width: 430px;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 7px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  background: var(--terracotta);
  color: white;
  box-shadow: 0 12px 30px rgba(35, 34, 20, 0.24);
  font-size: 0.75rem;
  transform: translate(-50%, -50%);
}

.instagram-section {
  padding: 8rem 1.5rem;
  background:
    linear-gradient(rgba(37, 57, 25, 0.86), rgba(37, 57, 25, 0.88)),
    url("/images/varanda-estar.jpeg") center / cover;
  color: white;
  text-align: center;
}

.instagram-section h2 {
  max-width: 850px;
  margin: 0 auto;
}

.instagram-section > p:not(.eyebrow) {
  margin: 1.5rem auto 2rem;
  color: rgba(255, 255, 255, 0.76);
}

.secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 1rem 1.3rem;
  font-weight: 700;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  padding: 8rem 7vw;
  background: var(--paper);
}

.faq-heading > p:not(.eyebrow) {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 1.4rem 0;
}

.faq-list summary {
  position: relative;
  padding-right: 2rem;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: -0.15rem;
  right: 0;
  color: var(--terracotta);
  content: "+";
  font-family: Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 300;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 630px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.final-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 4rem;
  padding: 7rem 7vw;
  background: var(--terracotta);
  color: white;
}

.final-cta h2 {
  max-width: 850px;
}

.final-cta > div > p:last-child {
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.primary-cta.light {
  flex: 0 0 auto;
  background: white;
  color: var(--ink);
  box-shadow: none;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 3rem;
  padding: 4rem 6vw;
  background: #25391c;
  color: rgba(255, 255, 255, 0.75);
}

.footer-logo {
  width: min(350px, 100%);
  height: auto;
}

footer p {
  margin: 0.35rem 0;
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  gap: 1.3rem;
  color: white;
  font-size: 0.8rem;
}

.mobile-whatsapp {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 1rem;
  }

  .brand {
    width: 185px;
    height: 56px;
  }

  nav {
    display: none;
  }

  .header-cta {
    border-color: var(--line);
    color: var(--ink);
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }

  .hero-copy {
    order: 2;
    padding: 3.4rem 1.25rem 4.2rem;
  }

  .hero-copy::after {
    display: none;
  }

  .hero-visual {
    order: 1;
    min-height: 58svh;
  }

  .hero-badge {
    right: 1rem;
    bottom: 1rem;
  }

  .scroll-hint {
    display: none;
  }

  .promise {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 5rem 1.25rem;
  }

  .day-story {
    display: block;
    padding: 0 1.25rem 4rem;
  }

  .day-story article {
    min-height: 230px;
    border-right: 1px solid var(--line);
  }

  .house-section,
  .video-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .house-photo,
  .video-image,
  .location-image {
    min-height: 63svh;
  }

  .house-copy,
  .video-copy,
  .location-copy {
    padding: 5rem 1.25rem;
  }

  .amenities {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .gallery-section {
    padding: 5rem 1.25rem;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 1rem;
  }

  .gallery-grid {
    display: grid;
    grid-auto-rows: 230px;
    grid-template-columns: 1fr 1fr;
  }

  .gallery-wide {
    grid-column: span 2;
  }

  .gallery-tall {
    grid-row: span 2;
  }

  .video-copy {
    order: -1;
  }

  .for-who {
    padding: 5rem 1.25rem 7rem;
  }

  .for-who-heading {
    display: block;
    margin-bottom: 2rem;
  }

  .audience-cards {
    grid-template-columns: 1fr;
  }

  .audience-cards article {
    min-height: 290px;
  }

  .audience-cards article:nth-child(2) {
    transform: none;
  }

  .audience-cards article > span {
    margin-bottom: 4rem;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 1.25rem;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 5rem 1.25rem 7rem;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 4rem 1.25rem 7rem;
  }

  .mobile-whatsapp {
    position: fixed;
    z-index: 50;
    right: 0.7rem;
    bottom: 0.7rem;
    left: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    border-radius: 999px;
    padding: 1rem;
    background: var(--olive);
    color: white;
    box-shadow: 0 14px 35px rgba(31, 48, 21, 0.35);
    font-size: 0.86rem;
    font-weight: 700;
  }
}

@media (max-width: 560px) {
  .header-cta {
    padding: 0.75rem 0.85rem;
    font-size: 0.75rem;
  }

  .hero-visual {
    min-height: 55svh;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 4.4rem);
  }

  .hero-facts span {
    flex: 1 1 46%;
  }

  .gallery-grid {
    display: block;
  }

  .gallery-grid figure {
    height: 370px;
    margin-bottom: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition-duration: 0.01ms !important;
  }
}
