/* =========================================================
   Scopejoyskippr — Coastal Sailing
   Palette: linen, sea-glass, deep adriatic, oiled teak, brass
   ========================================================= */

:root{
  --linen:        #f6f1e7;
  --linen-deep:   #ecdfca;
  --cream:        #fbf7ef;
  --sand:         #e3d4b8;
  --seafoam:      #b9d4cf;
  --adriatic:     #1c3a48;
  --adriatic-deep:#0f2530;
  --teak:         #6b4a2b;
  --teak-soft:    #a07a51;
  --brass:        #b8975c;
  --brass-deep:   #8a6a3a;
  --ink:          #1a2630;
  --ink-soft:     #4a5965;
  --muted:        #8b97a1;
  --line:         rgba(28,58,72,0.12);

  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Manrope', system-ui, sans-serif;

  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 6px 20px rgba(15,37,48,0.06);
  --shadow-md: 0 20px 50px rgba(15,37,48,0.10);
  --shadow-lg: 0 30px 80px rgba(15,37,48,0.18);

  --container: 1320px;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;
  font-family:var(--sans);
  font-weight:400;
  color:var(--ink);
  background:var(--linen);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block;height:auto}
a{color:inherit;text-decoration:none;transition:color .25s ease}
ul{list-style:none;padding:0;margin:0}
button{font-family:inherit;cursor:pointer;border:none;background:none}

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 32px;
}

/* ---------- Typography ---------- */
h1,h2,h3,h4{
  font-family:var(--serif);
  font-weight:400;
  color:var(--adriatic-deep);
  letter-spacing:-0.015em;
  line-height:1.1;
  margin:0;
}
h1{font-size:clamp(2.5rem, 5.5vw, 4.5rem)}
h2{font-size:clamp(2rem, 3.8vw, 3.1rem)}
h3{font-size:1.5rem}
h4{font-size:1.05rem;font-family:var(--sans);font-weight:600;letter-spacing:.01em}
p{margin:0 0 1em;color:var(--ink-soft)}

.eyebrow{
  display:inline-block;
  font-family:var(--sans);
  font-size:.78rem;
  font-weight:500;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--teak-soft);
  margin-bottom:1.2rem;
}
.eyebrow.light{color:var(--seafoam)}

em{font-style:italic;color:var(--teak)}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.85rem 1.7rem;
  font-family:var(--sans);
  font-size:.93rem;
  font-weight:500;
  letter-spacing:.02em;
  border-radius:999px;
  transition:all .3s cubic-bezier(.4,0,.2,1);
  white-space:nowrap;
  border:1px solid transparent;
}
.btn.large{padding:1.05rem 2.2rem;font-size:1rem}
.btn-primary{
  background:var(--adriatic);
  color:var(--linen);
  box-shadow:var(--shadow-sm);
}
.btn-primary:hover{
  background:var(--adriatic-deep);
  transform:translateY(-2px);
  box-shadow:var(--shadow-md);
}
.btn-outline{
  border:1px solid var(--adriatic);
  color:var(--adriatic);
}
.btn-outline:hover{
  background:var(--adriatic);
  color:var(--linen);
}
.btn-ghost{
  color:var(--linen);
  padding-left:.4rem;
}
.btn-ghost:hover{color:var(--seafoam)}

/* ---------- Header ---------- */
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:100;
  padding:18px 0;
  transition:all .35s ease;
  background:transparent;
}
.site-header.scrolled{
  background:rgba(246,241,231,0.92);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
  padding:12px 0;
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-family:var(--serif);
  font-size:1.25rem;
  color:var(--adriatic-deep);
}
.site-header:not(.scrolled) .brand{color:var(--linen)}
.brand-mark{
  font-size:1.4rem;
  color:var(--brass);
}
.site-header.scrolled .brand-mark{color:var(--brass-deep)}
.nav-links{
  display:flex;
  gap:36px;
  flex:1;
  justify-content:center;
}
.nav-links a{
  font-size:.92rem;
  font-weight:500;
  color:var(--linen);
  opacity:.85;
  position:relative;
  padding:.4rem 0;
}
.site-header.scrolled .nav-links a{color:var(--ink)}
.nav-links a:hover, .nav-links a.active{opacity:1;color:var(--brass)}
.nav-links a.active::after{
  content:'';
  position:absolute;
  bottom:-2px;left:0;right:0;
  height:1px;background:var(--brass);
}
.nav-cta{font-size:.88rem;padding:.7rem 1.4rem}

