/* FONTS -4 */
@font-face {
  font-family: "Canela";
  src: url("../fonts/canela/Canela-Medium.otf") format("otf");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Canela";
  src: url("../fonts/canela/Canela-MediumItalic.otf") format("otf");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Canela";
  src: url("../fonts/canela/Canela-Thin.otf") format("otf");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f6f1e8;
  --bg-soft: #efe7db;

  --text: #3d342c;
  --text-soft: #74675c;

  --stone: #d8c7b3;
  --cypress: #66745f;
  --pool: #6ea6b4;
  --pool-bright: #4FC6E4;
  --terracotta-soft: #bf8668;
  --line: #ddd1c2;

  --container: 1200px;
  --text-container: 760px;

  --header-height: 72px;
  --radius: 22px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: "Canela", serif;
  font-weight: 400;
  line-height: 0.95;
  margin: 0;
}

p {
  line-height: 1.75;
  color: var(--text-soft);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.text-container {
  max-width: var(--text-container);
}

.section {
  min-height: 100vh;
  padding: 140px 0;
  scroll-margin-top: 100px;
  position: relative;
}

.section-soft {
  background: var(--bg-soft);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cypress);
}

h2 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  margin-bottom: 28px;
}

.site-header {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  width: min(calc(100% - 48px), 1040px);
  height: var(--header-height);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;

  padding: 0 26px;
  color: white;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(12px);

  transition:
    top 0.45s var(--ease),
    bottom 0.45s var(--ease),
    width 0.45s var(--ease),
    border-radius 0.45s var(--ease),
    background 0.45s var(--ease),
    color 0.45s var(--ease),
    border-color 0.45s var(--ease);
}

.site-header.is-fixed {
  top: 16px;
  bottom: auto;
  color: var(--text);
  background: rgba(246, 241, 232, 0.94);
  border-color: var(--line);
  box-shadow: 0 12px 35px rgba(61, 52, 44, 0.08);
}

.site-logo {
  font-family: "Canela", serif;
  font-size: 1.4rem;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  position: relative;
  padding: 11px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 1px;
  background: var(--pool-bright);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-link.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: flex-end;

  background-image: url("../images/infiniti-colli.webp");
  background-size: cover;
  background-position: center 50%;
  color: white;
}

.hero {
  overflow: hidden;
}

.hero-content {
  opacity: 0;
  transform: translateY(18px);
  animation: heroTextIn 1.2s var(--ease) 0.35s forwards;
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), 980px);
  margin-inline: auto;
  padding-bottom: 150px;
}

@keyframes heroTextIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.villa-gallery-main img {
  transition: transform 1.2s var(--ease);
}

@media (hover: hover) {
  .villa-gallery-main a:hover img {
    transform: scale(1.025);
  }
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(35, 28, 22, 0.48),
      rgba(35, 28, 22, 0.14),
      rgba(35, 28, 22, 0.08)
    );
}


.hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(4rem, 10vw, 9rem);
}

.hero-text {
  max-width: 520px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.scroll-indicator {
  position: absolute;
  z-index: 2;
  right: 42px;
  bottom: 132px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  writing-mode: vertical-rl;
}

.scroll-indicator::after {
  content: "";
  display: block;
  width: 1px;
  height: 54px;
  margin: 14px auto 0;
  background: rgba(255, 255, 255, 0.65);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;

  padding: 40px;
  background: var(--bg);
  color: var(--text);

  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.45s var(--ease),
    transform 0.45s var(--ease);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu a {
  font-family: "Canela", serif;
  font-size: clamp(2.7rem, 13vw, 5.5rem);
  line-height: 0.95;
}

@media (prefers-reduced-motion: reduce) {
  .hero-content {
    transform: none !important;
  }
}


/* VILLA */

#villa {
  position: relative;
  margin-top: -40px;
  padding-top: 150px;
  background: var(--bg);
  z-index: 5;
}


/* VILLA  -  GALLERY */
.section-intro {
  margin-bottom: 90px;
}

.section-intro h2 {
  max-width: 900px;
}

.section-intro p:last-child {
  max-width: 620px;
  font-size: 1.05rem;
}

.gallery-container {
  max-width: 1180px;
}

.villa-gallery-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.villa-gallery-main .swiper-slide {
  aspect-ratio: 16 / 9;
  background: var(--stone);
}

.villa-gallery-main img,
.villa-gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.villa-gallery-main a {
  display: block;
  width: 100%;
  height: 100%;
}

.villa-gallery-thumbs {
  margin-top: 18px;
}

.villa-gallery-thumbs .swiper-slide {
  height: 92px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.48;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.villa-gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  transform: translateY(-2px);
}

.gallery-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transform: translateY(-50%);
}

