/* =========================================================
   The Buoy Bar — About Page Standalone CSS
   Clean rebuild using the actual homepage framework from buoybar.css.
   Self-reliant: no buoybar.css dependency.
   Header/nav/wrap values match the homepage cascade.
   ========================================================= */

:root {
  --navy: #0b2f4a;
  --deep: #061d2f;
  --night: #03111e;
  --white: #fff;
  --gold: #c79a43;
  --ink: #18232b;
  --muted: #66727d;
  --line: rgba(11,47,74,.20);
  --about-paper: #fbf7ef;
  --max: 1080px;
  --gutter: clamp(24px, 4vw, 52px);
  --gap: 14px;
  --ease: cubic-bezier(.19,1,.22,1);
}

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

html { overflow-y: scroll; }

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--about-paper);
  font-family: "Open Sans", Arial, sans-serif;
}

img,
video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* =========================================================
   SHARED SITE FRAMEWORK — COPIED FROM HOMEPAGE RHYTHM
   ========================================================= */

.wrap {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.wrap.wide {
  width: min(1240px, calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(6,29,47,.52);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
}
.site-header.is-scrolled { background: rgba(6,29,47,.94); }

.header-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.brand {
  color: var(--white);
  font-family: "Raleway", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .07em;
  line-height: 1.1;
  font-weight: 700;
}
.brand span { display: block; font-size: 18px; }
.brand small {
  display: block;
  margin-top: 4px;
  font-size: 9px;
  color: rgba(255,255,255,.72);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: var(--white);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}

.main-nav a {
  color: var(--white);
  transition: color 180ms ease, background 180ms ease;
}

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

.main-nav a.is-active {
  color: var(--white);
}

/* Fluid desktop/intermediate nav.
   Matches buoybar.css and prevents stepping/drift before mobile. */
@media (min-width: 941px) {
  .header-inner {
    gap: clamp(14px, 2vw, 24px);
  }

  .brand {
    flex: 0 0 auto;
  }

  .main-nav {
    flex: 1 1 auto;
    min-width: 0;
    gap: clamp(9px, 1.25vw, 18px);
    font-size: clamp(9.5px, .78vw, 12px);
    letter-spacing: clamp(.045em, .45vw, .08em);
    white-space: nowrap;
  }
}
.menu-toggle { display: none; }

.kicker,
.hero-kicker {
  margin: 0 0 10px;
  color: #fab736;
  font-family: "Raleway", Arial, sans-serif;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}
.kicker::before,
.hero-kicker::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  margin-right: 10px;
  vertical-align: middle;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  font-family: "Raleway", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}
.button.gold { color: var(--night); background: var(--gold); border: 1px solid var(--gold); }
.button.navy { color: var(--white); background: var(--navy); border: 1px solid var(--navy); }
.button.outline-light { color: var(--white); border: 1px solid rgba(255,255,255,.45); }
.button.outline-gold {
  width: fit-content;
  margin-top: 28px;
  color: #fff;
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 0;
}

/* =========================================================
   REVEAL / LAZY / MAGNIFIC BASICS
   ========================================================= */

[data-scroll-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 950ms var(--ease), transform 950ms var(--ease);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}
[data-scroll-reveal].is-visible { opacity: 1; transform: translate3d(0, 0, 0); }

img[loading="lazy"] { opacity: 0; transition: opacity .7s var(--ease); }
img[loading="lazy"].is-loaded { opacity: 1; }

.mfp-hide { display: none !important; }
.mfp-fade.mfp-bg { opacity: 0; transition: opacity 300ms ease-out; }
.mfp-fade.mfp-bg.mfp-ready { opacity: .88; }
.mfp-fade.mfp-bg.mfp-removing { opacity: 0; }
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transform: translate3d(0, 14px, 0) scale(.985);
  transition: opacity 300ms var(--ease), transform 300ms var(--ease);
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content { opacity: 1; transform: translate3d(0,0,0) scale(1); }
.mfp-fade.mfp-wrap.mfp-removing .mfp-content { opacity: 0; transform: translate3d(0,14px,0) scale(.985); }

/* =========================================================
   ABOUT HERO
   ========================================================= */

.about-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--navy);
  background: var(--about-paper);
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/zampella/about-the-buoy-bar.webp");
  background-size: cover;
  background-position: center 4%;
  background-repeat: no-repeat;
}
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(246,240,231,.20) 0%, rgba(246,240,231,.11) 36%, rgba(246,240,231,.03) 62%, rgba(246,240,231,0) 100%);
}
.about-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  padding-top: 110px;
  padding-bottom: 56px;
}
.about-hero-copy { min-width: 0; max-width: 760px; }
.about-hero .kicker {
  margin: 0 0 22px;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  letter-spacing: .16em;
  font-weight: 700;
}
.about-hero .kicker::before { width: 44px; margin-right: 14px; }
.about-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(64px, 7.4vw, 68px);
  line-height: .86;
  letter-spacing: .035em;
  text-transform: uppercase;
  font-weight: 400;
}
.about-hero-rule {
  position: relative;
  width: 220px;
  height: 2px;
  margin: 12px 0;
  background: var(--gold);
}
.about-hero-rule::after,
.about-video-story-rule::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
}
.about-hero-lead {
  max-width: 590px;
  margin: 0;
  color: var(--navy);
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-size: 22px;
  line-height: 1.22;
  font-style: italic;
  font-weight: 500;
}
.about-tradition-badge {
  width: 220px;
  max-width: 100%;
  height: auto;
  justify-self: end;
  align-self: start;
  margin-top: -18px;
  filter: drop-shadow(0 8px 18px rgba(3,17,30,.14));
}