/* Inner pages have light header by default */
body:not(:has(.hero)) .site-header{
  background:rgba(246,241,231,0.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
body:not(:has(.hero)) .site-header .brand{color:var(--adriatic-deep)}
body:not(:has(.hero)) .site-header .brand-mark{color:var(--brass-deep)}
body:not(:has(.hero)) .site-header .nav-links a{color:var(--ink)}

.menu-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  padding:6px;
}
.menu-toggle span{
  width:24px;height:1.5px;
  background:var(--linen);
  transition:all .3s ease;
}
.site-header.scrolled .menu-toggle span,
body:not(:has(.hero)) .menu-toggle span{background:var(--ink)}

.mobile-menu{
  display:none;
  position:fixed;
  top:0;right:0;
  width:85%;max-width:380px;
  height:100vh;
  background:var(--cream);
  padding:100px 40px 40px;
  flex-direction:column;
  gap:24px;
  box-shadow:var(--shadow-lg);
  transform:translateX(100%);
  transition:transform .4s cubic-bezier(.4,0,.2,1);
  z-index:99;
}
.mobile-menu.open{transform:translateX(0)}
.mobile-menu a{
  font-family:var(--serif);
  font-size:1.5rem;
  color:var(--adriatic-deep);
}
.mobile-menu .btn{margin-top:auto;font-family:var(--sans);font-size:.95rem}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  color:var(--linen);
}
.hero-bg{
  position:absolute;inset:0;
  z-index:0;
}
.hero-bg img{
  width:100%;height:100%;
  object-fit:cover;
  animation:slowZoom 30s ease-out infinite alternate;
}
@keyframes slowZoom{
  from{transform:scale(1.02)}
  to{transform:scale(1.12)}
}
.hero-overlay{
  position:absolute;inset:0;
  background:
    linear-gradient(180deg, rgba(15,37,48,0.55) 0%, rgba(15,37,48,0.2) 40%, rgba(15,37,48,0.75) 100%),
    linear-gradient(90deg, rgba(15,37,48,0.45) 0%, transparent 60%);
}
.hero-content{
  position:relative;
  z-index:2;
  padding:160px 32px 120px;
  max-width:900px;
  animation:fadeUp 1.2s ease-out;
}
@keyframes fadeUp{
  from{opacity:0;transform:translateY(30px)}
  to{opacity:1;transform:translateY(0)}
}
.hero-title{
  color:var(--linen);
  font-weight:300;
  margin-bottom:1.5rem;
}
.hero-title em{color:var(--seafoam);font-style:italic}
.hero-sub{
  font-size:1.18rem;
  color:rgba(246,241,231,0.85);
  max-width:580px;
  margin-bottom:2.5rem;
  line-height:1.6;
}
.hero-cta{
  display:flex;
  gap:20px;
  align-items:center;
  margin-bottom:4rem;
  flex-wrap:wrap;
}
.hero-meta{
  display:flex;
  gap:60px;
  padding-top:32px;
  border-top:1px solid rgba(246,241,231,0.18);
  max-width:600px;
}
.hero-meta div{display:flex;flex-direction:column;gap:4px}
.hero-meta strong{
  font-family:var(--serif);
  font-size:1.8rem;
  font-weight:400;
  color:var(--linen);
}
.hero-meta span{
  font-size:.78rem;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:rgba(246,241,231,0.65);
}
.scroll-hint{
  position:absolute;
  bottom:30px;left:50%;
  transform:translateX(-50%);
  z-index:2;
  font-size:.72rem;
  letter-spacing:.3em;
  text-transform:uppercase;
  color:rgba(246,241,231,0.55);
  animation:bob 2.5s ease-in-out infinite;
}
@keyframes bob{
  0%,100%{transform:translateX(-50%) translateY(0)}
  50%{transform:translateX(-50%) translateY(8px)}
}

/* ---------- Page Hero (inner) ---------- */
.page-hero{
  padding:180px 0 80px;
  background:linear-gradient(180deg, var(--cream) 0%, var(--linen) 100%);
  border-bottom:1px solid var(--line);
}
.page-hero h1{max-width:900px;margin-bottom:1.5rem}
.page-hero p{max-width:680px;font-size:1.15rem}

/* ---------- Trust ---------- */
.trust{padding:60px 0;background:var(--cream);border-bottom:1px solid var(--line)}
.trust-label{
  text-align:center;
  font-size:.78rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:28px;
}
.trust-row{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:48px;
  align-items:center;
}
.trust-row span{
  font-family:var(--serif);
  font-style:italic;
  font-size:1.05rem;
  color:var(--ink-soft);
  opacity:.7;
}

