@font-face {
  font-family: "Fraunces";
  src: url("/fonts/fraunces-latin-wght-normal.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Karla";
  src: url("/fonts/karla-latin-wght-normal.woff2") format("woff2-variations");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --lagoon: #0B4F44;
  --lagoon-deep: #073A32;
  --seafoam: #DFF1EA;
  --sand: #F7F2E9;
  --sun: #E8A13C;
  --ink: #1E2A28;
  --drift: #5F6B68;
  --white: #FFFFFF;
  --display: "Fraunces", Georgia, serif;
  --body: "Karla", -apple-system, "Segoe UI", sans-serif;
  --maxw: 1080px;
}

* { box-sizing: border-box; margin: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
}

h1, h2, h3 { font-family: var(--display); font-weight: 500; line-height: 1.15; color: var(--lagoon-deep); }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin-bottom: .5em; }
h3 { font-size: 1.15rem; margin-bottom: .3em; }

a { color: var(--lagoon); }

.eyebrow {
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sun);
  margin-bottom: .6em;
}
.center { text-align: center; }

/* Signature: horizon divider — sea over sand */
.horizon {
  height: 6px;
  background: linear-gradient(to bottom, var(--lagoon) 0 3px, var(--sun) 3px 6px);
  max-width: 120px;
  margin: 0 auto;
  border-radius: 3px;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .9rem 5vw;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand-logo { height: 56px; width: auto; display: block; }
.header-contact { display: flex; align-items: center; gap: 1.2rem; }
.header-phone { font-weight: 700; text-decoration: none; white-space: nowrap; }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--lagoon);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--body);
  transition: background .15s ease;
}
.btn:hover { background: var(--lagoon-deep); }
.btn:focus-visible { outline: 3px solid var(--sun); outline-offset: 2px; }
.btn-small { padding: .5rem 1rem; font-size: .9rem; }
.btn-hero { padding: .85rem 1.9rem; font-size: 1.05rem; }

/* Hero */
.hero { position: relative; min-height: 68vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-media {
  position: absolute; inset: 0;
  background: var(--lagoon) url("/images/hero.jpg") center / cover no-repeat;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(7, 58, 50, .55);
}
.hero-inner { position: relative; padding: 4rem 5vw; max-width: 760px; }
.hero-inner h1 { color: var(--white); margin-bottom: .4em; }
.hero-inner .eyebrow { color: var(--seafoam); }
.hero-sub { color: var(--seafoam); margin-bottom: 1.8em; font-size: 1.05rem; }

/* Sections */
section { padding: 4.5rem 5vw; max-width: var(--maxw); margin: 0 auto; }
.section-sand { max-width: none; background: var(--sand); }
.section-sand > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }

/* About */
.about { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); gap: 3rem; align-items: center; }
.about-photo img { width: 100%; border-radius: 14px; display: block; }
.about-role { color: var(--drift); font-size: .95rem; margin-bottom: 1em; }
.about-text p + p { margin-top: 1em; }

/* Trip cards */
.trip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
  margin-top: 2.2rem;
}
.trip-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid rgba(11, 79, 68, .12);
  transition: transform .15s ease;
}
.trip-card:hover { transform: translateY(-3px); }
.trip-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; background: var(--seafoam); }
.trip-card h3, .trip-card p { padding: 0 1.1rem; }
.trip-card h3 { margin-top: .9rem; }
.trip-card p { font-size: .93rem; color: var(--drift); padding-bottom: 1.1rem; }

/* Quotes */
.quote-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.6rem; margin-top: 2rem; }
.quotes blockquote {
  background: var(--seafoam);
  border-radius: 14px;
  padding: 1.6rem;
}
.quotes blockquote p { font-family: var(--display); font-size: 1.08rem; line-height: 1.5; color: var(--lagoon-deep); }
.quotes cite { display: block; margin-top: 1rem; font-style: normal; font-size: .88rem; color: var(--drift); }
.quote-note { margin-top: 1.4rem; font-size: .82rem; color: var(--drift); text-align: center; }

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  margin-top: 2.2rem;
  counter-reset: step;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--lagoon);
  color: var(--white);
  font-family: var(--display);
  font-size: 1.25rem;
  margin-bottom: .8rem;
}
.steps p { font-size: .95rem; color: var(--drift); }

/* Form */
.inquiry { max-width: 680px; margin: 2.2rem auto 0; display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.1rem; }
.inquiry label { display: grid; gap: .35rem; font-weight: 700; font-size: .9rem; }
.inquiry input, .inquiry textarea {
  font: inherit;
  font-weight: 400;
  padding: .7rem .85rem;
  border: 1px solid rgba(11, 79, 68, .3);
  border-radius: 8px;
  background: var(--white);
}
.inquiry input:focus, .inquiry textarea:focus { outline: 3px solid var(--seafoam); border-color: var(--lagoon); }
.inquiry .btn-hero { justify-self: start; }
.form-alt { font-size: .9rem; color: var(--drift); }

/* Footer */
.site-footer {
  background: var(--lagoon-deep);
  color: var(--seafoam);
  text-align: center;
  padding: 3.5rem 5vw 2.5rem;
  margin-top: 4rem;
}
.footer-logo { height: 64px; width: auto; margin-bottom: 1rem; }
.footer-tag { font-family: var(--display); font-size: 1.3rem; margin-bottom: 1.2rem; }
.site-footer a { color: var(--seafoam); }
.footer-legal { margin-top: 1.4rem; font-size: .83rem; opacity: .85; }

@media (max-width: 720px) {
  .about { grid-template-columns: 1fr; }
  .about-photo { max-width: 340px; margin: 0 auto; }
  .header-phone { display: none; }
  .hero { min-height: 56vh; }
}

/* v2: SVG hero scene */
.hero-media svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media::after { background: rgba(7, 58, 50, .28); }

/* v2: trip card icons */
.trip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 2.4;
  background: var(--seafoam);
  color: var(--lagoon);
}
.trip-icon svg { width: 52px; height: 52px; }
.trip-card:hover .trip-icon { background: var(--lagoon); color: var(--seafoam); transition: background .2s, color .2s; }

/* v2: scroll reveal */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* v3: mailto contact */
.plan-lede { max-width: 560px; margin: 0 auto 2rem; color: var(--drift); }
.contact-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.4rem; }
.btn-outline { background: transparent; color: var(--lagoon); border: 2px solid var(--lagoon); }
.btn-outline:hover { background: var(--seafoam); }

/* v4: photo hero auto-swap (hero.jpg present -> photo replaces illustration) */
.hero-media { background-size: cover; background-position: center; }
.hero-media.has-photo svg { display: none; }
.hero-media.has-photo::after { background: rgba(7, 58, 50, .5); }