/* =========================================================
   EDITORIAL INTRO / HISTORY
   ========================================================= */

.about-editorial-section {
  padding: 65px 0;
  background: var(--about-paper);
  border-top: 1px solid rgba(11,47,74,.12);
}
.about-editorial-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: start;
}
.about-editorial-lead {
  margin: 0;
  color: var(--navy);
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-size: clamp(27px, 3vw, 28px);
  line-height: 1.12;
  font-weight: 500;
}
.about-small-rule { width: 180px; height: 1px; margin: 28px 0; background: var(--gold); }
.about-editorial-copy p:not(.about-editorial-lead):not(.about-legacy-line) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.about-legacy-line {
  margin-top: 18px;
  color: #9b7434;
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-size: 20px;
  line-height: 1.3;
  font-style: italic;
}
.about-history-image { margin: -12px 0 0; align-self: start; }
.about-history-image img { width: 100%; height: auto; }
.about-history-image figcaption {
  margin-top: 30px;
  padding-left: 34px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.about-history-note {
  position: relative;
  margin-top: 34px;
  max-width: 520px;
  padding: 24px 28px 26px;
}
.about-history-note::before,
.about-history-note::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  height: 1px;
  background: rgba(199,154,67,.52);
}
.about-history-note::before { top: 0; }
.about-history-note::after { bottom: 0; background: rgba(199,154,67,.32); }
.about-history-note span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
}
.about-history-note p {
  margin: 0;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.08;
  font-style: italic;
}

/* =========================================================
   JOINED VIDEO STORY
   ========================================================= */