/* ---------- Section heads ---------- */
.section-head{margin-bottom:64px;max-width:680px}
.section-head.center{text-align:center;margin-left:auto;margin-right:auto}
.section-head h2{margin-bottom:1rem}
.section-head p{font-size:1.1rem}
.section-foot{text-align:center;margin-top:48px}

/* ---------- Services ---------- */
.services-section{padding:140px 0;background:var(--linen)}
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}
.service-card{
  background:var(--cream);
  border-radius:var(--radius-lg);
  overflow:hidden;
  padding:0 0 32px;
  border:1px solid var(--line);
  transition:all .4s ease;
}
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-md);
}
.service-card.featured{
  background:var(--adriatic-deep);
  color:var(--linen);
}
.service-card.featured h3{color:var(--linen)}
.service-card.featured p{color:rgba(246,241,231,0.75)}
.service-card.featured .service-meta{color:var(--seafoam)}
.service-img{
  height:280px;
  overflow:hidden;
  margin-bottom:28px;
}
.service-img img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .8s ease;
}
.service-card:hover .service-img img{transform:scale(1.06)}
.service-card h3{padding:0 32px;margin-bottom:.8rem}
.service-card p{padding:0 32px;font-size:.96rem}
.service-meta{
  display:block;
  padding:16px 32px 0;
  font-size:.82rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--teak-soft);
  border-top:1px solid var(--line);
  margin-top:8px;
  padding-top:20px;
}
.service-card.featured .service-meta{border-top-color:rgba(246,241,231,0.15)}

/* ---------- Why ---------- */
.why-section{padding:140px 0;background:var(--cream)}
.why-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:100px;
  align-items:center;
}
.why-text h2{margin-bottom:1.2rem}
.why-list{margin-top:40px;display:flex;flex-direction:column;gap:28px}
.why-list li{
  display:flex;
  gap:24px;
  align-items:flex-start;
}
.why-list span{
  font-family:var(--serif);
  font-size:.95rem;
  color:var(--brass);
  letter-spacing:.05em;
  padding-top:4px;
  min-width:32px;
}
.why-list h4{margin-bottom:.3rem}
.why-list p{margin:0;font-size:.95rem}
.why-image{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  aspect-ratio:4/5;
}
.why-image img{width:100%;height:100%;object-fit:cover}

/* ---------- Gallery ---------- */
.gallery-section{padding:140px 0 0;background:var(--linen);overflow:hidden}
.gallery-strip{
  display:grid;
  grid-template-columns:repeat(6, 1fr);
  gap:8px;
  padding:60px 16px 0;
}
.gallery-item{
  aspect-ratio:3/4;
  overflow:hidden;
  border-radius:8px;
}
.gallery-item.tall{aspect-ratio:3/5}
.gallery-item img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .8s ease;
}
.gallery-item:hover img{transform:scale(1.08)}

/* ---------- Testimonials ---------- */
.testimonials-section{padding:140px 0;background:var(--cream)}
.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}
.testimonial-grid blockquote{
  margin:0;
  padding:40px;
  background:var(--linen);
  border-radius:var(--radius);
  border-left:2px solid var(--brass);
}
.testimonial-grid p{
  font-family:var(--serif);
  font-size:1.15rem;
  font-style:italic;
  color:var(--adriatic-deep);
  line-height:1.5;
  margin-bottom:1.2rem;
}
.testimonial-grid cite{
  font-style:normal;
  font-size:.85rem;
  letter-spacing:.1em;
  color:var(--teak-soft);
}

/* ---------- CTA Banner ---------- */
.cta-banner{
  padding:120px 0;
  background:
    linear-gradient(135deg, rgba(15,37,48,0.85), rgba(28,58,72,0.85)),
    url('images/photo-1473496169904-658ba7c44d8a.png') center/cover;
  color:var(--linen);
}
.cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
  flex-wrap:wrap;
}
.cta-inner h2{color:var(--linen);margin-bottom:.8rem}
.cta-inner p{color:rgba(246,241,231,0.75);margin:0;max-width:520px}

/* ---------- Story (About) ---------- */
.story-section{padding:140px 0;background:var(--linen)}
.story-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:90px;
  align-items:center;
}
.story-image{
  border-radius:var(--radius-lg);
  overflow:hidden;
  aspect-ratio:4/5;
  box-shadow:var(--shadow-lg);
}
.story-image img{width:100%;height:100%;object-fit:cover}
.story-text h2{margin-bottom:1.5rem}
.story-text p{font-size:1.05rem;margin-bottom:1.3rem}

