:root {
      --navy: #17364b;
      --deep-navy: #0d2637;
      --sand: #f3e3c3;
      --cream: #fffaf0;
      --coral: #e56f5d;
      --sea: #4d9ca3;
      --sun: #e9b84f;
      --ink: #26343c;
      --muted: #66747c;
      --line: #dfd4c2;
      --white: #ffffff;
      --shadow: 0 14px 38px rgba(13, 38, 55, 0.16);
      --radius: 20px;
      --max: 1160px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      background: var(--cream);
      color: var(--ink);
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.55;
    }

    img {
      display: block;
      max-width: 100%;
    }

    a { color: inherit; }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(13, 38, 55, 0.97);
      box-shadow: 0 4px 20px rgba(0,0,0,.2);
    }

    .nav-wrap {
      width: min(var(--max), calc(100% - 30px));
      min-height: 68px;
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      color: var(--white);
      text-decoration: none;
      font-size: 1.05rem;
      font-weight: 900;
      letter-spacing: .04em;
      white-space: nowrap;
    }

    .brand span { color: var(--sun); }

    .main-nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 8px 18px;
    }

    .main-nav a {
      color: var(--white);
      text-decoration: none;
      font-size: .92rem;
      font-weight: 700;
    }

    .main-nav a:hover,
    .main-nav a:focus { color: var(--sun); }

    .hero {
      background: var(--deep-navy);
      padding-bottom: 68px;
    }

    .hero-image {
      width: 100%;
      max-height: 620px;
      object-fit: cover;
      object-position: center;
    }

    .hero-card {
      width: min(var(--max), calc(100% - 30px));
      margin: -58px auto 0;
      position: relative;
      z-index: 2;
      padding: 30px clamp(22px, 5vw, 52px);
      border-radius: var(--radius);
      background: rgba(255, 250, 240, .98);
      box-shadow: var(--shadow);
      text-align: center;
    }

    .eyebrow {
      margin: 0 0 8px;
      color: var(--coral);
      font-size: .82rem;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    h1 {
      margin: 0;
      color: var(--navy);
      font-size: clamp(2.1rem, 5vw, 4.4rem);
      line-height: 1.03;
    }

    .tagline {
      margin: 12px 0 6px;
      color: var(--navy);
      font-size: clamp(1.05rem, 2.4vw, 1.45rem);
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .date-location {
      margin: 8px 0 22px;
      color: var(--ink);
      font-size: clamp(1rem, 2vw, 1.2rem);
      font-weight: 700;
    }

    .beach-note {
      display: inline-block;
      margin: 0 0 22px;
      padding: 8px 14px;
      border-radius: 999px;
      background: #e9f4f4;
      color: var(--navy);
      font-weight: 800;
    }

    .cta-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 14px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 210px;
      min-height: 52px;
      padding: 13px 22px;
      border: 2px solid transparent;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 900;
      transition: transform .18s ease, box-shadow .18s ease;
    }

    .button:hover,
    .button:focus {
      transform: translateY(-2px);
      box-shadow: 0 10px 22px rgba(13,38,55,.18);
    }

    .button-primary {
      background: var(--coral);
      color: var(--white);
    }

    .button-secondary {
      background: var(--sea);
      color: var(--white);
    }

    .button-outline {
      border-color: var(--navy);
      color: var(--navy);
      background: transparent;
    }

    main {
      width: min(var(--max), calc(100% - 30px));
      margin: 0 auto;
    }

    section {
      padding: 66px 0;
    }

    .section-heading {
      max-width: 760px;
      margin: 0 auto 32px;
      text-align: center;
    }

    .section-heading h2 {
      margin: 0 0 10px;
      color: var(--navy);
      font-size: clamp(1.75rem, 3.6vw, 2.7rem);
      line-height: 1.12;
    }

    .section-heading p {
      margin: 0;
      color: var(--muted);
      font-size: 1.05rem;
    }

    .quick-links {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: -34px;
      position: relative;
      z-index: 3;
    }

    .quick-link {
      padding: 20px 16px;
      border-radius: 16px;
      background: var(--white);
      box-shadow: var(--shadow);
      text-align: center;
      text-decoration: none;
      font-weight: 900;
      color: var(--navy);
    }

    .quick-link span {
      display: block;
      margin-bottom: 4px;
      font-size: 1.45rem;
    }

    .event-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .event-card {
      min-height: 145px;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 0 8px 24px rgba(13,38,55,.08);
    }

    .event-card h3 {
      margin: 0 0 8px;
      color: var(--navy);
      font-size: 1.15rem;
    }

    .event-card p {
      margin: 0;
      color: var(--muted);
    }

    .schedule-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }

    .schedule-card {
      padding: 28px;
      border-radius: var(--radius);
      background: var(--navy);
      color: var(--white);
      box-shadow: var(--shadow);
    }

    .schedule-card:nth-child(2) {
      background: var(--sea);
    }

    .schedule-card h3 {
      margin: 0 0 16px;
      font-size: 1.4rem;
    }

    .time-row {
      display: grid;
      grid-template-columns: 90px 1fr;
      gap: 16px;
      padding: 13px 0;
      border-top: 1px solid rgba(255,255,255,.22);
    }

    .time-row:first-of-type {
      border-top: 0;
      padding-top: 0;
    }

    .time {
      font-weight: 900;
      color: #fff2be;
    }

    .info-panel {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 28px;
      align-items: stretch;
    }

    .info-copy,
    .booking-box {
      padding: clamp(24px, 4vw, 38px);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: var(--shadow);
    }

    .info-copy h2,
    .booking-box h2 {
      margin-top: 0;
      color: var(--navy);
    }

    .tick-list {
      margin: 20px 0 0;
      padding: 0;
      list-style: none;
    }

    .tick-list li {
      position: relative;
      padding: 8px 0 8px 30px;
    }

    .tick-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--sea);
      font-weight: 900;
    }

    .notice {
      margin-top: 22px;
      padding: 17px 18px;
      border-left: 5px solid var(--sun);
      background: #fff6d9;
      border-radius: 8px;
    }

    .booking-box {
      background:
        linear-gradient(145deg, rgba(77,156,163,.12), rgba(229,111,93,.10)),
        var(--white);
    }

    .booking-box .button {
      width: 100%;
      margin-top: 10px;
    }

    .venue {
      padding: 34px;
      border-radius: var(--radius);
      background: var(--sand);
      text-align: center;
    }

    .venue h2 {
      margin-top: 0;
      color: var(--navy);
    }

    .venue p {
      max-width: 760px;
      margin-left: auto;
      margin-right: auto;
    }

    .final-cta {
      margin: 10px 0 70px;
      padding: 42px clamp(22px, 5vw, 52px);
      border-radius: var(--radius);
      background: var(--deep-navy);
      color: var(--white);
      text-align: center;
      box-shadow: var(--shadow);
    }

    .final-cta h2 {
      margin: 0 0 10px;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
    }

    .final-cta p {
      margin: 0 auto 24px;
      max-width: 680px;
      color: #d9e3e8;
    }

    footer {
      padding: 30px 15px;
      background: var(--deep-navy);
      color: #dce5e9;
      text-align: center;
      font-size: .9rem;
    }

    footer a { color: var(--white); }

    @media (max-width: 900px) {
      .nav-wrap {
        padding: 12px 0;
        align-items: flex-start;
      }

      .main-nav { gap: 7px 13px; }

      .quick-links { grid-template-columns: repeat(2, 1fr); }
      .event-grid { grid-template-columns: repeat(2, 1fr); }
      .info-panel { grid-template-columns: 1fr; }
    }

    @media (max-width: 660px) {
      .site-header { position: static; }

      .nav-wrap {
        flex-direction: column;
        gap: 10px;
      }

      .main-nav {
        justify-content: flex-start;
        padding-bottom: 5px;
      }

      .hero { padding-bottom: 52px; }

      .hero-image {
        min-height: 260px;
        object-fit: cover;
      }

      .hero-card {
        margin-top: -28px;
      }

      .quick-links {
        grid-template-columns: 1fr 1fr;
        margin-top: -25px;
      }

      .event-grid,
      .schedule-wrap {
        grid-template-columns: 1fr;
      }

      .time-row {
        grid-template-columns: 76px 1fr;
      }

      section { padding: 50px 0; }

      .button {
        width: 100%;
        min-width: 0;
      }
    }
  

