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

:root {
  --teal:  #01b1ac;
  --mint:  #93e9be;
  --gray:  #686868;
  --dark:  #1e2a2a;
  --light: #f4fafa;
  --white: #ffffff;
}

body {
  font-family: 'Josefin Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4rem;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(1,177,172,0.1);
}

nav img.logo { height: 46px; }
nav ul { list-style: none; display: flex; gap: 2.5rem; align-items: center; }
nav a {
  text-decoration: none;
  color: var(--gray);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s;
}
nav a:hover { color: var(--teal); }
.nav-cta { background: var(--teal) !important; color: var(--white) !important; padding: 0.55rem 1.4rem; border-radius: 2px; }
.nav-cta:hover { background: #019994 !important; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: 0.95rem 2.4rem;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: #019994; transform: translateY(-2px); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.45);
  color: var(--white);
  padding: 0.95rem 2.4rem;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--mint); color: var(--mint); }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 8rem 2rem 5rem;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(1,31,30,0.4) 0%, rgba(1,31,30,0.65) 100%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 760px; }
.page-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mint);
  font-weight: 600;
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.page-hero h1 strong { font-weight: 700; }
.page-hero p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

/* ── FULL HERO (homepage) ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/hero-ship.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(1,31,30,0.3) 0%, rgba(1,31,30,0.5) 60%, rgba(1,31,30,0.8) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 800px; padding: 2rem; }
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mint);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.hero h1 strong { font-weight: 700; display: block; }
.hero p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
}
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.scroll-hint span { width: 1px; height: 36px; background: rgba(147,233,190,0.4); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--teal);
  padding: 1rem 4rem;
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}
.trust-item {
  color: rgba(255,255,255,0.92);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.trust-item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--mint); flex-shrink: 0; }

/* ── SECTIONS ── */
section { padding: 6rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.section-title strong { font-weight: 700; }
.section-body {
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.85;
  letter-spacing: 0.02em;
}

/* ── STORY GRID ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.story-img-main { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 2px; display: block; }
.story-img-inset {
  position: absolute;
  bottom: -2rem; right: -2rem;
  width: 55%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
  border: 4px solid var(--white);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.story-images { position: relative; }
blockquote.pull {
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--teal);
  border-left: 3px solid var(--teal);
  padding-left: 1.2rem;
  margin: 1.8rem 0;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

/* ── CARDS ── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  background: var(--white);
  padding: 2.2rem;
  border-radius: 2px;
  border: 1px solid rgba(1,177,172,0.12);
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--mint));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.card:hover { box-shadow: 0 10px 36px rgba(1,177,172,0.1); transform: translateY(-2px); }
.card:hover::after { transform: scaleX(1); }
.card-icon { font-size: 1.6rem; margin-bottom: 1rem; display: block; }
.card h3 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.7rem;
}
.card p { font-size: 0.88rem; font-weight: 300; color: var(--gray); line-height: 1.7; }

/* ── WHY LIST ── */
.why-list { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.why-list li { display: flex; gap: 1.2rem; align-items: flex-start; }
.why-num {
  flex-shrink: 0;
  width: 2rem; height: 2rem;
  background: rgba(1,177,172,0.1);
  color: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 0.1rem;
}
.why-list p { font-size: 0.92rem; font-weight: 300; color: var(--gray); line-height: 1.75; }
.why-list strong { color: var(--dark); font-weight: 600; }
.why-sign { margin-top: 2rem; font-size: 1rem; font-weight: 300; font-style: italic; color: var(--teal); }

/* ── PORTRAIT ── */
.portrait { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; border-radius: 2px; display: block; }

/* ── PHOTO STRIP ── */
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); height: 380px; }
.photo-strip-item { overflow: hidden; position: relative; }
.photo-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.photo-strip-item:hover img { transform: scale(1.04); }
.photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(transparent, rgba(1,31,30,0.75));
  color: rgba(255,255,255,0.9);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── QUOTE ── */