.gallery-arrow-prev {
  left: 22px;
}

.gallery-arrow-next {
  right: 22px;
}

.gallery-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 11px;
  height: 11px;
  margin: auto;
  border-top: 2px solid white;
  border-right: 2px solid white;
}

.gallery-arrow-prev::before {
  transform: rotate(-135deg);
}

.gallery-arrow-next::before {
  transform: rotate(45deg);
}

.glightbox-clean .gslide-description {
  /* background: var(--bg); */
  background: rgba(0, 0, 0, 0.65);
}

.glightbox-clean .gslide-title {
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-soft);
}

@media (max-width: 700px) {
  .villa-gallery-main {
    border-radius: 0;
  }

  .gallery-container {
    width: 100%;
  }

  .villa-gallery-main .swiper-slide {
    aspect-ratio: 4 / 5;
  }

  .villa-gallery-thumbs {
    width: calc(100% - 40px);
  }

  .villa-gallery-thumbs .swiper-slide {
    height: 74px;
  }

  .gallery-arrow {
    display: none;
  }
}

/* VILLA  -  ACCORDION */
.villa-accordion {
  max-width: 920px;
  margin-top: 80px;
}

.accordion-item {
  border-top: 1px solid var(--line);
}

.accordion-item:last-child {
  border-bottom: 1px solid var(--line);
}

.accordion-trigger {
  width: 100%;
  padding: 30px 0;
  border: 0;
  background: transparent;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  font-family: "Canela", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.accordion-icon {
  position: relative;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 22px;
  height: 1px;
  background: var(--cypress);
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease);
}

.accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item.is-open .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}

.accordion-content p {
  max-width: 680px;
  margin: 0;
  padding: 0 0 34px;
  font-size: 1.02rem;
}

.accordion-gallery-row {
  max-width: 680px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;

  padding: 0 0 42px;
}

.accordion-gallery-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;

  border-radius: 14px;

  transition:
    transform 1.3s var(--ease),
    filter 0.5s ease;
}

.accordion-gallery-row img:hover {
  transform: scale(1.035);
  filter: saturate(1.03);
}

@media (max-width: 760px) {
  .accordion-gallery-row {
    display: flex;
    overflow-x: auto;
    gap: 12px;

    padding-bottom: 38px;
    scroll-snap-type: x proximity;
  }

  .accordion-gallery-row img {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }
}

@media (max-width: 700px) {
  .villa-accordion {
    margin-top: 58px;
  }

  .accordion-trigger {
    padding: 24px 0;
  }
}

/* GARDEN */

.garden-section {
  overflow: hidden;
  background: var(--bg-soft);
}

.garden-intro-wrap {
  margin-bottom: 90px;
}

.garden-intro {
  max-width: 760px;
}

.garden-intro h2 {
  max-width: 860px;
}

.garden-intro p:last-child {
  max-width: 560px;
}

/* FULL IMAGE */

.garden-hero-image {
  width: 100%;
  margin-bottom: 140px;

  overflow: hidden;
}

.garden-hero-image img {
  width: 100%;
  height: 82vh;
  min-height: 680px;

  object-fit: cover;

  transition:
    transform 2.2s var(--ease),
    filter 0.8s ease;
}

@media (hover: hover) {
  .garden-hero-image:hover img {
    transform: scale(1.025);
    filter: saturate(1.02);
  }
}

/* DETAIL BLOCKS */

.garden-details {
  display: flex;
  flex-direction: column;
  gap: 140px;
}

.garden-detail-card {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 70px;
  align-items: center;
}

.garden-detail-card.reverse {
  grid-template-columns: 0.7fr 1.1fr;
}

.garden-detail-card.reverse .garden-detail-image {
  order: 2;
}

.garden-detail-card.reverse .garden-detail-text {
  order: 1;
}

.garden-detail-image {
  overflow: hidden;
  border-radius: 28px;

  box-shadow:
    0 20px 60px rgba(61, 52, 44, 0.08);
}

.garden-detail-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;

  transition:
    transform 1.8s var(--ease),
    filter 0.6s ease;
}

@media (hover: hover) {
  .garden-detail-image:hover img {
    transform: scale(1.045);
    filter: saturate(1.03);
  }
}

