/* ==========================================================================
   TNS — Tourism Network Services
   Palette sampled from the company badge logo.
   ========================================================================== */

:root {
  --brown-900: #241a13;
  --brown-700: #3b2a20;
  --brown-500: #6b5445;
  --brown-300: #a3907f;

  --green-900: #0f3a22;
  --green-700: #14472a;
  --green-500: #1e6b37;
  --green-300: #7fb63c;

  --tan-500: #d9a96a;
  --tan-300: #eccfa4;
  --sky-300: #a9d5e3;

  --cream: #fbf7f0;
  --sand: #f2e9dc;
  --line: #e3d7c6;
  --white: #ffffff;

  --shadow-sm: 0 1px 2px rgba(36, 26, 19, .06), 0 2px 8px rgba(36, 26, 19, .05);
  --shadow-md: 0 4px 12px rgba(36, 26, 19, .08), 0 12px 32px rgba(36, 26, 19, .09);
  --shadow-lg: 0 8px 24px rgba(36, 26, 19, .12), 0 24px 64px rgba(36, 26, 19, .14);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --shell: 1200px;
  --gut: clamp(1.25rem, 4vw, 3rem);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--brown-700);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.015em;
  color: var(--brown-900);
  text-wrap: balance;
}

p { text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--green-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- layout primitives ---------- */
.shell {
  width: min(100% - (var(--gut) * 2), var(--shell));
  margin-inline: auto;
}
.shell--wide { --shell: 1400px; }

.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--sand { background: var(--sand); }
.section--dark { background: var(--green-900); color: var(--tan-300); }
.section--dark h2, .section--dark h3 { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-500);
}
.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 2px;
  background: var(--tan-500);
}
.section--dark .eyebrow { color: var(--green-300); }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); margin-top: .75rem; }
.section-head p { margin-top: 1rem; font-size: 1.0625rem; color: var(--brown-500); }
.section--dark .section-head p { color: var(--tan-300); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .8rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s var(--ease), background-color .2s var(--ease),
              color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.125em; height: 1.125em; flex: none; }

.btn--primary { background: var(--green-500); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-700); box-shadow: var(--shadow-md); }

.btn--wa { background: #25d366; color: #05301a; }
.btn--wa:hover { background: #1fbb59; }

.btn--ghost { border-color: var(--line); background: var(--white); color: var(--brown-700); }
.btn--ghost:hover { border-color: var(--green-500); color: var(--green-500); }

.btn--on-photo { background: rgba(255,255,255,.14); color: var(--white); border-color: rgba(255,255,255,.45); backdrop-filter: blur(8px); }
.btn--on-photo:hover { background: var(--white); color: var(--green-700); border-color: var(--white); }

.btn--lg { padding: 1rem 1.9rem; font-size: 1rem; }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 247, 240, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  margin-right: auto;
}
.brand img { width: 46px; height: 46px; flex: none; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.05;
  color: var(--brown-900);
  letter-spacing: -.02em;
}
.brand__sub {
  display: block;
  font-family: var(--font-body);
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--green-500);
}

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  padding: .5rem .85rem;
  border-radius: 999px;
  font-size: .9375rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--brown-500);
  transition: color .18s var(--ease), background-color .18s var(--ease);
}
.nav a:hover { color: var(--green-500); background: var(--sand); }
.nav a[aria-current="page"] { color: var(--green-700); font-weight: 600; background: var(--sand); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--brown-700); position: relative; transition: background .2s; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--brown-700);
  transition: transform .25s var(--ease), top .2s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .header__cta { display: none; }
  .nav {
    position: fixed;
    inset: 76px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem var(--gut) 1.75rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: transform .32s var(--ease);
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav a { padding: .85rem .5rem; font-size: 1.0625rem; border-radius: var(--r-sm); }
  .nav .btn { margin-top: .85rem; }
}

/* ---------- hero ---------- */
.hero { position: relative; isolation: isolate; background: var(--green-900); }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(15, 58, 34, .94) 0%, rgba(15, 58, 34, .72) 32%, rgba(15, 58, 34, .18) 62%, rgba(15, 58, 34, .35) 100%);
}
.hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(88vh, 780px);
  padding-block: clamp(4rem, 12vw, 7rem) clamp(2.5rem, 5vw, 3.5rem);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  align-self: flex-start;
  padding: .45rem 1rem .45rem .5rem;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(10px);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--white);
}
.hero__badge img { width: 30px; height: 30px; background: var(--white); border-radius: 50%; padding: 2px; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 6.6vw, 4.6rem);
  max-width: 17ch;
  text-shadow: 0 2px 24px rgba(15, 58, 34, .45);
}
.hero h1 em { font-style: italic; color: var(--tan-300); }
.hero__lede {
  margin-top: 1.35rem;
  max-width: 44ch;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, .9);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }

/* ---------- stat bar ---------- */
.stats {
  position: relative;
  z-index: 2;
  margin-top: -2.75rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.stat { padding: 1.6rem 1.35rem; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.35rem);
  font-weight: 700;
  color: var(--green-500);
  line-height: 1;
}
.stat__label { margin-top: .5rem; font-size: .8125rem; font-weight: 500; color: var(--brown-500); letter-spacing: .02em; }
@media (max-width: 760px) {
  .stats { grid-template-columns: repeat(2, 1fr); margin-top: -1.5rem; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* ---------- page hero (inner pages) ---------- */
.pagehero { position: relative; isolation: isolate; background: var(--green-900); }
.pagehero__media { position: absolute; inset: 0; z-index: -2; }
.pagehero__media img { width: 100%; height: 100%; object-fit: cover; }
.pagehero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(15,58,34,.93), rgba(15,58,34,.55) 60%, rgba(15,58,34,.4));
}
.pagehero__inner { padding-block: clamp(3.5rem, 9vw, 6rem); display: flex; flex-direction: column; justify-content: flex-end; min-height: 44vh; }
.pagehero h1 { color: var(--white); font-size: clamp(2.1rem, 5.4vw, 3.6rem); margin-top: .85rem; max-width: 18ch; }
.pagehero p { margin-top: 1rem; max-width: 52ch; color: rgba(255,255,255,.9); font-size: 1.0625rem; }
.pagehero .eyebrow { color: var(--green-300); }
.pagehero .eyebrow::before { background: var(--tan-500); }

.crumbs { display: flex; gap: .5rem; font-size: .8125rem; color: rgba(255,255,255,.72); margin-bottom: .25rem; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--white); text-decoration: underline; }

/* ---------- prose / split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--narrow-first { grid-template-columns: .85fr 1.15fr; }
@media (max-width: 880px) { .split, .split--narrow-first { grid-template-columns: 1fr; } }

.prose p + p { margin-top: 1.1rem; }
.prose p { color: var(--brown-500); font-size: 1.0625rem; }
.prose h2 + p, .prose h3 + p { margin-top: 1rem; }

/* On the dark sections the default body brown drops to ~1.8:1 against the
   green. Re-light every text colour that would otherwise be inherited. */
.section--dark .prose p,
.section--dark .feature-list p,
.section--dark .card p,
.section--dark p { color: var(--tan-300); }
.section--dark .card h3,
.section--dark .feature-list b { color: var(--white); }

.quote {
  margin: 1.75rem 0 0;
  padding: 1.4rem 1.6rem;
  border-left: 4px solid var(--tan-500);
  background: var(--white);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  box-shadow: var(--shadow-sm);
}
.quote p { font-family: var(--font-display); font-size: 1.15rem; font-style: italic; color: var(--brown-700); }
.quote cite { display: block; margin-top: .75rem; font-family: var(--font-body); font-style: normal; font-size: .8125rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--green-500); }

/* ---------- framed images ---------- */
.frame { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); background: var(--sand); }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame--tall { aspect-ratio: 3 / 4; }
.frame--wide { aspect-ratio: 16 / 10; }
.frame--square { aspect-ratio: 1 / 1; }
.frame__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.5rem 1.25rem 1.1rem;
  font-size: .8125rem; font-weight: 500; color: var(--white);
  background: linear-gradient(to top, rgba(15,58,34,.85), transparent);
}

.stack { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stack .frame:first-child { grid-row: span 2; aspect-ratio: 3 / 5; }
.stack .frame { aspect-ratio: 4 / 3; }
@media (max-width: 520px) {
  .stack { grid-template-columns: 1fr; }
  .stack .frame:first-child { grid-row: auto; aspect-ratio: 4 / 3; }
}

/* ---------- service cards ---------- */
.grid { display: grid; gap: clamp(1rem, 2.2vw, 1.6rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1040px) { .grid--5, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 880px)  { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .grid--2, .grid--3, .grid--4, .grid--5 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.6rem 1.4rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--tan-300); }
.card__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  margin-bottom: 1.1rem;
  border-radius: 12px;
  background: var(--sand);
  color: var(--green-500);
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.1875rem; }
.card p { margin-top: .6rem; font-size: .9375rem; color: var(--brown-500); }

