﻿:root {
  --forest: #22382b;
  --forest-2: #31513e;
  --sage: #73866d;
  --sand: #e8ddcc;
  --cream: #fbf7ef;
  --white: #fffdfa;
  --wood: #9a6a42;
  --clay: #b98562;
  --ink: #1f2621;
  --muted: #6d736c;
  --line: rgba(34, 56, 43, .14);
  --shadow: 0 24px 70px rgba(31, 38, 33, .14);
  --radius: 8px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--forest);
  color: var(--cream);
  font-size: 13px;
  letter-spacing: .02em;
}

.topbar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar a {
  color: var(--sand);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 247, 239, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 148px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(560px, 48vw, 780px);
  height: 132px;
  overflow: hidden;
  line-height: 1;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: var(--forest);
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  border-color: var(--wood);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  color: var(--forest);
  font-size: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(34, 56, 43, .2);
}

.btn-primary:hover {
  background: var(--forest-2);
}

.btn-secondary {
  background: var(--white);
  color: var(--forest);
  border-color: var(--line);
}

.btn-ghost {
  color: var(--forest);
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.18);
}

.hero {
  position: relative;
  min-height: calc(100vh - 114px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 30, 24, .78) 0%, rgba(20, 30, 24, .38) 52%, rgba(20, 30, 24, .2) 100%);
  z-index: 1;
}

.hero-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.hero .container {
  position: relative;
  z-index: 2;
  padding: 88px 0;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--wood);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sand);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--forest);
  line-height: .98;
  font-family: var(--font-serif);
  font-weight: 700;
}

.hero h1 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(48px, 8vw, 92px);
}

.hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.9);
  font-size: 19px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  width: min(1080px, 100%);
  margin-top: 52px;
  background: rgba(255,255,255,.24);
  border: 1px solid rgba(255,255,255,.24);
}

.hero-badges div,
.hero-badges a {
  padding: 18px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
}

.hero-badges strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 24px;
}

.hero-badges span {
  display: block;
  color: rgba(255,255,255,.82);
  font-size: 13px;
}

.hero-badges a:hover {
  background: rgba(255,255,255,.22);
}

.section {
  padding: 92px 0;
}

.section.alt {
  background: var(--white);
}

.section.sand {
  background: var(--sand);
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(38px, 5vw, 64px);
}

.section-head p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 56px;
  align-items: center;
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}

.media-frame.wide {
  aspect-ratio: 16 / 10;
}

.media-frame img {
  height: 100%;
  object-fit: cover;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 16px 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
  color: var(--forest);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(31, 38, 33, .08);
}

.card img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.card-body {
  padding: 26px;
}

.card h3 {
  font-size: 34px;
}

.card p {
  color: var(--muted);
  margin: 14px 0 22px;
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.mini-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
}

.experience-grid,
.gallery-grid,
.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.experience {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.experience span {
  color: var(--wood);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 11px;
}

.experience h3 {
  margin-top: 12px;
  font-size: 29px;
}

.experience p {
  margin-bottom: 0;
  color: var(--muted);
}

.gallery-grid {
  grid-auto-flow: dense;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  background: var(--sand);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.quote {
  background: var(--forest);
  color: var(--cream);
}

.quote blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.04;
}

.quote p {
  color: var(--sand);
  margin: 18px 0 0;
}

.location-box {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 28px;
  align-items: stretch;
}

.location-panel {
  background: var(--forest);
  color: var(--cream);
  padding: 34px;
  border-radius: var(--radius);
}

.location-panel h2 {
  color: var(--white);
  font-size: 48px;
}

.location-panel p,
.location-panel li {
  color: rgba(251,247,239,.82);
}

.map-embed {
  min-height: 420px;
  border: 0;
  border-radius: var(--radius);
  width: 100%;
  filter: saturate(.85);
}

.cta-band {
  padding: 70px 0;
  background:
    linear-gradient(rgba(34,56,43,.78), rgba(34,56,43,.78)),
    url("../images/home-cta-jardim-chales.jpeg") center/cover;
  color: var(--white);
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 58px);
}

.cta-band p {
  max-width: 560px;
  color: rgba(255,255,255,.84);
}

.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}

.contact-card h3 {
  font-size: 34px;
  margin-bottom: 12px;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 7px;
  color: var(--forest);
  font-weight: 800;
  font-size: 14px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  min-height: 48px;
  padding: 12px 14px;
  font: inherit;
}

.form textarea {
  min-height: 110px;
  resize: vertical;
}

.site-footer {
  padding: 54px 0 28px;
  background: #17251c;
  color: rgba(251,247,239,.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 32px;
}

.site-footer strong,
.site-footer h3 {
  color: var(--white);
}

.site-footer h3 {
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-footer ul {
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
  color: rgba(251,247,239,.62);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  min-height: 58px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: #1f8f4d;
  color: var(--white);
  box-shadow: 0 16px 34px rgba(31, 143, 77, .36);
  font-weight: 900;
}

.page-hero {
  padding: 88px 0;
  background: var(--forest);
  color: var(--white);
}

.page-hero h1 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(46px, 7vw, 82px);
}

.page-hero p {
  max-width: 650px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
}

.amenity-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.amenity-row div {
  padding: 18px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
}

.seo-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.seo-card h3 {
  font-size: 28px;
}

@media (max-width: 980px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 16px 20px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 0;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-actions .btn {
    display: none;
  }

  .split,
  .location-box,
  .contact-grid,
  .footer-grid,
  .cta-band .container {
    grid-template-columns: 1fr;
  }

  .cta-band .container {
    display: grid;
  }

  .experience-grid,
  .seo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .amenity-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .topbar .container {
    justify-content: center;
    text-align: center;
  }

  .topbar span:last-child {
    display: none;
  }

  .brand {
    width: 330px;
    height: 110px;
  }

  .brand img {
    width: 100%;
    height: 100%;
  }

  .hero {
    min-height: 720px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(20, 30, 24, .58) 0%, rgba(20, 30, 24, .84) 100%);
  }

  .hero .container {
    padding: 64px 0 42px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-badges,
  .cards,
  .feature-list,
  .experience-grid,
  .gallery-grid,
  .seo-grid,
  .amenity-row {
    grid-template-columns: 1fr;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .section {
    padding: 66px 0;
  }

  .whatsapp-float {
    left: 14px;
    right: 14px;
    justify-content: center;
  }
}