.about-video-story {
  padding: 76px 0 82px;
  color: #fff;
  background: radial-gradient(circle at 18% 20%, rgba(199,154,67,.10), transparent 32%), radial-gradient(circle at 82% 62%, rgba(255,255,255,.055), transparent 34%), linear-gradient(180deg, #03111e 0%, #061d2f 52%, #03111e 100%);
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.about-video-story-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(44px, 5.5vw, 86px);
  align-items: center;
}
.about-video-story-buoy {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  align-items: start;
}
.about-video-story-copy { min-width: 0; max-width: 590px; }
.about-video-story-buoy .about-video-story-copy { justify-self: start; max-width: 620px; }
.about-video-story-copy .kicker,
.about-after-beach-divider .kicker { color: var(--gold); }
.about-video-story-copy h2 {
  margin: 0;
  color: #fff;
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(50px, 5.6vw, 63px);
  line-height: .9;
  letter-spacing: .035em;
  text-transform: uppercase;
  font-weight: 400;
}
.about-video-story-rule { position: relative; width: 230px; height: 1px; margin: 26px 0; background: var(--gold); }
.about-video-story-copy p:not(.kicker) { margin: 18px 0 0; color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.72; }
.about-video-story-copy .button { margin-top: 30px; }
.about-video-story-media { min-width: 0; }
.about-video-story-buoy .about-video-story-media { margin-top: -1px; }
.about-video-story-beach .about-video-story-media { margin-top: -24px; }
.about-video-story-poster {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 26px 60px rgba(0,0,0,.38);
}
.about-video-story-poster img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
  transition: transform .9s var(--ease), filter .45s ease;
}
.about-video-story-poster:hover img { transform: scale(1.025); filter: saturate(1.12) contrast(1.06); }
.about-video-story-caption {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 0 8px;
  color: rgba(255,255,255,.82);
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-size: 19px;
  line-height: 1.18;
  font-style: italic;
  text-align: center;
}
.about-after-beach-divider {
  display: grid;
  grid-template-columns: minmax(90px, 1fr) auto minmax(90px, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 56px;
  margin-bottom: 54px;
  text-align: center;
}
.about-after-beach-line { height: 1px; background: rgba(199,154,67,.72); transform: translateY(8px); }
.about-after-beach-copy { min-width: 0; max-width: 920px; }
.about-after-beach-divider .kicker { margin: 0 0 10px; }
.about-after-beach-divider .kicker::before { display: none; }
.about-after-beach-divider h2 {
  margin: 0;
  color: #fff;
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-size: clamp(30px, 3.7vw, 39px);
  line-height: 1;
  font-style: italic;
  font-weight: 500;
  white-space: nowrap;
}
.inline-video-popup { max-width: 1080px; margin: 40px auto; background: #000; }
.inline-video-popup video { width: 100%; height: auto; }
.about-play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: 88px;
  height: 88px;
  transform: translate(-50%, -50%);
  border: 3px solid rgba(255,255,255,.92);
  border-radius: 999px;
  background: rgba(3,17,30,.28);
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
  pointer-events: none;
}
.about-play-button::before {
  content: "";
  position: absolute;
  left: 33px;
  top: 23px;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid #fff;
}

/* =========================================================
   THREE MOMENTS / QUOTE / PILLARS
   ========================================================= */

.about-three-moments { padding: 54px 0 0; background: var(--about-paper); }
.about-moment-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; background: var(--about-paper); }
.about-moment { margin: 0; text-align: center; background: var(--about-paper); }
.about-moment img { width: 100%; aspect-ratio: 16 / 8.5; object-fit: cover; }
.about-moment p {
  margin: 0;
  padding: 18px 20px 22px;
  color: var(--navy);
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-size: clamp(19px, 2.15vw, 23px);
  line-height: 1.08;
  font-style: italic;
}
.about-quote-band {
  position: relative;
  overflow: hidden;
  padding: 68px 0 72px;
  background-color: #08233d;
  background-image: linear-gradient(rgba(6,24,40,.22), rgba(6,24,40,.22)), url("../img/zampella/buoy-bar-memories.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.about-quote-inner { position: relative; z-index: 2; }
.about-quote-band blockquote {
  max-width: 1080px;
  margin: 0 auto;
  color: #fff;
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-size: clamp(17px, 4.2vw, 37px);
  line-height: 1.12;
  font-style: italic;
  font-weight: 300;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0,0,0,.55), 0 8px 24px rgba(0,0,0,.42);
}
.about-pillars-section { padding: 58px 0 64px; background: var(--about-paper); }
.about-pillars-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
}
.about-pillar-intro h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Raleway", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-weight: 800;
}
.about-pillar-intro p:not(.kicker) { margin-top: 18px; color: var(--muted); font-size: 15px; line-height: 1.68; }
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-width: 0;
  gap: 0;
  border: 1px solid rgba(11,47,74,.18);
}
.about-pillar { min-width: 0; padding: 26px 24px; border-right: 1px solid rgba(11,47,74,.18); }
.about-pillar:last-child { border-right: 0; }
.about-pillar h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.25;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
}
.about-pillar p { margin: 12px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

/* =========================================================
   VISIT / FOOTER — SAME FRAMEWORK AS MAIN SITE
   ========================================================= */

.visit-section { padding: 28px 0; color: var(--white); background: var(--deep); }
.visit-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: var(--gap); align-items: center; }
.visit-section h2 {
  margin: 0;
  color: var(--white);
  font-family: "Raleway", Arial, sans-serif;
  font-size: clamp(21px, 2.4vw, 28px);
  line-height: 1.08;
  font-weight: 700;
}
.visit-section p:not(.kicker) { margin: 8px 0 0; color: rgba(255,255,255,.76); font-size: 14px; line-height: 1.55; }
.visit-actions { display: flex; justify-content: flex-end; gap: 12px; flex-wrap: wrap; }
.site-footer { padding: 24px 0; background: var(--night); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: var(--gap); }
.footer-inner p { margin: 0; color: rgba(255,255,255,.70); font-size: 13px; }
.footer-inner a { color: var(--gold); }
.footer-social { display: flex; gap: 10px; align-items: center; }
.footer-social-icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  font-family: "Raleway", Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
}
/* =========================================================
   SITE FRAMEWORK RESPONSIVE GUTTERS
   Must match the main site framework.
   ========================================================= */

@media (max-width: 940px) {
  :root {
    --gutter: clamp(22px, 5vw, 42px);
  }
}

@media (max-width: 600px) {
  :root {
    --gutter: 22px;
  }

  .wrap,
  .wrap.wide {
    width: calc(100% - 44px);
  }
}

@media (max-width: 390px) {
  :root {
    --gutter: 18px;
  }

  .wrap,
  .wrap.wide {
    width: calc(100% - 36px);
  }
}

/* =========================================================
   RESPONSIVE — SAME BREAKPOINTS AS MAIN SITE
   ========================================================= */