/* ---------- destination cards ---------- */
.dest {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  isolation: isolate;
  background: var(--green-900);
}
.dest img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.dest:hover img { transform: scale(1.06); }
.dest::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,58,34,.92) 4%, rgba(15,58,34,.35) 45%, rgba(15,58,34,0) 72%);
}
.dest__body { position: absolute; inset: auto 0 0 0; z-index: 1; padding: 1.5rem 1.4rem; color: var(--white); }
.dest__body h3 { color: var(--white); font-size: 1.35rem; }
.dest__body p { margin-top: .4rem; font-size: .875rem; color: rgba(255,255,255,.82); }
.dest__tag {
  display: inline-block;
  margin-bottom: .7rem;
  padding: .25rem .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(6px);
  font-size: .6875rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}
.dest--lg { aspect-ratio: 4 / 5; }
.dest--md { aspect-ratio: 1 / 1; }
.dest--wide { aspect-ratio: 16 / 11; }

.dest-mosaic { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.9rem, 2vw, 1.4rem); }
.dest-mosaic > :nth-child(1) { grid-column: span 2; }
@media (max-width: 880px) {
  .dest-mosaic { grid-template-columns: repeat(2, 1fr); }
  .dest-mosaic > :nth-child(1) { grid-column: span 2; }
}
@media (max-width: 560px) {
  .dest-mosaic { grid-template-columns: 1fr; }
  .dest-mosaic > :nth-child(1) { grid-column: span 1; }
}

/* ---------- package card ---------- */
.package {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 900px) { .package { grid-template-columns: 1fr; } }
.package__media { position: relative; min-height: 340px; background: var(--sand); }
.package__media img { width: 100%; height: 100%; object-fit: cover; }
.package__flag {
  position: absolute; top: 1.1rem; left: 1.1rem;
  padding: .4rem .9rem;
  border-radius: 999px;
  background: var(--tan-500);
  color: var(--brown-900);
  font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.package__body { padding: clamp(1.75rem, 3.5vw, 2.75rem); display: flex; flex-direction: column; }
.package__body h3 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.package__meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem .85rem;
  border-radius: 999px;
  background: var(--sand);
  font-size: .8125rem; font-weight: 600; color: var(--brown-700);
}
.package__price { display: flex; align-items: baseline; gap: .5rem; margin-top: 1.5rem; }
.package__price b { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 2.75rem); color: var(--green-500); font-weight: 700; }
.package__price span { font-size: .9375rem; color: var(--brown-500); }

.ticks { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .7rem; }
.ticks li { display: flex; gap: .7rem; align-items: flex-start; font-size: .9375rem; }
.ticks svg { width: 20px; height: 20px; flex: none; color: var(--green-300); margin-top: .15rem; }
.package__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: auto; padding-top: 1.75rem; }

/* ---------- fleet / feature strip ---------- */
.feature-list { list-style: none; padding: 0; margin: 1.75rem 0 0; display: grid; gap: 1.1rem; }
.feature-list li { display: flex; gap: 1rem; align-items: flex-start; }
.feature-list .ico {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(127, 182, 60, .16);
  color: var(--green-300);
}
.section:not(.section--dark) .feature-list .ico { background: var(--sand); color: var(--green-500); }
.feature-list .ico svg { width: 20px; height: 20px; }
.feature-list b { display: block; font-size: 1rem; color: var(--white); }
.section:not(.section--dark) .feature-list b { color: var(--brown-900); }
.feature-list p { font-size: .9375rem; margin-top: .15rem; }

