:root {
  color-scheme: light;
  --ink: #1b2522;
  --muted: #5f6b66;
  --paper: #fbfaf6;
  --cream: #f3efe6;
  --green: #164c3a;
  --green-soft: #dce8df;
  --terracotta: #b85f3f;
  --sea: #2f7891;
  --line: rgba(27, 37, 34, 0.14);
  --shadow: 0 24px 70px rgba(28, 42, 35, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 52px);
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 2.4vw, 32px);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  opacity: 0.9;
}

.nav-links a:hover,
.nav-links a:focus {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 7px 11px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.lang-switch:hover,
.lang-switch:focus {
  background: rgba(255, 255, 255, 0.14);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 24px;
  padding: 120px clamp(18px, 5vw, 72px) 36px;
  overflow: hidden;
  color: #fff;
  background-image: url("assets/images/photo-01.jpeg");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 24, 20, 0.82), rgba(11, 24, 20, 0.5) 42%, rgba(11, 24, 20, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.08) 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  min-width: 0;
  padding-bottom: clamp(18px, 4vh, 40px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd2bd;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.75rem);
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 span {
  display: inline;
}

html[lang="en"] h1 {
  font-size: clamp(2.75rem, 6.8vw, 5.6rem);
}

html[lang="en"] .hero-copy {
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.hero-copy {
  width: min(690px, 100%);
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  line-height: 1.5;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
}

.primary {
  background: var(--terracotta);
  color: #fff;
}

.secondary {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.whatsapp {
  background: #168c5f;
  color: #fff;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-facts {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(980px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
}

.hero-facts div {
  padding: clamp(14px, 3vw, 24px);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(32px, 7vw, 94px);
  align-items: start;
}

.intro p,
.layout-content p,
.location-copy p,
.place-content p,
.coast-lede,
.gallery-head p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.intro-copy {
  padding-top: 12px;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 10px;
  padding: 0 clamp(18px, 5vw, 72px);
}

.photo-strip img {
  width: 100%;
  height: clamp(230px, 36vw, 520px);
  object-fit: cover;
}

.highlights {
  background: var(--cream);
}

.highlight-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  column-gap: clamp(28px, 5vw, 72px);
  row-gap: 0;
  margin-top: 42px;
}

.highlight-grid article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: 20px;
  row-gap: 8px;
  align-items: start;
  min-height: 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.highlight-grid article:first-child {
  grid-row: 1 / span 4;
  grid-template-columns: 1fr;
  align-content: end;
  min-height: clamp(390px, 42vw, 540px);
  padding: clamp(28px, 4vw, 44px);
  border: 0;
  color: #fff;
  background:
    linear-gradient(0deg, rgba(8, 20, 16, 0.82), rgba(8, 20, 16, 0.12) 58%),
    url("assets/images/photo-03.jpeg") center / cover;
  box-shadow: var(--shadow);
}

.highlight-grid article:not(:first-child) {
  grid-column: 2;
}

.highlight-grid article:last-child {
  border-bottom: 1px solid var(--line);
}

.highlight-grid span {
  display: grid;
  grid-row: 1 / span 2;
  width: 34px;
  min-height: 26px;
  place-items: center;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.highlight-grid article:first-child span {
  width: 52px;
  height: 52px;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  letter-spacing: 0;
}

.highlight-grid h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.1;
}

.highlight-grid article:first-child h3 {
  max-width: 560px;
  font-size: clamp(2.35rem, 4.2vw, 4.35rem);
  line-height: 0.95;
}

.highlight-grid p,
.level p {
  color: var(--muted);
  line-height: 1.65;
}

.highlight-grid p {
  margin-bottom: 0;
}

.highlight-grid article:first-child p {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.84);
}

.layout-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.layout-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.level {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.level:last-child {
  border-bottom: 1px solid var(--line);
}

.place-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  background: #fff;
}

.place-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.place-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
}

.place-card {
  min-height: 250px;
  padding: clamp(24px, 3vw, 32px);
  background: var(--paper);
}

.place-card strong {
  display: block;
  margin-bottom: 22px;
  color: var(--sea);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

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

.coast-section {
  background: var(--cream);
}

.coast-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
  margin-bottom: 34px;
}

.coast-lede {
  margin-bottom: 18px;
}

.coast-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 12px;
}

.coast-card {
  min-width: 0;
  background: #fff;
}

.coast-card.featured {
  grid-row: span 2;
}

.coast-card img {
  width: 100%;
  height: clamp(220px, 26vw, 360px);
  object-fit: cover;
}