@media (max-width: 940px) {
  .site-header { overflow: visible; }
  .header-inner { position: relative; }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 10001;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    cursor: pointer;
  }
  .menu-toggle span { display: block; width: 18px; height: 2px; margin: 0; background: var(--white); border-radius: 2px; }

  .main-nav {
    position: fixed;
    inset: auto;
    top: 76px;
    right: var(--gutter);
    left: auto;
    bottom: auto;
    z-index: 10000;
    width: min(320px, calc(100vw - (var(--gutter) * 2)));
    height: auto;
    min-height: 0;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 8px 0;
    margin: 0;
    color: var(--white);
    background: rgba(6,29,47,.97);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 18px 42px rgba(0,0,0,.34);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s ease;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .main-nav a {
    display: block;
    width: 100%;
    padding: 14px 20px;
    margin: 0;
    color: rgba(255,255,255,.88);
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,.10);
    font-family: "Raleway", Arial, sans-serif;
    font-size: 12px;
    line-height: 1;
    letter-spacing: .09em;
    text-transform: uppercase;
    font-weight: 700;
    text-align: left;
  }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav a.is-active,
  .main-nav a:hover,
  .main-nav a:focus { color: var(--gold); background: rgba(255,255,255,.06); }

  .about-hero,
  .about-hero-inner { min-height: auto; }
  .about-hero::after { background: rgba(246,240,231,.72); }
  .about-hero-inner,
  .about-editorial-grid,
  .about-video-story-layout,
  .about-video-story-buoy,
  .about-pillars-layout,
  .visit-layout { grid-template-columns: 1fr; }
  .about-hero-inner { gap: 28px; padding-top: 104px; padding-bottom: 54px; }
  .about-tradition-badge { width: 180px; justify-self: start; margin-top: 0; }
  .about-hero h1 { max-width: 100%; font-size: clamp(58px, 13vw, 88px); }
  .about-hero-lead { max-width: 720px; font-size: clamp(22px, 4vw, 30px); }
  .about-editorial-section { padding: 44px 0; }
  .about-editorial-grid { gap: 28px; }
  .about-video-story-copy,
  .about-video-story-buoy .about-video-story-copy { max-width: 720px; justify-self: start; }
  .about-video-story-buoy .about-video-story-media,
  .about-video-story-beach .about-video-story-media { margin-top: 0; }
  .about-video-story-buoy .about-video-story-media { order: 1; }
  .about-video-story-buoy .about-video-story-copy { order: 2; }
  .about-pillars { grid-template-columns: 1fr; }
  .about-pillar { border-right: 0; border-bottom: 1px solid rgba(11,47,74,.18); }
  .about-pillar:last-child { border-bottom: 0; }
  .visit-actions { justify-content: flex-start; }
}

@media (max-width: 700px) {
  :root { --gutter: 22px; }
  .about-hero-bg { background-position: center center; }
  .about-hero-inner { padding-top: 96px; padding-bottom: 46px; }
  .about-hero .kicker { font-size: 12px; letter-spacing: .12em; }
  .about-hero h1 { font-size: clamp(48px, 17vw, 72px); line-height: .9; letter-spacing: .03em; }
  .about-hero-rule { width: 170px; margin: 18px 0; }
  .about-hero-lead { font-size: 22px; line-height: 1.18; }
  .about-tradition-badge { width: 150px; }
  .about-video-story { padding: 54px 0 60px; }
  .about-video-story-copy h2 { font-size: clamp(46px, 14vw, 70px); }
  .about-after-beach-divider { display: block; margin-top: 48px; margin-bottom: 44px; }
  .about-after-beach-line { width: 160px; margin: 18px auto; }
  .about-after-beach-divider h2 { white-space: normal; }
  .about-video-story-caption { text-align: left; font-size: 22px; }
  .about-moment-grid { grid-template-columns: 1fr; gap: 10px; }
  .about-moment { border-right: 0; border-bottom: 1px solid rgba(11,47,74,.16); }
  .about-moment:last-child { border-bottom: 0; }
  .about-moment p { padding: 18px 20px 24px; font-size: clamp(24px, 7vw, 32px); }
  .about-pillars-section { padding: 48px 0 54px; }
  .about-pillars-layout { gap: 24px; }
  .about-quote-band { padding: 56px 0 60px; background-position: center center; }
  .about-quote-band blockquote { font-size: clamp(1.6rem, 6vw, 2.3rem); line-height: 1.0; }
  .footer-inner { display: block; text-align: left; }
  .footer-social { margin: 22px 0 16px; }
  .footer-inner p + p { margin-top: 10px; }
  .footer-inner p:last-child { color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.4; }
  .footer-inner p:last-child a { display: block; margin-top: 4px; color: var(--gold); font-size: 15px; font-weight: 600; }
}

@media (max-width: 600px) {
  .main-nav { top: 72px; right: 14px; width: calc(100vw - 28px); }
}

@media (prefers-reduced-motion: reduce) {
  [data-scroll-reveal],
  img[loading="lazy"],
  .mfp-fade.mfp-wrap .mfp-content {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