/* ---------- Values ---------- */
.values-section{padding:140px 0;background:var(--cream)}
.values-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.value-card{
  padding:40px 32px;
  background:var(--linen);
  border-radius:var(--radius);
  border:1px solid var(--line);
  transition:all .35s ease;
}
.value-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
  border-color:var(--brass);
}
.value-num{
  font-family:var(--serif);
  font-size:.9rem;
  color:var(--brass);
  letter-spacing:.05em;
  display:block;
  margin-bottom:1.5rem;
}
.value-card h3{font-size:1.3rem;margin-bottom:.7rem}
.value-card p{margin:0;font-size:.95rem}

/* ---------- Crew ---------- */
.crew-section{padding:140px 0;background:var(--linen)}
.crew-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}
.crew-card{
  background:var(--cream);
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--line);
}
.crew-card img{
  width:100%;
  height:380px;
  object-fit:cover;
}
.crew-card > div{padding:32px}
.crew-card h3{margin-bottom:.3rem}
.crew-card span{
  display:block;
  font-size:.82rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--teak-soft);
  margin-bottom:1rem;
}
.crew-card p{margin:0}

/* ---------- Voyages page ---------- */
.voyages-section{padding:120px 0 60px;background:var(--linen)}
.voyage-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
  margin-bottom:120px;
}
.voyage-row.reverse{direction:rtl}
.voyage-row.reverse > *{direction:ltr}
.voyage-img{
  border-radius:var(--radius-lg);
  overflow:hidden;
  aspect-ratio:5/4;
  box-shadow:var(--shadow-md);
}
.voyage-img img{width:100%;height:100%;object-fit:cover;transition:transform .8s ease}
.voyage-row:hover .voyage-img img{transform:scale(1.04)}
.voyage-info h2{margin-bottom:1rem}
.voyage-info p{font-size:1.05rem;margin-bottom:2rem}
.voyage-meta{
  display:flex;
  gap:40px;
  padding:24px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  margin-bottom:2rem;
}
.voyage-meta li{display:flex;flex-direction:column;gap:4px}
.voyage-meta span{
  font-size:.74rem;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:var(--muted);
}
.voyage-meta strong{
  font-family:var(--serif);
  font-size:1.2rem;
  font-weight:400;
  color:var(--adriatic-deep);
}

.included-section{padding:120px 0;background:var(--cream)}
.included-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}
.included-grid > div{
  padding:32px 0;
  border-top:1px solid var(--line);
}
.included-grid h4{margin-bottom:.5rem;color:var(--adriatic-deep)}
.included-grid p{margin:0;font-size:.95rem}

/* ---------- Contact ---------- */
.contact-section{padding:100px 0;background:var(--linen)}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.4fr;
  gap:80px;
}
.contact-info{display:flex;flex-direction:column;gap:36px}
.info-block h3{
  font-size:.8rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--teak-soft);
  margin-bottom:.6rem;
  font-family:var(--sans);
  font-weight:500;
}
.info-block address{
  font-style:normal;
  font-family:var(--serif);
  font-size:1.25rem;
  color:var(--adriatic-deep);
  line-height:1.5;
}
.info-block a{
  font-family:var(--serif);
  font-size:1.25rem;
  color:var(--adriatic-deep);
}
.info-block a:hover{color:var(--brass)}
.info-block p{
  font-family:var(--serif);
  font-size:1.15rem;
  color:var(--adriatic-deep);
  margin:0;
}
.muted{color:var(--muted);font-size:.95rem}