.coast-card.featured img {
  height: 100%;
  min-height: clamp(460px, 54vw, 732px);
}

.coast-card div {
  padding: clamp(20px, 3vw, 30px);
}

.coast-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.gallery-section {
  background: #fff;
}

.gallery-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.gallery-head > div {
  max-width: 780px;
}

.gallery-head p {
  max-width: 360px;
  padding-top: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.gallery-tile {
  position: relative;
  min-height: 220px;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: var(--green-soft);
  cursor: zoom-in;
}

.gallery-tile:nth-child(1),
.gallery-tile:nth-child(10),
.gallery-tile:nth-child(19) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 300ms ease, filter 300ms ease;
}

.gallery-tile:hover img,
.gallery-tile:focus img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.details {
  background: var(--green);
  color: #fff;
}

.details .section-kicker {
  color: #ffc6ae;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.detail-item {
  padding: clamp(22px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.08);
}

.detail-item span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.detail-item strong {
  display: block;
  font-size: clamp(1.18rem, 2vw, 1.6rem);
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}

.location-points {
  display: grid;
  gap: 14px;
}

.location-points div {
  display: grid;
  grid-template-columns: minmax(96px, max-content) minmax(0, 230px);
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.location-points strong {
  color: var(--sea);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  white-space: nowrap;
}

.location-points span {
  display: block;
  width: 100%;
  color: var(--muted);
  line-height: 1.5;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.72fr);
  gap: clamp(30px, 6vw, 76px);
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(22, 76, 58, 0.96), rgba(22, 76, 58, 0.82)),
    url("assets/images/photo-06.jpeg") center / cover;
}

.contact-copy h2 {
  font-size: clamp(2.4rem, 5vw, 5.5rem);
}

.contact-copy p,
.agency-note {
  color: rgba(255, 255, 255, 0.82);
}

.agency-note {
  margin-top: 18px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 14px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(47, 120, 145, 0.22);
  border-color: var(--sea);
}

.form-submit {
  width: 100%;
  background: var(--green);
  color: #fff;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.credit-note {
  margin: 0;
  padding: 16px clamp(18px, 5vw, 72px) 20px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.5;
  background: var(--paper);
}

.credit-note a {
  color: var(--sea);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 52px);
  background: rgba(5, 11, 9, 0.92);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1180px, 86vw);
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font: inherit;
  cursor: pointer;
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 54px;
  height: 54px;
  transform: translateY(-50%);
  font-size: 2.4rem;
  line-height: 1;
}

.lightbox-nav.prev {
  left: 22px;
}

.lightbox-nav.next {
  right: 22px;
}

#lightboxCaption {
  position: absolute;
  bottom: 18px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-facts,
  .details-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .layout-section,
  .place-feature,
  .coast-head,
  .location,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .highlight-grid article:first-child {
    grid-row: auto;
    min-height: 420px;
  }

  .highlight-grid article:not(:first-child) {
    grid-column: auto;
  }

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

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

  .coast-card.featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .coast-card.featured img {
    height: clamp(280px, 54vw, 480px);
    min-height: 0;
  }

  .gallery-head {
    display: block;
  }

  .gallery-head p {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

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

  .lang-switch {
    min-width: 40px;
    min-height: 32px;
    padding: 6px 10px;
  }

  .hero {
    min-height: 84svh;
    padding: 86px 16px 22px;
    background-position: center;
  }

  h1 {
    font-size: clamp(2.35rem, 10.5vw, 3rem);
    line-height: 0.98;
  }

  h1 span {
    display: block;
  }

  .hero-copy {
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.45;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .place-grid,
  .details-grid,
  .gallery-grid,
  .coast-grid,
  .photo-strip {
    grid-template-columns: 1fr;
  }

  .coast-card.featured {
    grid-column: span 1;
  }

  .coast-card.featured img,
  .coast-card img {
    height: 280px;
  }

  .hero-facts {
    display: none;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .button {
    min-height: 44px;
    padding: 12px 16px;
  }

  .section,
  .contact-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .photo-strip {
    padding: 0 16px;
  }

  .highlight-grid article {
    min-height: 0;
  }

  .highlight-grid article:first-child {
    min-height: 360px;
  }

  .highlight-grid article:first-child h3 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  .highlight-grid span {
    margin-bottom: 0;
  }

  .gallery-tile:nth-child(1),
  .gallery-tile:nth-child(10),
  .gallery-tile:nth-child(19) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .lightbox {
    padding: 16px;
  }

  .lightbox img {
    max-width: 92vw;
  }

  .lightbox-nav {
    top: auto;
    bottom: 54px;
    transform: none;
  }

}