.quote-section { background: linear-gradient(135deg, #011f1e 0%, #013d3c 100%); text-align: center; padding: 7rem 2rem; }
.quote-section blockquote {
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  font-style: italic;
  letter-spacing: 0.02em;
}
.quote-mark { font-size: 5rem; color: var(--teal); line-height: 0.8; display: block; margin-bottom: 1.5rem; font-style: normal; }
.quote-section cite { display: block; margin-top: 2rem; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mint); font-weight: 600; font-style: normal; }

/* ── CTA SECTION ── */
.cta-section { background: var(--white); padding: 7rem 2rem; }
.cta-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.cta-inner .section-body { margin-bottom: 2.5rem; }
.cta-personal { font-size: 1rem; font-weight: 300; font-style: italic; color: var(--gray); margin-top: 2rem; line-height: 1.7; }

/* ── CONTACT FORM ── */
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--dark); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(1,177,172,0.25);
  border-radius: 2px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(1,177,172,0.08);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

/* ── ACCORDION (FAQ) ── */
.faq-item { border-bottom: 1px solid rgba(1,177,172,0.15); padding: 1.5rem 0; }
.faq-q { font-size: 0.95rem; font-weight: 600; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; letter-spacing: 0.02em; }
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--teal); font-weight: 300; }
.faq-a { font-size: 0.9rem; font-weight: 300; color: var(--gray); line-height: 1.8; padding-top: 1rem; display: none; }
.faq-item.open .faq-q::after { content: '-'; }
.faq-item.open .faq-a { display: block; }

/* ── TIPS ── */
.tips-card { max-width: 860px; margin: 0 auto; }
.tips-card h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; color: var(--dark); margin-bottom: 1.5rem; }
.tips-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.tips-list li { font-size: 0.92rem; font-weight: 300; color: var(--gray); line-height: 1.7; padding-left: 1.4rem; position: relative; }
.tips-list li::before { content: ''; position: absolute; left: 0; top: 0.6em; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }

/* ── SECTION HELPERS (tips-and-tricks page) ── */
.section-white { background: var(--white); padding: 5rem 2rem; }
.section-light { background: var(--light); padding: 5rem 2rem; }
.section-inner { max-width: 860px; margin: 0 auto; }
.section-cta { background: linear-gradient(135deg, #011f1e 0%, #013d3c 100%); padding: 7rem 2rem; text-align: center; }
.section-cta .cta-inner { max-width: 640px; margin: 0 auto; }
.section-cta h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 300; color: var(--white); margin-bottom: 1rem; }
.section-cta h2 strong { font-weight: 700; }
.section-cta p { font-size: 0.98rem; font-weight: 300; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 2rem; }

/* ── HERO (interior pages using inline bg-image) ── */
.hero {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(1,31,30,0.45) 0%, rgba(1,31,30,0.7) 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 800px; }
.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mint);
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero h1 strong { font-weight: 700; }
.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  margin-top: 1rem;
}

/* ── INTRO TEXT ── */
.intro-text { font-size: 1.05rem; font-weight: 300; color: var(--gray); line-height: 1.85; }

/* ── FAQ ── */
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Josefin Sans', sans-serif;
  padding: 0;
}

/* ── BLOG GRID ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card {
  background: var(--white);
  border: 1px solid rgba(1,177,172,0.12);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(1,177,172,0.12); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.blog-card-content { padding: 1.5rem; }
.blog-tag {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.blog-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0.5rem 0;
  line-height: 1.3;
}
.blog-card p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.65;
}
.blog-read-more {
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 1rem;
  display: inline-block;
}
.blog-read-more:hover { color: #019994; }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .blog-grid { grid-template-columns: 1fr; }
  .hero { min-height: 60vh; }
}

/* ── LIGHT BG ── */
.bg-light { background: var(--light); }
.bg-dark { background: var(--dark); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 2.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
footer img.logo { height: 34px; filter: brightness(0) invert(1); opacity: 0.75; }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: var(--teal); }
.footer-copy { color: rgba(255,255,255,0.25); font-size: 0.65rem; letter-spacing: 0.08em; }

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  nav ul { gap: 1rem; }
  nav ul li:not(:last-child):not(:nth-last-child(2)) { display: none; }
  .two-col, .card-grid, .form-row { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr; height: auto; }
  .photo-strip-item { height: 260px; }
  footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .trust-bar { gap: 1.2rem; }
}
