:root {
  --bg: #f4fbfb;
  --bg-soft: #ffffff;
  --sand: #e7f4f4;
  --seafoam: #d3f0ef;
  --brand: #1fb5b6;
  --brand-deep: #0d7f86;
  --brand-dark: #103d4a;
  --ink: #182028;
  --muted: #557078;
  --white: #ffffff;
  --line: rgba(16, 61, 74, 0.1);
  --shadow: 0 24px 80px rgba(17, 73, 82, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(31, 181, 182, 0.2), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(105, 220, 214, 0.22), transparent 22%),
    linear-gradient(180deg, #f8fdfd 0%, #eef9f8 100%);
}

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

img {
  max-width: 100%;
  display: block;
}

.site-shell {
  overflow: hidden;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
  background: rgba(248, 253, 253, 0.72);
  border-bottom: 1px solid rgba(16, 61, 74, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand__name {
  color: var(--brand-dark);
}

.brand__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1fb5b6, #5cd9d2);
  box-shadow: 0 0 0 8px rgba(31, 181, 182, 0.18);
}

.nav__links {
  display: inline-flex;
  gap: 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav__links a:hover {
  color: var(--brand-dark);
}

.nav__cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav__cta,
.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: 0 18px 40px rgba(31, 181, 182, 0.22);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(16, 61, 74, 0.08);
}

.nav__cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  padding: 4rem 0 2rem;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--brand-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 800;
}

.hero h1,
.section-head h2,
.section-accent__grid h2,
.newsletter h2,
.instagram h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  color: var(--brand-dark);
}

.hero__lead,
.section-copy,
.instagram p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero__lead {
  max-width: 58ch;
  margin: 1.5rem 0 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero__stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 2.25rem 0 0;
}

.hero__stats li {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(16, 61, 74, 0.06);
}

.hero__stats strong,
.hero__stats span {
  display: block;
}

.hero__stats strong {
  font-size: 1.1rem;
  color: var(--brand-dark);
}