/* ---------- gallery ---------- */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.filter {
  padding: .5rem 1.1rem;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  font-size: .875rem; font-weight: 600; color: var(--brown-500);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.filter:hover { border-color: var(--green-500); color: var(--green-500); }
.filter[aria-pressed="true"] { background: var(--green-500); border-color: var(--green-500); color: var(--white); }

.masonry { columns: 3; column-gap: clamp(.9rem, 2vw, 1.4rem); }
@media (max-width: 900px) { .masonry { columns: 2; } }
@media (max-width: 560px) { .masonry { columns: 1; } }
.masonry figure {
  break-inside: avoid;
  margin: 0 0 clamp(.9rem, 2vw, 1.4rem);
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  background: var(--sand);
}
.masonry figure img { width: 100%; transition: transform .5s var(--ease); }
.masonry figure:hover img { transform: scale(1.04); }
.masonry figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 2.25rem .95rem .85rem;
  font-size: .8125rem; font-weight: 500; color: var(--white);
  background: linear-gradient(to top, rgba(15,58,34,.88), transparent);
  opacity: 0; transform: translateY(6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.masonry figure:hover figcaption, .masonry figure:focus-within figcaption { opacity: 1; transform: none; }
.masonry figure[hidden] { display: none; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: none;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(20, 15, 10, .93);
  backdrop-filter: blur(6px);
}
.lightbox[data-open="true"] { display: grid; }
.lightbox img { max-width: 100%; max-height: 82vh; border-radius: var(--r-md); box-shadow: var(--shadow-lg); }
.lightbox__cap { margin-top: 1rem; text-align: center; color: var(--tan-300); font-size: .9375rem; }
.lightbox__btn {
  position: absolute;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.lightbox__btn:hover { background: rgba(255,255,255,.25); }
.lightbox__btn svg { width: 22px; height: 22px; }
.lightbox__close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lightbox__prev { left: clamp(.5rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: clamp(.5rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
@media (max-width: 560px) {
  .lightbox__prev { left: 50%; top: auto; bottom: 1rem; transform: translateX(-130%); }
  .lightbox__next { right: 50%; top: auto; bottom: 1rem; transform: translateX(130%); }
}

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-list { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 1rem; }
.contact-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.15rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.contact-list li:hover { border-color: var(--tan-300); transform: translateX(3px); }
.contact-list .ico { width: 42px; height: 42px; flex: none; display: grid; place-items: center; border-radius: 10px; background: var(--sand); color: var(--green-500); }
.contact-list .ico svg { width: 20px; height: 20px; }
.contact-list b { display: block; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--brown-500); font-weight: 700; }
.contact-list a, .contact-list span { display: block; margin-top: .2rem; font-size: 1.0625rem; font-weight: 600; color: var(--brown-900); text-decoration: none; word-break: break-word; }
.contact-list a:hover { color: var(--green-500); }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(1.6rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .8125rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--brown-500); margin-bottom: .45rem; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--cream);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-500); background: var(--white); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note { margin-top: 1rem; font-size: .8125rem; color: var(--brown-500); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; isolation: isolate; overflow: hidden; background: var(--green-900); }
.cta-band__media { position: absolute; inset: 0; z-index: -2; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(15,58,34,.82); }
.cta-band__inner { padding-block: clamp(3.5rem, 8vw, 6rem); text-align: center; }
.cta-band h2 { color: var(--white); font-size: clamp(1.9rem, 4.5vw, 3rem); max-width: 20ch; margin-inline: auto; }
.cta-band p { margin: 1.1rem auto 0; max-width: 48ch; color: rgba(255,255,255,.85); font-size: 1.0625rem; }
.cta-band .btn-row { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; margin-top: 2rem; }

/* ---------- footer ---------- */
.footer { background: var(--brown-900); color: var(--brown-300); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(1.75rem, 4vw, 3rem); }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 { color: var(--white); font-family: var(--font-body); font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer a { text-decoration: none; font-size: .9375rem; transition: color .2s var(--ease); }
.footer a:hover { color: var(--tan-500); }
.footer p { font-size: .9375rem; }
.footer__brand { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.1rem; }
.footer__brand img { width: 52px; height: 52px; background: var(--white); border-radius: 50%; padding: 3px; flex: none; }
.footer__brand strong { font-family: var(--font-display); font-size: 1.15rem; color: var(--white); display: block; line-height: 1.1; }
.footer__brand span { font-size: .6875rem; letter-spacing: .11em; text-transform: uppercase; color: var(--green-300); }
.footer__bar {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .8125rem;
}

/* ---------- floating whatsapp ---------- */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 90;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #05301a;
  box-shadow: 0 6px 20px rgba(5, 48, 26, .35);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- reveal on scroll ----------
   Content is visible by default. It is only hidden once the <html class="js">
   flag confirms JavaScript is running and can put it back — so a script error,
   a blocked file or an old browser can never leave the page blank. */
.reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal:not(.is-in) { opacity: 0; transform: translateY(22px); }
@media (prefers-reduced-motion: reduce) {
  .js .reveal:not(.is-in) { opacity: 1; transform: none; }
}

/* ---------- misc ---------- */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  padding: .75rem 1.25rem; background: var(--green-500); color: #fff; border-radius: 0 0 var(--r-sm) 0; text-decoration: none;
}
.skip:focus { left: 0; }

.note {
  display: flex; gap: .85rem; align-items: flex-start;
  padding: 1.1rem 1.25rem;
  background: var(--sand);
  border-radius: var(--r-md);
  font-size: .9375rem;
  color: var(--brown-500);
}
.note svg { width: 20px; height: 20px; flex: none; color: var(--tan-500); margin-top: .15rem; }