.garden-detail-text {
  max-width: 360px;
}

.garden-detail-text h3 {
  margin-bottom: 24px;

  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.96;
}

.garden-detail-text p {
  color: var(--text-soft);
}

/* MOBILE */

@media (max-width: 1000px) {
  .garden-hero-image img {
    height: 70vh;
    min-height: 520px;
  }

  .garden-detail-card,
  .garden-detail-card.reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .garden-detail-card.reverse .garden-detail-image,
  .garden-detail-card.reverse .garden-detail-text {
    order: initial;
  }

  .garden-detail-text {
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .garden-hero-image {
    margin-bottom: 90px;
  }

  .garden-details {
    gap: 90px;
  }

  .garden-hero-image img {
    height: 62vh;
    min-height: 420px;
  }
}


/* ABOUT */

.about-grid {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;

  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
}

.about-image {
  grid-column: 1 / 6;

  width: 100%;
  min-width: 0;

  overflow: hidden;
  border-radius: 24px;

  box-shadow: 0 20px 60px rgba(61, 52, 44, 0.08);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;

  transition:
    transform 1.8s var(--ease),
    filter 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.04);
  filter: saturate(1.03);
}

.about-content {
  grid-column: 7 / 12;
  min-width: 0;
}

.about-content h2 {
  margin-bottom: 30px;
}

.about-content p {
  max-width: 520px;
}

.about-content blockquote {
  margin: 50px 0 0;

  font-family: "Canela", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;

  color: var(--text);
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
    gap: 36px;
  }

  .about-image,
  .about-content {
    grid-column: auto;
    width: 100%;
    max-width: 100%;
  }

  .about-content {
    padding-top: 20px;
  }
}


/* SURROUNDINGS */

.surroundings-section {
  overflow: hidden;
}

.surroundings-layout {
  width: min(calc(100% - 80px), 1120px);
  margin-inline: auto;

  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: center;
}

.surroundings-copy {
  max-width: 470px;
}

.surroundings-copy h2 {
  font-size: clamp(3.2rem, 5.6vw, 6.8rem);
  line-height: 0.98;
  margin-bottom: 34px;
}

.small-line {
  width: 54px;
  height: 1px;
  background: var(--terracotta-soft);
  margin: 0 0 34px;
}

.surroundings-copy > p {
  max-width: 470px;
  font-size: 1.02rem;
}

/* DISTANCE CARD */

.distance-card {
  margin-top: 56px;
  padding: 34px 38px;
  max-width: 390px;

  background: rgba(246, 241, 232, 0.62);
  border: 1px solid rgba(221, 209, 194, 0.75);
  border-radius: 24px;

  box-shadow: 0 20px 60px rgba(61, 52, 44, 0.06);
}

.distance-card h3 {
  margin: 0 0 26px;

  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: var(--text);
}

.distance-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;

  padding: 8px 0;

  font-size: 0.92rem;
  color: var(--text-soft);
}

.distance-row span:first-child::before {
  content: "";
  display: inline-block;

  width: 8px;
  height: 8px;
  margin-right: 12px;

  border-radius: 50%;
  background: var(--text-soft);
}

.distance-row.local span:first-child::before {
  background: var(--pool-bright);
}

.distance-divider {
  height: 1px;
  background: var(--line);
  margin: 18px 0;
}

/* MAP COMPOSITION */

.surroundings-map-wrap {
  position: relative;

  min-height: 720px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.map-composition {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 20px;
}

/* ITALY MAP */

.italy-map-layer {
  position: relative;

  width: 100%;
  max-width: 620px;
}

.italy-map-img {
  width: 100%;
  height: auto;
  display: block;
}

/* MARCHE ZOOM */

.marche-map-layer {
  position: relative;

  width: 100%;
  max-width: 320px;

  aspect-ratio: 1 / 1;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(191, 134, 104, 0.45);
  border-radius: 50%;

  background: rgba(246, 241, 232, 0.45);
}

.marche-map-img {
  width: 100%;
  height: auto;
  display: block;

  opacity: 0.95;
}


/* TEXT LABELS */

.marche-label {
  position: absolute;
  left: 60%;
  top: 35%;

  font-family: "Canela", serif;
  font-size: 1.45rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: var(--terracotta-soft);
}

.marche-title {
  position: absolute;
  left: 29%;
  top: 78%;

  font-family: "Canela", serif;
  font-size: 1.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: var(--text-soft);
  opacity: 0.85;
}

.distance-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 8px;

  color: var(--terracotta-soft);

  font-size: 0.88rem;
  font-weight: 600;

  transition: color 0.3s ease;
}