.hero__stats span {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.hero__visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.hero-card {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card--main {
  position: absolute;
  inset: 0 4% 8% 10%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(16, 61, 74, 0.08), rgba(16, 61, 74, 0.72)),
    linear-gradient(135deg, #74dedd, #1fb5b6 42%, #0d7f86 100%);
}

.hero-card--main h2 {
  margin: 0.5rem 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.hero-card--main p {
  max-width: 28ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
}

.hero-card__tag,
.feature__tag,
.card__kicker,
.quick-link__label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card__tag,
.feature__tag {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-card--floating {
  position: absolute;
  padding: 1.15rem 1.2rem;
  max-width: 280px;
  backdrop-filter: blur(18px);
}

.hero-card--floating strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.05rem;
  line-height: 1.35;
}

.hero-card--peach {
  top: 12%;
  left: 0;
  background: rgba(211, 240, 239, 0.92);
}

.hero-card--sand {
  right: 0;
  bottom: 2%;
  background: rgba(231, 244, 244, 0.94);
}

.hero-card__mini {
  color: rgba(16, 61, 74, 0.65);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__backdrop {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.6;
  pointer-events: none;
}

.hero__backdrop--one {
  top: 18%;
  left: -10%;
  width: 220px;
  height: 220px;
  background: rgba(31, 181, 182, 0.3);
}

.hero__backdrop--two {
  right: -8%;
  bottom: 4%;
  width: 280px;
  height: 280px;
  background: rgba(116, 222, 221, 0.32);
}

.quick-links {
  padding: 1.5rem 0 1rem;
}

.quick-links__grid,
.cards,
.editorial-grid,
.section-accent__grid,
.instagram__wrap {
  display: grid;
  gap: 1.25rem;
}

.quick-links__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quick-link,
.card,
.feature,
.instagram__panel,
.newsletter__box {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow);
}

.quick-link {
  padding: 1.5rem;
}

.quick-link__label,
.card__kicker {
  background: rgba(31, 181, 182, 0.12);
  color: var(--brand-deep);
}

.quick-link h3,
.card h3,
.feature h3 {
  margin: 0.95rem 0 0;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.section {
  padding: 5rem 0;
}

.section-head {
  max-width: 900px;
  margin-bottom: 1.75rem;
}

.section-head h2,
.section-accent__grid h2,
.newsletter h2,
.instagram h2 {
  font-size: clamp(2.3rem, 4vw, 4.3rem);
}

.editorial-grid {
  grid-template-columns: 1.25fr 0.75fr;
}

.feature {
  min-height: 260px;
  padding: 1.5rem;
  overflow: hidden;
  position: relative;
}

.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(16, 61, 74, 0.06)),
    linear-gradient(135deg, rgba(116, 222, 221, 0.58), rgba(255, 255, 255, 0.18), rgba(31, 181, 182, 0.52));
}

.feature--playa::before,
.feature--paseo::before,
.feature--sunset::before {
  background-size: cover;
  background-position: center;
}

.feature--playa::before {
  background:
    linear-gradient(180deg, rgba(16, 61, 74, 0.02), rgba(16, 61, 74, 0.3)),
    linear-gradient(180deg, rgba(16, 61, 74, 0), rgba(16, 61, 74, 0.6)),
    url("../img/home/hero-playa.jpg") center/cover no-repeat;
}

.feature--large {
  min-height: 520px;
}

.feature--paseo::before {
  background:
    linear-gradient(180deg, rgba(16, 61, 74, 0.05), rgba(16, 61, 74, 0.46)),
    url("../img/home/paseo-cala-millor.jpg") center/cover no-repeat;
}

.feature--sunset::before {
  background:
    linear-gradient(180deg, rgba(16, 61, 74, 0.02), rgba(16, 61, 74, 0.55)),
    url("../img/home/sunset-mirador.jpg") center/cover no-repeat;
}

.feature__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.feature__content p {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.feature__content h3,
.feature__content .feature__tag {
  color: var(--white);
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.section-head--split,
.section-accent__grid,
.instagram__wrap,
.newsletter__box {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 1.45rem;
}

.card--image {
  overflow: hidden;
  padding: 0 0 1.45rem;
}

.card--image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card--image .card__kicker,
.card--image h3,
.card--image p {
  margin-left: 1.45rem;
  margin-right: 1.45rem;
}

.card--image .card__kicker {
  margin-top: 1.15rem;
}

.card p {
  color: var(--muted);
  line-height: 1.65;
}

.section--accent {
  padding-top: 2rem;
}

.section-accent__grid {
  padding: 2rem;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(16, 61, 74, 0.98), rgba(31, 181, 182, 0.92));
  color: var(--white);
  box-shadow: 0 32px 90px rgba(16, 61, 74, 0.22);
}

.checklist {
  display: grid;
  gap: 0.9rem;
}

.checklist__item {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.instagram__panel {
  padding: 1.2rem;
}

.ig-card {
  padding: 1.25rem;
  border-radius: 20px;
  color: var(--white);
  background: linear-gradient(135deg, #1fb5b6, #4cd7d3 42%, #103d4a 100%);
}

.ig-card span {
  display: block;
  opacity: 0.92;
  font-size: 0.92rem;
}

.ig-card strong {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.3rem;
  line-height: 1.25;
}

.ig-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.9rem;
}

.ig-strip span {
  aspect-ratio: 0.84;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(16, 61, 74, 0.08)),
    linear-gradient(135deg, rgba(31, 181, 182, 0.72), rgba(211, 240, 239, 0.8), rgba(16, 61, 74, 0.82));
}

.ig-strip__photo--one {
  background:
    linear-gradient(180deg, rgba(16, 61, 74, 0), rgba(16, 61, 74, 0.26)),
    url("../img/home/hero-playa.jpg") center/cover no-repeat;
}

.ig-strip__photo--two {
  background:
    linear-gradient(180deg, rgba(16, 61, 74, 0), rgba(16, 61, 74, 0.26)),
    url("../img/home/paseo-palmeras.jpg") center/cover no-repeat;
}

.ig-strip__photo--three {
  background:
    linear-gradient(180deg, rgba(16, 61, 74, 0), rgba(16, 61, 74, 0.26)),
    url("../img/home/sunset-playa.jpg") center/cover no-repeat;
}

.newsletter {
  padding-top: 1rem;
  padding-bottom: 6rem;
}

.newsletter__box {
  padding: 2rem;
}

.site-footer {
  margin-top: 1rem;
  padding: 0 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.9fr;
  gap: 1.25rem;
  padding: 2rem;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(16, 61, 74, 0.98), rgba(12, 122, 128, 0.96));
  color: var(--white);
  box-shadow: 0 30px 80px rgba(16, 61, 74, 0.22);
}

.brand--footer .brand__name {
  color: var(--white);
}

.footer__brand p {
  max-width: 34ch;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.footer__nav {
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.footer__nav a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.9);
}

.footer__nav a:hover {
  color: var(--white);
}

.footer__cta {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  justify-items: start;
}

.footer__eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.62);
}

.footer__cta strong {
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1024px) {
  .hero__grid,
  .section-head--split,
  .section-accent__grid,
  .instagram__wrap,
  .newsletter__box,
  .footer__grid,
  .editorial-grid,
  .quick-links__grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 500px;
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav__links {
    display: none;
  }

  .site-header {
    padding: 0.85rem 0;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero__visual {
    min-height: 420px;
  }

  .hero-card--main {
    inset: 0;
  }

  .hero-card--floating {
    max-width: 220px;
  }

  .hero-card--peach {
    top: auto;
    bottom: 1.25rem;
    left: 1rem;
  }

  .hero-card--sand {
    right: 1rem;
    bottom: 8.5rem;
  }

  .section,
  .newsletter {
    padding: 4rem 0;
  }

  .section-accent__grid,
  .newsletter__box,
  .footer__grid {
    padding: 1.5rem;
  }

  .footer__bottom {
    flex-direction: column;
  }
}