.gallery-hero{position:relative;min-height:440px;display:grid;place-items:center;overflow:hidden;background:var(--deep-navy)}
.gallery-hero .hero-image{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.58}
.gallery-hero:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(13,38,55,.18),rgba(13,38,55,.84))}
.gallery-hero-card{position:relative;z-index:1;width:min(760px,calc(100% - 32px));padding:42px;text-align:center;color:#fff;border:1px solid rgba(255,255,255,.28);border-radius:var(--radius);background:rgba(13,38,55,.8);box-shadow:var(--shadow)}
.gallery-hero-card h1{margin:5px 0 8px;color:#ffffff;font-size:clamp(2.5rem,7vw,5rem);line-height:.98;text-shadow:0 3px 14px rgba(0,0,0,.48)}
.gallery-jump-links{display:grid;grid-template-columns:repeat(5,1fr);gap:14px;margin:-35px auto 20px;position:relative;z-index:3}
.gallery-section{scroll-margin-top:85px}
.photo-slider{position:relative;overflow:hidden;border-radius:var(--radius);background:var(--deep-navy);box-shadow:var(--shadow)}
.photo-track{display:flex;transition:transform .42s ease}
.photo-slide{min-width:100%;aspect-ratio:16/9;position:relative;overflow:hidden;background:var(--deep-navy)}
.photo-slide img{width:100%;height:100%;object-fit:cover;object-position:center;display:block}
.photo-caption{position:absolute;left:0;right:0;bottom:0;padding:50px 24px 20px;color:#fff;font-weight:700;background:linear-gradient(transparent,rgba(13,38,55,.9))}
.gallery-placeholder{width:100%;height:100%;display:grid;place-items:center;padding:36px;text-align:center;color:#fff;background:radial-gradient(circle at 18% 20%,rgba(233,184,79,.35),transparent 30%),radial-gradient(circle at 80% 75%,rgba(77,156,163,.34),transparent 30%),var(--deep-navy)}
.gallery-placeholder strong{display:block;margin-bottom:8px;font-size:clamp(1.4rem,4vw,2.3rem)}
.slider-arrow{position:absolute;top:50%;z-index:2;width:52px;height:52px;padding:0;transform:translateY(-50%);border:0;border-radius:50%;color:var(--deep-navy);background:rgba(255,250,240,.94);box-shadow:0 8px 22px rgba(0,0,0,.25);font-size:31px;cursor:pointer}
.slider-arrow:hover,.slider-arrow:focus-visible{background:var(--sun)}
.slider-arrow.previous{left:16px}.slider-arrow.next{right:16px}
.slider-dots{display:flex;justify-content:center;flex-wrap:wrap;gap:9px;margin-top:16px}
.slider-dot{width:11px;height:11px;padding:0;border:0;border-radius:50%;background:var(--line);cursor:pointer}
.slider-dot.active{background:var(--coral)}
@media(max-width:900px){.gallery-jump-links{grid-template-columns:repeat(2,1fr)}}
@media(max-width:650px){.gallery-hero{min-height:390px}.gallery-hero-card{padding:30px 22px}.gallery-jump-links{grid-template-columns:1fr;margin-top:-20px}.photo-slide{aspect-ratio:4/3}.slider-arrow{width:44px;height:44px;font-size:26px}.slider-arrow.previous{left:8px}.slider-arrow.next{right:8px}}


.coming-soon-card{max-width:900px;margin:0 auto;padding:46px 28px;text-align:center;border:2px dashed rgba(13,38,55,.24);border-radius:var(--radius);background:linear-gradient(135deg,rgba(233,184,79,.13),rgba(77,156,163,.12)),var(--white);box-shadow:var(--shadow)}
.coming-soon-card strong{display:block;margin-bottom:10px;color:var(--coral);font-size:clamp(1.7rem,4vw,2.7rem);letter-spacing:.08em}
.coming-soon-card p{max-width:650px;margin:0 auto}
.gallery-hero-card .tagline{color:#fffaf0;text-shadow:0 2px 10px rgba(0,0,0,.42)}
.gallery-hero-card .eyebrow{color:#ff826f;text-shadow:0 1px 6px rgba(0,0,0,.35)}