.distance-map-link:hover {
  color: var(--text);
}

/* RESPONSIVE */

@media (max-width: 1000px) {
  .surroundings-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .surroundings-copy {
    max-width: 760px;
  }

  .surroundings-map-wrap {
    min-height: auto;
  }

  .map-composition {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .map-connector {
    display: none;
  }

  .marche-map-layer {
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
  }

  .distance-card {
    max-width: 100%;
  }
}



@media (max-width: 700px) {

    .marche-title {
    font-size: 1rem;
  }

  .map-city,
  .marche-label,
  .marche-title {
    white-space: normal;
  }
}
/* CURATED PLACES */

.places-curated {
  width: min(calc(100% - 80px), 1120px);
  margin: 140px auto 0;
}

.places-heading {
  max-width: 760px;
  margin-bottom: 70px;
}

.places-heading h3 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.02;
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.place-feature-card {
  display: flex;
  flex-direction: column;
}

.place-image {
  display: block;

  overflow: hidden;
  border-radius: 26px;

  background: var(--stone);

  box-shadow:
    0 20px 60px rgba(61, 52, 44, 0.08);
}

.place-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;

  transition:
    transform 1.8s var(--ease),
    filter 0.6s ease;
}

.place-feature-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.03);
}

.place-content {
  padding: 28px 8px 0;
}

.place-content h4 {
  margin-bottom: 14px;

  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.place-content p {
  margin-bottom: 24px;

  color: var(--text-soft);
}

.place-link {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: var(--terracotta-soft);
}

.place-link::after {
  content: "→";

  transition: transform 0.4s ease;
}

.place-feature-card:hover .place-link::after {
  transform: translateX(4px);
}

@media (max-width: 1000px) {
  .places-grid {
    grid-template-columns: 1fr;
  }

  .place-image img {
    aspect-ratio: 16 / 10;
  }
}

/* CONTACT */

.contact-section {
  background: var(--bg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 80px;
  align-items: center;
}

.contact-copy {
  max-width: 720px;
}

.contact-copy h2 {
  margin-bottom: 32px;
}

.contact-copy p:last-child {
  max-width: 520px;
  font-size: 1.05rem;
}

.contact-card {
  padding: 42px;

  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 28px;

  box-shadow:
    0 20px 60px rgba(61, 52, 44, 0.07);
}

.contact-row {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row:first-child {
  padding-top: 0;
}

.contact-row span {
  display: block;
  margin-bottom: 8px;

  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: var(--cypress);
}

.contact-row p {
  margin: 0;

  font-family: "Canela", serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  line-height: 1.05;

  color: var(--text);
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100%;

  margin-top: 34px;
  padding: 16px 28px;

  border-radius: 999px;

  background: var(--text);
  color: var(--bg);

  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.contact-button:hover {
  background: var(--terracotta-soft);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .contact-card {
    padding: 32px;
  }
}

.contact-row address {
  margin: 0;

  font-style: normal;

  color: var(--text);
  font-family: "Canela", serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  line-height: 1.05;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100%;

  margin-bottom: 14px;
  padding: 16px 28px;

  border-radius: 999px;

  
  color: var(--text);
  background: var(--pool);
  color: white;

  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;

  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  background: var(--pool-bright);

}


.floating-whatsapp {
  position: fixed;

  right: 24px;
  bottom: 24px;

  width: 52px;
  height: 52px;

  border-radius: 50%;

  background: var(--pool);
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 300;

  box-shadow:
    0 12px 40px rgba(61, 52, 44, 0.18);

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.06);
  background: var(--pool-bright);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;

  fill: currentColor;
}



/* RESPONSIVE */
@media (max-width: 860px) {
  .site-header {
    top: 18px;
    right: 18px;
    left: auto;
    bottom: auto;
    transform: none;

    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-header.is-fixed {
    top: 18px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-logo,
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 110;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;

    width: 52px;
    height: 52px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    margin-inline: auto;
    background: white;
    border-radius: 999px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
    transition:
      transform 0.35s var(--ease),
      background 0.35s ease,
      box-shadow 0.35s ease;
  }

  .site-header.is-fixed .menu-toggle span,
  body.menu-open .menu-toggle span {
    background: var(--text);
    box-shadow: none;
  }

  body.menu-open .menu-toggle span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .hero-content {
    padding-bottom: 110px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 17vw, 6.2rem);
  }

  .scroll-indicator {
    display: none;
  }

  .section {
    min-height: auto;
    padding: 100px 0;
  }
}


.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 500;

  display: none;
  overflow-y: auto;
  padding: 24px;
}



.contact-modal.is-open {
  display: block;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(61, 52, 44, 0.45);
}

.contact-modal-panel {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), 620px);
  margin: 8vh auto;
  padding: 46px;

  background: var(--bg);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(61, 52, 44, 0.22);
}

