:root {
  --navy: #071830;
  --navy-deep: #030e1f;
  --navy-soft: #102845;
  --gold: #c6a15b;
  --gold-dark: #9f7936;
  --ivory: #f7f3ea;
  --paper: #efe8da;
  --ink: #0d213c;
  --muted: #aeb8c5;
  --line: rgba(198,161,91,.42);
  --shadow: 0 28px 80px rgba(0,0,0,.32);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ivory);
  background: var(--navy-deep);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }
.skip-link {
  position: fixed;
  z-index: 999;
  left: 1rem;
  top: -4rem;
  background: var(--gold);
  color: var(--navy);
  padding: .7rem 1rem;
  border-radius: 0 0 .4rem .4rem;
}
.skip-link:focus { top: 0; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 86px;
  padding: 12px clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(3,14,31,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.brand img { width: 68px; height: 68px; object-fit: contain; }
.site-header.scrolled .brand img { width: 56px; height: 56px; }
.site-header nav { display: flex; gap: clamp(16px, 2.5vw, 38px); align-items: center; }
.site-header nav a {
  text-decoration: none;
  font-size: .78rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(247,243,234,.88);
}
.site-header nav a:hover { color: var(--gold); }
.site-header .nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: .65rem 1rem;
}

.hero {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(3,14,31,.30), rgba(3,14,31,.30)),
    url("assets/beach-loop-poster.jpg") center / cover no-repeat,
    var(--navy-deep);
}
.hero-video {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

/* Prevent mobile browsers exposing native playback controls over a decorative background. */
.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls-play-button,
.hero-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
}

/* If autoplay is refused, use the poster as a clean background rather than showing a play icon. */
.video-autoplay-blocked .hero-video {
  opacity: 0;
}

.thank-you-logo {
  display: block;
  width: 180px;
  aspect-ratio: 1;
  object-fit: cover;
  clip-path: inset(4px);
  margin: 0 auto 2rem;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.34));
}

.hero-master-logo {
  width: clamp(210px, 23vw, 330px);
  aspect-ratio: 1;
  object-fit: contain;
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 16px 34px rgba(0,0,0,.38));
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(3,14,31,.85) 0%, rgba(3,14,31,.55) 48%, rgba(3,14,31,.84) 100%),
    radial-gradient(circle at 50% 45%, rgba(7,24,48,.05), rgba(3,14,31,.52));
}
.hero-content {
  width: min(940px, calc(100% - 40px));
  padding: 100px 0 100px;
}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--ivory);
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .75rem;
  font-weight: 650;
}
.eyebrow.gold { color: var(--gold); }
.eyebrow.navy { color: var(--navy); }
.hero h1, .section h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.035em;
}
.hero h1 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(4rem, 10vw, 8.7rem);
  text-shadow: 0 8px 35px rgba(0,0,0,.28);
}
.hero-copy {
  max-width: 700px;
  margin: 2rem auto;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.1vw, 1.6rem);
  color: rgba(247,243,234,.93);
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .8rem 1.4rem;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .75rem;
  font-weight: 750;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--navy-deep); }
.button-gold:hover { background: #d4b46f; }
.button-ghost { border-color: rgba(247,243,234,.65); color: var(--ivory); background: rgba(3,14,31,.18); }
.button-ghost:hover { border-color: var(--gold); color: var(--gold); }
.hero-signoff {
  margin: 2.2rem 0 0;
  color: rgba(247,243,234,.65);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
}
.scroll-cue {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
  color: rgba(247,243,234,.68);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .64rem;
}
.scroll-cue i { display: block; width: 1px; height: 44px; background: var(--gold); margin: .8rem auto 0; animation: scroll 1.8s ease-in-out infinite; transform-origin: top; }
@keyframes scroll { 0%,100% { transform: scaleY(.35); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

.launch-strip {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem 1.1rem;
  padding: 1rem 1.5rem;
  background: var(--gold);
  color: var(--navy-deep);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .72rem;
  text-align: center;
}
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--navy); box-shadow: 0 0 0 0 rgba(7,24,48,.5); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(7,24,48,0); } 100% { box-shadow: 0 0 0 0 rgba(7,24,48,0); } }

.section { padding: clamp(80px, 10vw, 150px) clamp(22px, 6vw, 90px); }
.section-grid { max-width: 1280px; margin: 0 auto; }