.contact-form{
  background:var(--cream);
  padding:48px;
  border-radius:var(--radius-lg);
  border:1px solid var(--line);
  display:flex;
  flex-direction:column;
  gap:24px;
}
.field{display:flex;flex-direction:column;gap:8px}
.field label{
  font-size:.8rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--ink-soft);
  font-weight:500;
}
.field input,
.field select,
.field textarea{
  font-family:var(--sans);
  font-size:1rem;
  padding:14px 16px;
  background:var(--linen);
  border:1px solid var(--line);
  border-radius:10px;
  color:var(--ink);
  transition:all .25s ease;
  resize:vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus{
  outline:none;
  border-color:var(--brass);
  background:var(--cream);
}
.row-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.form-feedback{
  margin:0;
  font-size:.92rem;
  color:var(--teak);
  font-style:italic;
}

/* ---------- Map ---------- */
.map-section{padding:0 0 120px;background:var(--linen)}
.map-wrap{
  border-radius:var(--radius-lg);
  overflow:hidden;
  height:420px;
  box-shadow:var(--shadow-md);
}
.map-wrap iframe{
  width:100%;
  height:100%;
  border:0;
  filter:saturate(.85) contrast(.95);
}

/* ---------- Legal pages ---------- */
.legal-section{padding:80px 0 140px;background:var(--linen)}
.legal-body{
  max-width:780px;
  margin:0 auto;
}
.legal-body h2{
  font-size:1.5rem;
  margin:2.5rem 0 .8rem;
  color:var(--adriatic-deep);
}
.legal-body h2:first-child{margin-top:0}
.legal-body p{font-size:1.02rem;line-height:1.75}
.legal-body a{color:var(--brass-deep);text-decoration:underline;text-underline-offset:3px}
.legal-foot{
  margin-top:3rem;
  padding-top:2rem;
  border-top:1px solid var(--line);
  font-style:italic;
  color:var(--muted);
}

/* ---------- Rules ---------- */
.rules-section{padding:80px 0 140px;background:var(--linen)}
.rules-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:32px;
}
.rule{
  padding:36px;
  background:var(--cream);
  border-radius:var(--radius);
  border:1px solid var(--line);
  border-left:3px solid var(--brass);
}
.rule-num{
  font-family:var(--serif);
  font-size:.9rem;
  color:var(--brass);
  letter-spacing:.05em;
  display:block;
  margin-bottom:.8rem;
}
.rule h3{font-size:1.25rem;margin-bottom:.6rem}
.rule p{margin:0;font-size:.96rem}

/* ---------- Footer ---------- */
.site-footer{
  background:var(--adriatic-deep);
  color:rgba(246,241,231,0.7);
  padding:80px 0 32px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:48px;
  margin-bottom:60px;
}
.footer-brand .brand{color:var(--linen);margin-bottom:1rem}
.footer-brand .brand-mark{color:var(--brass)}
.footer-brand p{font-size:.96rem;max-width:340px}
.site-footer h4{
  color:var(--linen);
  font-size:.8rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-family:var(--sans);
  font-weight:500;
  margin-bottom:1.2rem;
}
.site-footer address,
.site-footer p{font-style:normal;font-size:.96rem;line-height:1.7}
.site-footer a{color:rgba(246,241,231,0.7)}
.site-footer a:hover{color:var(--brass)}
.site-footer ul li{margin-bottom:.6rem}
.hours{margin-top:1rem}
.footer-base{
  display:flex;
  justify-content:space-between;
  padding-top:32px;
  border-top:1px solid rgba(246,241,231,0.12);
  font-size:.85rem;
  color:rgba(246,241,231,0.5);
  flex-wrap:wrap;
  gap:16px;
}

/* ---------- Reveal animation ---------- */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .9s ease, transform .9s ease}
.reveal.in{opacity:1;transform:translateY(0)}

/* ---------- Responsive ---------- */
@media (max-width: 1024px){
  .services-grid,.testimonial-grid,.included-grid{grid-template-columns:repeat(2,1fr)}
  .values-grid{grid-template-columns:repeat(2,1fr)}
  .gallery-strip{grid-template-columns:repeat(3,1fr)}
  .why-grid,.story-grid,.crew-grid,.contact-grid,.voyage-row{
    grid-template-columns:1fr;gap:60px;
  }
  .voyage-row.reverse{direction:ltr}
  .footer-grid{grid-template-columns:1fr 1fr;gap:40px}
}

@media (max-width: 768px){
  .container{padding:0 22px}
  .nav-links,.nav-cta{display:none}
  .menu-toggle{display:flex}
  .mobile-menu{display:flex}

  .hero{min-height:90vh}
  .hero-content{padding:140px 22px 80px}
  .hero-meta{gap:32px;flex-wrap:wrap}
  .hero-cta{gap:14px}

  .services-section,.why-section,.testimonials-section,
  .story-section,.values-section,.crew-section,
  .voyages-section,.included-section,.cta-banner{padding:80px 0}
  .gallery-section{padding:80px 0 0}
  .page-hero{padding:130px 0 60px}

  .services-grid,.testimonial-grid,.included-grid,
  .values-grid,.rules-grid{grid-template-columns:1fr;gap:24px}
  .gallery-strip{grid-template-columns:repeat(2,1fr)}
  .row-2{grid-template-columns:1fr}
  .contact-form{padding:32px}
  .footer-grid{grid-template-columns:1fr;gap:36px}
  .footer-base{flex-direction:column;align-items:flex-start}

  .hero-meta strong{font-size:1.5rem}
  .voyage-meta{flex-wrap:wrap;gap:24px}
}