.contact-modal-panel {
  position: relative;
  z-index: 2;

  width: min(100%, 620px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;

  margin: 0 auto;
  padding: 46px;

  background: var(--bg);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(61, 52, 44, 0.22);
}

.contact-modal-close {
  position: absolute;
  top: 22px;
  right: 26px;
  border: 0;
  background: transparent;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text);
}

.contact-form {
  display: grid;
  gap: 22px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cypress);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-soft);
  font: inherit;
  color: var(--text);
}

body.modal-open {
  overflow: hidden;
}


.contact-success {
  display: none;
}

.contact-modal-panel.is-success .contact-form {
  display: none;
}

.contact-modal-panel.is-success .contact-success {
  display: block;
}

.success-countdown {
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.contact-success {
  display: none;
}

.contact-modal-panel.is-success .contact-default-content {
  display: none;
}

.contact-modal-panel.is-success .contact-success {
  display: block;
}

.privacy-check {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-top: 18px;

  font-size: 0.85rem;
  line-height: 1.4;

  color: var(--cypress);
}



.privacy-check input {
  appearance: none;

  width: 22px;
  height: 22px;

  border: 1px solid var(--line);
  border-radius: 6px;

  background: var(--bg-soft);

  flex-shrink: 0;

  cursor: pointer;
  position: relative;
}

.privacy-check input:checked {
  background: var(--pool);
  border-color: var(--pool);
}

.privacy-check input:checked::after {
  content: "✓";
  background: var(--pool) !important;

  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -55%);

  color: white;
  font-size: 13px;
  font-weight: 700;
}



.privacy-check span {
  display: inline;
}

.privacy-check a {
  color: var(--terracotta-soft);
  text-decoration: none;
}

.contact-form .privacy-check {
  display: flex;
  align-items: center;
  gap: 14px;
}


.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;

  width: min(420px, calc(100vw - 48px));

  z-index: 999;

  background: var(--bg);

  border: 1px solid var(--line);
  border-radius: 22px;

  box-shadow:
    0 20px 60px rgba(61, 52, 44, 0.12);

  padding: 22px;
}

.cookie-content p {
  margin: 0 0 18px;

  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-content a {
  color: var(--terracotta-soft);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  border: none;
  cursor: pointer;

  padding: 12px 18px;

  border-radius: 999px;

  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  transition: all 0.3s ease;
}

.cookie-btn-primary {
  background: var(--text);
  color: var(--bg);
}

.cookie-btn-primary:hover {
  background: var(--terracotta-soft);
}

.cookie-btn-secondary {
  background: transparent;
  color: var(--text);

  border: 1px solid var(--line);
}

@media (max-width: 700px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }
}

/* FOOTER */

.site-footer {
  margin-top: 160px;

  border-top: 1px solid var(--line);

  background: var(--bg-soft);
}

.footer-layout {
  padding-top: 70px;
  padding-bottom: 50px;

  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 60px;
  align-items: start;
}

.footer-brand h3 {
  margin-bottom: 12px;

  font-size: 1.5rem;
}

.footer-brand p {
  color: var(--text-soft);
}

.footer-links,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a,
.footer-legal a {
  color: var(--text-soft);
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--terracotta-soft);
}

.footer-bottom {
  padding: 26px 0;

  border-top: 1px solid var(--line);

  text-align: center;
}

.footer-bottom p {
  margin: 0;

  font-size: 0.82rem;
  color: var(--text-soft);
}

@media (max-width: 900px) {

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-links,
  .footer-legal {
    gap: 10px;
  }

}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 500;

  display: none !important;

  overflow-y: auto;
  padding: 24px;
}

.contact-modal.is-open {
  display: block !important;
}

body.modal-open {
  overflow: hidden;
}

.contact-modal-panel {
  position: relative;
  z-index: 2;

  width: min(100%, 620px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;

  margin: 0 auto;
}