.publishing-section { position: relative; overflow: hidden; }
.series-grid {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.series-card {
  min-height: 440px;
  padding: clamp(32px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(13,33,60,.16);
  box-shadow: 0 22px 60px rgba(13,33,60,.09);
}
.series-travel {
  color: var(--ivory);
  background:
    linear-gradient(145deg, rgba(3,14,31,.94), rgba(10,37,65,.91)),
    url("assets/algarve-hero.jpg") center / cover;
  border-color: rgba(198,161,91,.48);
}
.series-owner {
  color: var(--ivory);
  background:
    radial-gradient(circle at 80% 15%, rgba(84,59,170,.25), transparent 32%),
    linear-gradient(145deg, #071830, #030e1f);
  border-color: rgba(122,98,204,.36);
}
.series-mark {
  color: var(--gold);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .18em;
}
.series-card h3 {
  max-width: 520px;
  margin: 2rem 0 1.3rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 4.4vw, 4.2rem);
  line-height: 1;
}
.series-card p { max-width: 560px; color: rgba(247,243,234,.76); }
.series-signature {
  display: block;
  margin: auto 0 1.6rem;
  padding-top: 2rem;
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.12rem;
}
.coming-label {
  align-self: flex-start;
  padding: .55rem .8rem;
  border: 1px solid rgba(198,161,91,.55);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .65rem;
  font-weight: 750;
}

.guide-section {
  background:
    radial-gradient(circle at 18% 40%, rgba(91,47,180,.12), transparent 34%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.guide-grid { display: grid; grid-template-columns: minmax(300px, .85fr) minmax(340px, 1fr); align-items: center; gap: clamp(50px, 9vw, 130px); }
.book-stage { position: relative; width: min(430px, 90%); justify-self: center; }
.book-glow { position: absolute; inset: 12% -10% 4%; background: radial-gradient(circle, rgba(198,161,91,.22), transparent 66%); filter: blur(26px); }
.book-cover { position: relative; z-index: 2; border-radius: 4px; box-shadow: 18px 32px 60px rgba(0,0,0,.46); transform: perspective(1200px) rotateY(7deg); }
.preview-label { display: block; margin-top: 1rem; color: rgba(247,243,234,.52); font-size: .68rem; text-transform: uppercase; letter-spacing: .15em; text-align: center; }
.guide-copy { max-width: 620px; }
.guide-copy h2 { margin: 0 0 1.7rem; font-size: clamp(4rem, 8vw, 7.2rem); color: var(--ivory); }
.guide-copy h2 em { color: var(--gold); font-weight: 400; }
.guide-copy .lead { font-family: var(--serif); color: var(--gold); font-size: 1.55rem; line-height: 1.35; }
.guide-copy p { color: rgba(247,243,234,.78); font-size: 1rem; }
.guide-copy .statement { border-left: 1px solid var(--gold); padding-left: 1.3rem; margin: 2rem 0; }
.guide-copy strong { color: var(--ivory); }
.text-link { display: inline-block; color: var(--gold); text-decoration: none; text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; font-weight: 750; }
.text-link span { margin-left: .5rem; }

.section-ivory { background: var(--ivory); color: var(--ink); }
.section-heading { max-width: 900px; margin: 0 auto 4.5rem; text-align: center; }
.section-heading h2 { margin: 0 0 1.4rem; font-size: clamp(3.2rem, 6.6vw, 6.3rem); color: inherit; }
.section-heading > p:last-child { max-width: 720px; margin: 0 auto; font-family: var(--serif); font-size: 1.23rem; color: rgba(13,33,60,.75); }
.feature-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(13,33,60,.16); border-bottom: 1px solid rgba(13,33,60,.16); }
.feature { padding: 2.5rem clamp(1.2rem, 2.5vw, 2.4rem); border-right: 1px solid rgba(13,33,60,.16); }
.feature:last-child { border-right: 0; }
.feature-number { color: var(--gold-dark); font-family: var(--serif); font-size: 1rem; }
.feature h3 { font-family: var(--serif); font-weight: 400; font-size: 1.75rem; color: var(--navy); margin: 1.5rem 0 .75rem; }
.feature p { font-size: .92rem; color: rgba(13,33,60,.72); }

.story-section { background: #0b203b; display: grid; grid-template-columns: minmax(380px, 1.2fr) minmax(320px, .8fr); gap: clamp(50px, 8vw, 120px); align-items: center; }
.story-collage { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: 1fr 1fr; gap: 12px; max-width: 820px; }
.story-collage figure { margin: 0; min-height: 230px; overflow: hidden; border: 1px solid rgba(198,161,91,.45); }
.story-collage .image-large { grid-row: 1 / span 2; min-height: 480px; }
.story-collage img { width: 100%; height: 100%; object-fit: cover; }
.story-copy h2 { margin: 0 0 1.8rem; color: var(--ivory); font-size: clamp(3.4rem, 6vw, 6rem); }
.story-copy p { color: rgba(247,243,234,.75); }
.story-copy blockquote { margin: 2.5rem 0 0; padding: 1.4rem 0 1.4rem 1.5rem; border-left: 1px solid var(--gold); font-family: var(--serif); font-size: 1.4rem; color: var(--gold); font-style: italic; }

.section-navy { background: linear-gradient(140deg, #041226, #0b2340); color: var(--ivory); }
.flight-plan .section-heading > p:last-child { color: rgba(247,243,234,.68); }
.destination-row { max-width: 1100px; margin: 0 auto; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 1rem 1.4rem; color: var(--gold); font-family: var(--serif); font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
.destination-row i { width: 22px; height: 1px; background: rgba(198,161,91,.48); }

.join-section { background: var(--paper); color: var(--ink); }
.join-card { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 100px); background: var(--navy); color: var(--ivory); padding: clamp(36px, 6vw, 80px); border: 1px solid var(--gold); box-shadow: var(--shadow); }
.join-card h2 { margin: 0 0 1.4rem; color: var(--ivory); font-size: clamp(3rem, 5.2vw, 5.4rem); }
.join-card > div > p:last-child { color: rgba(247,243,234,.72); }
.signup-form { align-self: center; }
.field-row { display: grid; grid-template-columns: .7fr 1.3fr; gap: 14px; }
.signup-form label > span { display: block; margin-bottom: .55rem; font-size: .72rem; text-transform: uppercase; letter-spacing: .11em; color: rgba(247,243,234,.72); }
.signup-form small { text-transform: none; letter-spacing: 0; }
.signup-form input[type="text"], .signup-form input[type="email"] {
  width: 100%;
  min-height: 52px;
  background: rgba(247,243,234,.08);
  border: 1px solid rgba(247,243,234,.28);
  color: var(--ivory);
  padding: .8rem 1rem;
  outline: none;
}
.signup-form input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(198,161,91,.13); }
.consent { display: grid !important; grid-template-columns: 20px 1fr; gap: .7rem; align-items: start; margin: 1.25rem 0; }
.consent input { width: 18px; height: 18px; accent-color: var(--gold); margin-top: 2px; }
.consent span { text-transform: none !important; letter-spacing: 0 !important; font-size: .85rem !important; line-height: 1.5; margin: 0 !important; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-note, .form-status { font-size: .76rem; color: rgba(247,243,234,.55); }
.form-note a { color: var(--gold); }
.form-status { min-height: 1.4em; }


.social-follow {
  background: #01061b;
  padding: clamp(28px, 4vw, 58px) clamp(16px, 4vw, 64px) 0;
}
.social-banner-wrap {
  position: relative;
  width: min(100%, 1600px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 6px;
  background: #01061b;
  box-shadow: 0 16px 42px rgba(0,0,0,.20);
}
.social-banner-image {
  display: block;
  width: 100%;
  height: auto;
}
.social-banner-links {
  position: absolute;
  inset: 0;
}
.social-hotspot {
  position: absolute;
  display: block;
  border: 1px solid transparent;
  border-radius: 10px;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.social-hotspot:hover,
.social-hotspot:focus-visible {
  background: rgba(198,161,91,.12);
  border-color: rgba(198,161,91,.8);
  box-shadow: 0 0 22px rgba(198,161,91,.25);
  outline: none;
}
.social-hotspot.facebook  { left: 31.4%; top: 47.1%; width: 19.5%; height: 17.5%; }
.social-hotspot.instagram { left: 52.2%; top: 47.1%; width: 17.6%; height: 17.5%; }
.social-hotspot.linkedin  { left: 70.6%; top: 47.1%; width: 25.2%; height: 17.5%; }
.social-hotspot.x-social  { left: 31.4%; top: 67.1%; width: 19.5%; height: 17.5%; }
.social-hotspot.youtube   { left: 52.2%; top: 67.1%; width: 17.6%; height: 17.5%; }
.social-hotspot.tiktok    { left: 70.6%; top: 67.1%; width: 25.2%; height: 17.5%; }

.social-mobile {
  display: none;
  max-width: 760px;
  margin: 0 auto;
  padding: 42px 20px;
  text-align: center;
  color: var(--ivory);
}
.social-mobile h2 {
  margin: 0 0 .5rem;
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2.6rem;
}
.social-mobile p {
  margin: 0 0 1.6rem;
  color: rgba(247,243,234,.72);
}
.social-mobile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.social-mobile-grid a {
  padding: .85rem 1rem;
  border: 1px solid rgba(198,161,91,.5);
  color: var(--ivory);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .72rem;
}
.social-mobile-grid a:hover,
.social-mobile-grid a:focus-visible {
  background: var(--gold);
  color: var(--navy-deep);
  outline: none;
}

@media (max-width: 760px) {
  .social-follow { padding: 0; }
  .social-banner-wrap { display: none; }
  .social-mobile { display: block; }
}

.site-footer { padding: 60px clamp(22px, 6vw, 90px) 32px; background: #01061b; text-align: center; color: rgba(247,243,234,.52); font-size: .75rem; }
.footer-brand img { width: 118px; margin: 0 auto 1rem; }
.footer-brand p { color: var(--gold); font-family: var(--serif); font-size: 1.1rem; font-style: italic; }
.footer-legal { margin-top: 2.5rem; }
.footer-legal p { margin: .3rem 0; }
.footer-legal a { color: rgba(247,243,234,.7); }
.copyright { margin-top: 2rem; border-top: 1px solid rgba(247,243,234,.1); padding-top: 1.5rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
@media (max-width: 980px) {
  .site-header nav a:not(.nav-cta) { display: none; }
  .guide-grid, .story-section, .join-card, .series-grid { grid-template-columns: 1fr; }
  .guide-copy { max-width: 760px; margin: 0 auto; }
  .story-copy { max-width: 760px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature:nth-child(2) { border-right: 0; }
  .feature:nth-child(-n+2) { border-bottom: 1px solid rgba(13,33,60,.16); }
}
@media (max-width: 620px) {
  .site-header { height: 72px; }
  .brand img { width: 54px; height: 54px; }
  .site-header .nav-cta { padding: .55rem .7rem; font-size: .62rem; }

  .hero {
    min-height: 100svh;
    place-items: start center;
  }
  .hero-content {
    width: min(100% - 34px, 560px);
    padding: 92px 0 64px;
  }
  .hero-master-logo {
    width: clamp(150px, 44vw, 200px);
    margin-bottom: .8rem;
  }
  .hero .eyebrow {
    margin-bottom: .75rem;
    font-size: .66rem;
    letter-spacing: .23em;
  }
  .hero h1 {
    font-size: clamp(3.1rem, 15vw, 4.65rem);
    line-height: .98;
  }
  .hero-copy {
    margin: 1.25rem auto;
    font-size: 1rem;
    line-height: 1.48;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 1.35rem;
  }
  .hero-signoff {
    margin-top: 1.35rem;
    font-size: 1rem;
    line-height: 1.35;
  }
  .scroll-cue {
    display: none;
  }

  .section { padding-left: 20px; padding-right: 20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { border-right: 0; border-bottom: 1px solid rgba(13,33,60,.16); }
  .feature:last-child { border-bottom: 0; }
  .story-collage { grid-template-columns: 1fr 1fr; }
  .story-collage .image-large { grid-column: 1 / -1; grid-row: auto; min-height: 330px; }
  .story-collage figure { min-height: 170px; }
  .field-row { grid-template-columns: 1fr; }
  .join-card { padding: 34px 22px; }
}

@media (max-width: 620px) and (max-height: 740px) {
  .hero-content {
    padding-top: 80px;
    padding-bottom: 44px;
  }
  .hero-master-logo {
    width: 138px;
    margin-bottom: .55rem;
  }
  .hero .eyebrow {
    margin-bottom: .55rem;
  }
  .hero h1 {
    font-size: clamp(2.85rem, 13.5vw, 4rem);
  }
  .hero-copy {
    margin: 1rem auto;
    font-size: .94rem;
  }
  .hero-actions {
    margin-top: 1rem;
  }
  .hero-signoff {
    margin-top: 1rem;
    font-size: .94rem;
  }
}
