:root {
  --navy: #071824;
  --deep: #0c2a38;
  --teal: #1a6b73;
  --lagoon: #2aa3a8;
  --sand: #f3e6c9;
  --cream: #fff8ea;
  --coral: #e36b3a;
  --sun: #f0b429;
  --ink: #14202a;
  --muted: #5d6b73;
  --white: #fffdf8;
  --shadow: 0 24px 50px rgba(7, 24, 36, 0.22);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(42, 163, 168, 0.16), transparent 50%),
    radial-gradient(900px 400px at 100% 0%, rgba(227, 107, 58, 0.12), transparent 45%),
    var(--cream);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, .btn { font-family: inherit; }

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 22px;
  background: rgba(7, 24, 36, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(243, 230, 201, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
}
.brand-logo {
  height: 42px;
  width: auto;
  max-width: min(420px, 52vw);
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.nav a {
  color: var(--sand);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 8px 12px;
  border-radius: 999px;
}
.nav a:hover,
.nav a:focus-visible {
  background: rgba(243, 230, 201, 0.12);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(243, 230, 201, 0.3);
  color: var(--sand);
  border-radius: 10px;
  padding: 8px 12px;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: #041018 url("images/beach.jpg") center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 16, 24, 0.35) 0%, rgba(4, 16, 24, 0.55) 45%, rgba(4, 16, 24, 0.82) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 20px 64px;
}
.hero-logo {
  width: min(720px, 92vw);
  margin: 0 auto 18px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.45));
}
.kicker {
  display: inline-block;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--sun);
  margin-bottom: 10px;
}
.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 0.9;
  margin: 0 0 12px;
  letter-spacing: 0.06em;
  color: var(--sun);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}
.tagline {
  font-family: "Pacifico", cursive;
  font-size: clamp(1.4rem, 3.4vw, 2.2rem);
  color: #ffe7b3;
  margin: 0 0 22px;
}
.hero p.lede {
  max-width: 640px;
  margin: 0 auto 28px;
  color: rgba(255, 248, 234, 0.88);
  font-size: 1.08rem;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
  cursor: pointer;
}
.btn-sun {
  background: var(--sun);
  color: var(--navy);
}
.btn-ghost {
  background: transparent;
  color: var(--sand);
  border: 1px solid rgba(243, 230, 201, 0.45);
}
.btn:hover { transform: translateY(-1px); }

.section {
  padding: 84px 0;
}
.section h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: 0.06em;
  margin: 0 0 8px;
}
.section-intro {
  max-width: 680px;
  color: var(--muted);
  margin: 0 0 36px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.poster {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.poster img {
  width: 100%;
  border-radius: 14px;
}
.poster figcaption {
  color: var(--sand);
  font-size: 0.9rem;
  padding: 12px 6px 2px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 8px;
}
.chip {
  background: rgba(26, 107, 115, 0.12);
  color: var(--teal);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 700;
}

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(20, 32, 42, 0.08);
}
.card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  margin: 0 0 6px;
  letter-spacing: 0.04em;
}
.role {
  color: var(--coral);
  font-weight: 700;
  margin: 0 0 10px;
}

.timeline {
  display: grid;
  gap: 16px;
}
.year {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  background: var(--white);
  border-left: 6px solid var(--lagoon);
  border-radius: 16px;
  padding: 16px 18px;
}
.year strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  color: var(--teal);
}

.calendar-frame {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.calendar-frame iframe {
  width: 100%;
  height: 680px;
  border: 0;
  display: block;
}

.video-grid,
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.video-card,
.photo-card {
  background: var(--navy);
  border-radius: 18px;
  overflow: hidden;
  color: var(--sand);
}
.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}
.video-card p,
.photo-card p {
  margin: 0;
  padding: 12px 14px 16px;
}
.photo-card img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}
.contact-panel {
  background: var(--deep);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-panel a { color: var(--sun); }
.contact-panel h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  margin-top: 0;
}
.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.socials a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
}
.socials img { width: 24px; height: 24px; }

.book-note {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 32px;
}
.book-note h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  margin-top: 0;
}

footer {
  background: var(--navy);
  color: var(--sand);
  padding: 28px 0;
  text-align: center;
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 64px;
    right: 12px;
    left: 12px;
    background: var(--navy);
    border-radius: 16px;
    padding: 10px;
    flex-direction: column;
  }
  .nav.open { display: flex; }
  .split,
  .duo,
  .video-grid,
  .photo-grid,
  .contact-grid,
  .year {
    grid-template-columns: 1fr;
  }
  .hero { min-height: 78vh; }
}
