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

:root {
  --sand:      #f5f0e8;
  --pebble:    #e8e2d8;
  --slate:     #3d4a52;
  --deep-sea:  #1e3040;
  --sea-glass: #6a9aaa;
  --warm-off:  #faf8f4;
  --text:      #2e3a3f;
  --muted:     #6b7b82;
  --accent:    #b05a4a;
  --header-height: 92px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--warm-off);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  border-bottom: 1px solid var(--pebble);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  text-decoration: none;
}

.header-logo {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1.3;
}

.brand-line {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 1.3vw, 1.05rem);
  font-weight: 200;
  color: var(--slate);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 110;
  width: 40px;
  height: 40px;
  margin-right: -0.4rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 3.5px auto;
  background: var(--muted);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* Spacing between bar centres ≈ margin + height (margins collapse when not flex) */
body.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

body.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
}

nav a:hover { color: var(--deep-sea); }

nav a.active {
  color: var(--deep-sea);
  border-bottom: 1px solid var(--sea-glass);
  padding-bottom: 1px;
}

/* ── SHARED TYPOGRAPHY ── */
.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--deep-sea);
  letter-spacing: 0.01em;
}

.lead {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.65;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.body-text {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: 300;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  height: 45vh;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 38, 52, 0.72) 0%,
    rgba(20, 38, 52, 0.45) 60%,
    rgba(20, 38, 52, 0.25) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem;
  max-width: 780px;
  animation: fade-up 1s ease both;
}

.page-hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.page-hero-title em {
  font-style: italic;
  font-weight: 300;
}

.page-hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ── HOME HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-page .hero {
  height: auto;
  min-height: clamp(300px, 44vh, 440px);
  padding: calc(3.75rem + var(--header-height)) 2.5rem 3.25rem;
  box-sizing: border-box;
}

.hero-video-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: -20%;
  height: 140%;
  overflow: hidden;
  will-change: transform;
  z-index: 0;
}

.hero-static-bg {
  position: absolute;
  inset: 0;
  background: url("images/hero-poster.jpg") center / cover no-repeat;
  background-image: url("images/hero-poster.webp");
}

.hero-video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video-wrap.hero-static-only .hero-video {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-wrap .hero-video {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-video-wrap .hero-video {
    display: none;
  }
}

.sea-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #7ab3c8 0%,
    #5a9ab8 25%,
    #3d7d9e 50%,
    #2a6a8a 75%,
    #1e5575 100%
  );
  overflow: hidden;
}

.wave {
  position: absolute;
  width: 200%;
  height: 80px;
  background-repeat: repeat-x;
  opacity: 0.6;
}

.wave-1 {
  bottom: 18%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80'%3E%3Cpath d='M0,40 C150,10 350,70 600,40 C850,10 1050,70 1200,40 L1200,80 L0,80 Z' fill='%23ffffff' opacity='0.15'/%3E%3C/svg%3E") repeat-x;
  background-size: 600px 80px;
  animation: wave-drift 7s linear infinite;
}

.wave-2 {
  bottom: 12%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80'%3E%3Cpath d='M0,50 C200,20 400,60 600,35 C800,10 1000,60 1200,45 L1200,80 L0,80 Z' fill='%23ffffff' opacity='0.12'/%3E%3C/svg%3E") repeat-x;
  background-size: 700px 80px;
  animation: wave-drift 10s linear infinite reverse;
}

.wave-3 {
  bottom: 5%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80'%3E%3Cpath d='M0,45 C100,25 300,65 600,38 C900,11 1100,65 1200,48 L1200,80 L0,80 Z' fill='%23ffffff' opacity='0.18'/%3E%3C/svg%3E") repeat-x;
  background-size: 800px 80px;
  animation: wave-drift 13s linear infinite;
}

.sea-shimmer {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 30% at 60% 40%, rgba(255,255,255,0.12) 0%, transparent 70%);
  animation: shimmer 8s ease-in-out infinite alternate;
}

.shore {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 8%;
  background: linear-gradient(180deg, transparent 0%, #b8a898 60%, #a89880 100%);
}

.sky {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, #a8cde0 0%, transparent 100%);
}

@keyframes wave-drift {
  from { background-position-x: 0; }
  to   { background-position-x: 600px; }
}

@keyframes shimmer {
  from { opacity: 0.5; transform: scaleX(0.95); }
  to   { opacity: 1;   transform: scaleX(1.05); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(20, 38, 52, 0.55) 0%,
    rgba(20, 38, 52, 0.38) 60%,
    rgba(20, 38, 52, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1.5rem 2.5rem;
  text-align: center;
  animation: fade-up 1s ease both;
}

.hero-title {
  font-family: var(--font-body);
  font-size: clamp(1.85rem, 3.8vw, 3.25rem);
  font-weight: 200;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 1.25rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.75vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SECTIONS ── */
section { padding: 5rem 2.5rem; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sea-glass);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background: var(--sea-glass);
  opacity: 0.5;
}

.section-label.centered {
  justify-content: center;
}

/* ── PORTRAITS ── */
.portrait-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(30,48,64,0.18);
}

.portrait-wrap.large {
  width: 160px;
  height: 160px;
}

.portrait-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}

.portrait-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── HOME two-column layout (text + aside) ── */
.home-page {
  --home-text-col: 520px;
  --home-aside-col: 320px;
  --home-col-gap: 2.5rem;
  --home-content-width: calc(var(--home-text-col) + var(--home-aside-col) + var(--home-col-gap));
}

.home-page .about-content,
.home-page .research-grid,
.home-page .location-grid {
  display: grid;
  grid-template-columns: minmax(0, var(--home-text-col)) minmax(0, var(--home-aside-col));
  column-gap: var(--home-col-gap);
  align-items: start;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}

/* ── ABOUT (home) ── */
.about-section { background: var(--warm-off); }

.about-text {
  grid-column: 1;
  max-width: 520px;
}

.about-sidebar {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  max-width: 320px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  justify-self: start;
  align-self: start;
}

.about-sidebar .portrait-wrap {
  width: 300px;
  height: 300px;
  flex-shrink: 0;
  box-shadow:
    0 0 0 6px #fff,
    0 8px 32px rgba(30, 48, 64, 0.18);
}

.about-sidebar .portrait-wrap img {
  object-position: center center;
  transform: scale(1.08);
}

.about-text p {
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.about-lead {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.65;
  font-weight: 300;
  font-style: italic;
}

.about-text .pill-btn {
  margin-top: 0.25rem;
}

.accreditation-logos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  width: 100%;
}

.accreditation-logos img {
  max-width: 120px;
  height: auto;
  opacity: 0.85;
}

.text-link {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sea-glass);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  margin-top: 0.5rem;
  transition: color 0.2s;
}

.text-link:hover { color: var(--deep-sea); }

.inline-link {
  color: var(--sea-glass);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.2s;
}

.inline-link:hover { color: var(--deep-sea); }

/* ── RESEARCH (home) ── */
.research-section { background: var(--sand); }

.research-grid {
  align-items: start;
}

.research-publication {
  grid-column: 1;
  grid-row: 1;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.research-heading {
  grid-column: 1;
  grid-row: 2;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--deep-sea);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.research-body {
  grid-column: 1;
  grid-row: 3;
}

.research-body p {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1.8rem;
}

.research-cover {
  grid-column: 2;
  grid-row: 1 / 4;
  max-width: calc(var(--home-aside-col, 320px) * 0.75);
  justify-self: center;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  align-self: start;
}

.research-cover picture,
.research-cover img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── LOCATION (home) ── */
.location-section { background: var(--warm-off); }

.location-grid {
  align-items: start;
}

.location-heading {
  grid-column: 1;
  grid-row: 1;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--deep-sea);
  margin-bottom: 1.5rem;
}

.location-text {
  grid-column: 1;
  grid-row: 2;
}

.location-text p {
  font-size: 1rem;
  margin-bottom: 0.9rem;
  color: var(--text);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.8rem 0;
}

.detail-item {
  background: var(--sand);
  padding: 1.1rem 1.3rem;
  border-radius: 6px;
}

.detail-item .label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sea-glass);
  margin-bottom: 0.3rem;
}

.detail-item .value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--deep-sea);
}

/* ── BUTTONS ── */
.pill-btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  background: var(--deep-sea);
  color: #fff;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.pill-btn:hover {
  background: var(--slate);
  transform: translateY(-1px);
}

.pill-btn.outline {
  background: transparent;
  border: 1px solid var(--deep-sea);
  color: var(--deep-sea);
}

.pill-btn.outline:hover {
  background: var(--deep-sea);
  color: #fff;
}

/* ── MAP ── */
.map-section { padding: 0; }

.map-section iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
  filter: saturate(0.7) brightness(1.05);
}

.map-section.tall iframe { height: 420px; }

/* ── CONTACT FORM ── */
.contact-section { background: var(--sand); }

.contact-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.home-page .contact-inner {
  max-width: var(--home-content-width);
}

.contact-inner h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--deep-sea);
  margin-bottom: 0.6rem;
}

.contact-inner .lead {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  text-align: left;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-setup-notice {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  background: var(--sand);
  border: 1px solid var(--pebble);
  font-size: 0.9rem;
  color: var(--muted);
}

.thanks-page {
  padding-top: var(--header-height);
}

.thanks-section .thanks-back {
  margin-top: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  background: var(--warm-off);
  border: 1px solid var(--pebble);
  border-radius: 6px;
  padding: 0.7rem 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sea-glass);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  text-align: center;
  margin-top: 0.5rem;
}

.location-photo-wrap {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: var(--home-aside-col, 320px);
  justify-self: center;
}

.location-photo-circle {
  width: min(280px, 100%);
  height: min(280px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(30,48,64,0.15);
}

.location-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── FOOTER ── */
footer {
  background-color: #fff;
  position: relative;
  overflow: hidden;
  padding: 3rem 2.5rem;
  border-top: 1px solid var(--pebble);
}

footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/footer-logo.png') no-repeat center center;
  background-size: min(420px, 70%) auto;
  opacity: 0.07;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 1.5rem;
}

.footer-contact a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--deep-sea); }

.footer-contact span {
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-copy {
  font-size: 0.7rem;
  color: #aab4b8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

/* ── ABOUT PAGE ── */
.about-page {
  padding-top: var(--header-height);
  --home-text-col: 520px;
  --home-aside-col: 320px;
  --home-col-gap: 2.5rem;
  --home-content-width: calc(var(--home-text-col) + var(--home-aside-col) + var(--home-col-gap));
  --about-team-width: 800px;
}

.about-page .intro-section {
  padding: 0;
}

.about-page .about-intro {
  position: relative;
  overflow: hidden;
}

.about-page .about-intro > .intro-panel-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -20%;
  height: 140%;
  background: url('images/sea.jpg') center center / cover no-repeat;
  will-change: transform;
  z-index: 0;
}

.about-page .about-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250, 248, 244, 0.5);
  pointer-events: none;
  z-index: 1;
}

.about-page .about-intro .intro-panel {
  position: relative;
  z-index: 2;
  background: none;
  overflow: visible;
}

.about-page .about-intro .intro-panel::before {
  display: none;
}

.about-page .intro-panel-inner {
  max-width: var(--home-content-width);
}

.about-page .intro-panel-inner .page-content-title {
  font-size: clamp(1.65rem, 2.5vw, 2.1rem);
}

.about-page .about-tagline {
  font-size: 1.35rem;
}

.about-page .intro-panel-inner .body-text {
  font-size: 1.125rem;
  line-height: 1.75;
}

.about-page .team-section .section-inner {
  max-width: var(--about-team-width);
}

.intro-panel {
  position: relative;
  background: url('images/sea.jpg') center center / cover no-repeat;
  padding: 4rem 2.5rem;
}

.intro-panel[data-parallax] {
  overflow: hidden;
  background: none;
}

.intro-panel-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -20%;
  height: 140%;
  background: var(--intro-panel-image, url('images/sea.jpg')) center center / cover no-repeat;
  will-change: transform;
  z-index: 0;
}

.ows-page .intro-panel {
  --intro-panel-image: url('images/sea.jpg');
}

.intro-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250, 248, 244, 0.5);
  pointer-events: none;
  z-index: 1;
}

.intro-panel-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

.intro-panel-inner .page-content-title {
  text-align: left;
}

.about-tagline {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.intro-panel-inner .body-text {
  margin-bottom: 1rem;
}

.about-fee {
  margin-bottom: 0.35rem;
}

.about-concession {
  margin-top: 0;
  margin-bottom: 1rem;
}

.team-section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 5rem;
  align-items: start;
}

.intro-text h2.section-title { margin-bottom: 1.5rem; }

.concession-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sand);
  border-left: 3px solid var(--sea-glass);
  padding: 0.8rem 1.2rem;
  border-radius: 0 6px 6px 0;
  font-size: 0.9rem;
  color: var(--muted);
  margin: 1rem 0 2rem;
}

.detail-strip {
  display: flex;
  gap: 2rem;
  margin: 1.5rem 0 2rem;
  flex-wrap: wrap;
}

.detail-chip {
  background: var(--sand);
  border-radius: 6px;
  padding: 0.9rem 1.3rem;
}

.detail-chip .chip-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sea-glass);
  margin-bottom: 0.25rem;
}

.detail-chip .chip-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--deep-sea);
}

.intro-aside {
  background: var(--sand);
  border-radius: 12px;
  padding: 2.2rem;
  text-align: center;
}

.intro-aside img {
  max-width: 160px;
  height: auto;
  opacity: 0.85;
  margin-bottom: 1.2rem;
}

.intro-aside p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.team-section { background: var(--sand); }

.team-section h2.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.about-page .team-grid {
  gap: 2.25rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.about-page .therapist-name {
  font-size: 1.6rem;
}

.about-page .therapist-quote {
  font-size: 1.15rem;
}

.about-page .therapist-note {
  font-size: 0.95rem;
}

.therapist-card {
  background: var(--warm-off);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
}

.therapist-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--deep-sea);
  margin-bottom: 0.1rem;
}

.therapist-creds {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sea-glass);
  margin-bottom: 0.8rem;
}

.therapist-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  position: relative;
  padding: 0 0.5rem;
}

.therapist-quote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--pebble);
  line-height: 0;
  vertical-align: -0.6em;
  margin-right: 0.15em;
}

.therapist-note {
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
}

.portrait-placeholder {
  background: var(--pebble);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait-placeholder img {
  position: absolute;
  inset: 0;
}

/* ── GETTING HERE PAGE ── */
.getting-here-page {
  padding-top: var(--header-height);
}

.getting-here-page .section-inner {
  padding-inline: 10px;
}

.getting-here-clearfix::after {
  content: '';
  display: table;
  clear: both;
}

.getting-here-address-section {
  position: relative;
  background: var(--warm-off);
  padding-top: 4rem;
  padding-bottom: 3rem;
  overflow: hidden;
}

.getting-here-map-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/brighton-street-map.webp");
  background-image: image-set(
    url("images/brighton-street-map.webp") type("image/webp"),
    url("images/brighton-street-map.jpg") type("image/jpeg")
  );
  background-size: cover;
  background-position: center 42%;
  opacity: 0.09;
  filter: grayscale(1) contrast(0.85);
  pointer-events: none;
}

.getting-here-address-section .section-inner {
  position: relative;
  z-index: 1;
}

.getting-here-map-credit {
  position: relative;
  z-index: 1;
  margin: 1.5rem 2.5rem 0;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0 0 0;
  font-size: 0.58rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  opacity: 0.55;
  text-align: right;
}

.getting-here-map-credit a {
  color: inherit;
}

.getting-here-directions-section {
  background: var(--sand);
  padding-top: 3.5rem;
  padding-bottom: 5rem;
}

.door-photo-float {
  float: right;
  width: 260px;
  margin: 0 0 1.5rem 2.5rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(30,48,64,0.15);
}

.door-photo-float img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
}

.getting-here-address-section .body-text {
  max-width: 36em;
  margin-bottom: 1.2rem;
}

.address-block {
  background: var(--sand);
  border-radius: 10px;
  padding: 1.6rem 2rem;
  margin-bottom: 0;
  max-width: 20em;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--deep-sea);
}

.getting-here-directions-col {
  overflow: hidden;
  max-width: 36em;
}

.getting-here-directions-col .body-text {
  margin-bottom: 1.2rem;
}

.directions-steps {
  list-style: none;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.directions-steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--text);
}

.step-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sea-glass);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.2rem;
}

.transport-cards {
  float: right;
  width: 300px;
  margin: 0 0 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.transport-card {
  background: var(--warm-off);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
}

.transport-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--deep-sea);
  margin-bottom: 0.35rem;
}

.transport-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── OPEN WATER SWIMMING PAGE ── */
.page-hero.water-hero {
  height: 60vh;
}

.water-hero-bg {
  background: linear-gradient(180deg, #3d8fa8 0%, #2a6a88 30%, #1a5070 60%, #0f3a55 100%);
  overflow: hidden;
}

.water-ripple {
  position: absolute;
  width: 200%;
  height: 60px;
  opacity: 0.35;
}

.water-ripple-1 {
  top: 15%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60'%3E%3Cpath d='M0,30 C200,5 400,55 600,30 C800,5 1000,55 1200,30 L1200,60 L0,60 Z' fill='%23ffffff'/%3E%3C/svg%3E") repeat-x;
  background-size: 600px 60px;
  animation: ripple 6s linear infinite;
}

.water-ripple-2 {
  top: 35%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60'%3E%3Cpath d='M0,35 C250,10 450,55 600,28 C750,5 950,55 1200,35 L1200,60 L0,60 Z' fill='%23ffffff'/%3E%3C/svg%3E") repeat-x;
  background-size: 800px 60px;
  animation: ripple 9s linear infinite reverse;
}

.water-ripple-3 {
  top: 58%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60'%3E%3Cpath d='M0,28 C180,8 400,52 600,30 C800,8 1020,52 1200,28 L1200,60 L0,60 Z' fill='%23ffffff'/%3E%3C/svg%3E") repeat-x;
  background-size: 700px 60px;
  animation: ripple 12s linear infinite;
}

.water-ripple-4 {
  top: 78%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60'%3E%3Cpath d='M0,32 C220,6 420,58 600,32 C780,6 980,58 1200,32 L1200,60 L0,60 Z' fill='%23ffffff'/%3E%3C/svg%3E") repeat-x;
  background-size: 900px 60px;
  animation: ripple 15s linear infinite reverse;
}

@keyframes ripple {
  from { background-position-x: 0; }
  to   { background-position-x: 900px; }
}

.ows-page {
  padding-top: var(--header-height);
  --home-text-col: 520px;
  --home-aside-col: 320px;
  --home-col-gap: 2.5rem;
  --home-content-width: calc(var(--home-text-col) + var(--home-aside-col) + var(--home-col-gap));
  --ows-magazine-width: 240px;
}

.ows-page .intro-panel-inner {
  max-width: var(--home-content-width);
}

.ows-section {
  padding: 0;
}

.ows-content .body-text { margin-bottom: 1rem; }

.magazine-float {
  float: right;
  width: 240px;
  max-width: 38%;
  margin: 0.25rem 0 1.5rem 2.5rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: block;
}

.magazine-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
}

.magazine-float img {
  width: 100%;
  display: block;
}

.magazine-float-caption {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding: 0.5rem 0.3rem 0;
  background: var(--sand);
}

.ows-content::after {
  content: '';
  display: table;
  clear: both;
}

.ows-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  clear: left;
}

/* ── THERAPY TODAY PAGE ── */
.pdf-section {
  background: var(--sand);
  padding: calc(var(--header-height) + 3rem) 2.5rem 5rem;
}

.pdf-section .page-content-title {
  text-align: center;
  margin-bottom: 2rem;
}

.pdf-viewer-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.pdf-viewer-wrap iframe {
  width: 100%;
  height: min(92vh, 1300px);
  border: 0;
  display: block;
}

.pdf-fallback {
  padding: 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
}

.pdf-fallback a {
  color: var(--sea-glass);
}

/* ── SUPERVISION PAGE ── */
.supervision-page {
  padding-top: var(--header-height);
  --supervision-aside-col: 270px;
  --supervision-main-col: 520px;
  --supervision-col-gap: 2.5rem;
  --supervision-content-width: calc(
    var(--supervision-aside-col) + var(--supervision-main-col) + var(--supervision-col-gap)
  );
}

.supervision-section {
  background: var(--warm-off);
  padding-top: 4rem;
}

.supervision-grid {
  display: grid;
  grid-template-columns: minmax(0, var(--supervision-aside-col)) minmax(0, var(--supervision-main-col));
  column-gap: var(--supervision-col-gap);
  align-items: start;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}

.supervision-sidebar {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.5rem;
  max-width: var(--supervision-aside-col);
}

.supervision-content {
  grid-column: 2;
  max-width: var(--supervision-main-col);
}

.supervision-sidebar .portrait-wrap {
  width: 230px;
  height: 230px;
  max-width: 100%;
  align-self: center;
  box-shadow:
    0 0 0 6px #fff,
    0 8px 32px rgba(30, 48, 64, 0.18);
}

.supervision-sidebar .portrait-wrap img {
  object-position: center center;
  transform: scale(1.08);
}

.supervision-bapps {
  width: 100%;
}

.supervision-bapps .bapps-logo {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
}

.supervision-accreditation-logos {
  justify-content: center;
  gap: 0.9rem;
}

.supervision-accreditation-logos img {
  max-width: 100px;
}

.supervision-sidebar .supervisor-header {
  width: 100%;
  text-align: left;
  margin-bottom: 0;
}

.supervision-sidebar .supervisor-name {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep-sea);
}

.supervision-sidebar .supervisor-creds {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sea-glass);
}

.supervision-sidebar .supervisor-intro {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--text);
  font-weight: 300;
}

.supervision-sidebar .qualifications-block {
  width: 100%;
  margin-bottom: 0;
}

.supervisor-header {
  margin-bottom: 2rem;
}

.supervisor-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--deep-sea);
  margin-bottom: 0.3rem;
}

.supervisor-creds {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sea-glass);
}

.qualifications-block {
  background: var(--sand);
  border-radius: 8px;
  padding: 1.5rem 1.8rem;
  margin-bottom: 2rem;
}

.qualifications-block h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--deep-sea);
  margin-bottom: 0.8rem;
}

.qualifications-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.qualifications-block li {
  font-size: 0.95rem;
  color: var(--text);
  padding-left: 1rem;
  position: relative;
}

.qualifications-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sea-glass);
}

.page-content-title {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--deep-sea);
  line-height: 1.35;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.supervision-content p {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.supervision-contact-form {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--pebble);
}

.supervision-contact-form .form-submit {
  text-align: left;
}

/* ── SAM MILFORD PAGE ── */
.sam-page {
  padding-top: var(--header-height);
}

.sam-section {
  background: var(--warm-off);
  padding-top: 4rem;
}

.sam-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.sam-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sam-sidebar .portrait-wrap {
  width: 100%;
  max-width: 280px;
  height: auto;
  aspect-ratio: 1;
  margin: 0 auto;
}

.sam-sidebar .accreditation-logos {
  justify-content: center;
  max-width: 280px;
  margin-inline: auto;
  width: 100%;
}

.sam-sidebar .body-text,
.sam-sidebar .qualifications-block {
  max-width: 260px;
  margin-inline: auto;
  width: 100%;
}

.sam-header {
  margin-bottom: 1.5rem;
}

.sam-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--deep-sea);
  margin-bottom: 0.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sam-creds {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sea-glass);
}

.sam-intro {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.sam-main .body-text {
  margin-bottom: 1rem;
}

.sam-contact-form {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--pebble);
}

.sam-contact-form .form-submit {
  text-align: left;
}

/* ── RESPONSIVE ── */
@media (max-width: 630px) {
  .home-page .research-publication { order: 1; grid-column: 1; grid-row: auto; }
  .home-page .research-heading { order: 2; grid-column: 1; grid-row: auto; }
  .home-page .research-cover {
    order: 3;
    grid-column: 1;
    grid-row: auto;
    max-width: 150px;
    margin-left: auto;
    margin-right: auto;
  }
  .home-page .research-body { order: 4; grid-column: 1; grid-row: auto; }
}

/* Home: keep two columns on tablet/narrow desktop; shrink aside + portrait */
@media (max-width: 1024px) and (min-width: 631px) {
  .home-page {
    --home-text-col: clamp(280px, 44vw, 420px);
    --home-aside-col: clamp(148px, 22vw, 220px);
    --home-col-gap: 1.5rem;
  }

  .home-page .about-text {
    max-width: var(--home-text-col);
  }

  .home-page .about-sidebar {
    max-width: var(--home-aside-col);
    gap: 1.25rem;
  }

  .home-page .about-sidebar .portrait-wrap {
    width: min(200px, 100%);
    height: min(200px, 100%);
  }

  .home-page .accreditation-logos {
    gap: 0.75rem;
  }

  .home-page .accreditation-logos img {
    max-width: 72px;
  }

  .home-page .research-cover {
    max-width: 100%;
  }

  .home-page .location-photo-wrap {
    max-width: var(--home-aside-col);
  }

  .home-page .location-photo-circle {
    width: min(180px, 100%);
    height: min(180px, 100%);
  }
}

/* Supervision: keep two columns on tablet; shrink aside (col 1) + main (col 2) */
@media (max-width: 1024px) and (min-width: 631px) {
  .supervision-page {
    --supervision-aside-col: clamp(158px, 22vw, 220px);
    --supervision-main-col: clamp(280px, 44vw, 420px);
    --supervision-col-gap: 1.5rem;
  }

  .supervision-page .supervision-sidebar {
    max-width: var(--supervision-aside-col);
    gap: 1.1rem;
  }

  .supervision-page .supervision-content {
    max-width: var(--supervision-main-col);
  }

  .supervision-page .supervision-sidebar .portrait-wrap {
    width: min(165px, 100%);
    height: min(165px, 100%);
  }

  .supervision-page .supervision-sidebar .portrait-wrap img {
    transform: scale(1.06);
  }

  .supervision-page .supervision-accreditation-logos {
    gap: 0.65rem;
  }

  .supervision-page .supervision-accreditation-logos img {
    max-width: 68px;
  }

  .supervision-page .supervision-sidebar .supervisor-intro {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .supervision-page .supervision-sidebar .qualifications-block {
    padding: 1rem 1.1rem;
  }

  .supervision-page .qualifications-block h3 {
    font-size: 1.05rem;
  }

  .supervision-page .qualifications-block li {
    font-size: 0.88rem;
  }

  .ows-page {
    --home-text-col: clamp(280px, 44vw, 420px);
    --home-aside-col: clamp(148px, 22vw, 220px);
    --home-col-gap: 1.5rem;
    --ows-magazine-width: clamp(110px, 20vw, 170px);
  }

  .ows-page .intro-panel-inner {
    max-width: min(var(--home-content-width), 100%);
  }

  .ows-page .magazine-float {
    float: right;
    width: var(--ows-magazine-width);
    max-width: 34%;
    margin: 0.2rem 0 1.25rem 1.25rem;
  }

  .ows-page .magazine-float-caption {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.2rem 0.15rem;
  }
}

@media (max-width: 630px) {
  .home-page .about-content,
  .home-page .research-grid,
  .home-page .location-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: min(var(--home-text-col), 100%);
    gap: 2.5rem;
  }

  .home-page .about-text {
    grid-column: 1;
    grid-row: 2;
    max-width: none;
  }

  .home-page .about-sidebar {
    grid-column: 1;
    grid-row: 1;
    max-width: 280px;
    margin: 0 auto 2rem;
    justify-self: center;
  }

  .home-page .about-sidebar .portrait-wrap {
    width: 260px;
    height: 260px;
  }

  .home-page .location-heading,
  .home-page .location-text,
  .home-page .location-photo-wrap {
    grid-column: 1;
    grid-row: auto;
  }

  .home-page .location-heading { order: 1; }
  .home-page .location-photo-wrap {
    order: 2;
    justify-content: center;
  }
  .home-page .location-text { order: 3; }

  .supervision-page .supervision-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: min(var(--supervision-main-col), 100%);
    gap: 2.5rem;
  }

  .supervision-page .supervision-sidebar,
  .supervision-page .supervision-content {
    grid-column: 1;
    max-width: none;
  }

  .supervision-page .supervision-sidebar {
    max-width: 270px;
    margin-inline: auto;
  }

  .supervision-page .supervision-sidebar .portrait-wrap {
    width: 220px;
    height: 220px;
  }

  .ows-page .magazine-float {
    float: none;
    width: auto;
    max-width: min(200px, 72vw);
    margin: 0 auto 1.5rem;
  }

  .ows-page .magazine-float:hover {
    transform: none;
  }
}

@media (max-width: 1024px) {
  .sam-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sam-sidebar .portrait-wrap {
    max-width: 260px;
  }

  .hero-title {
    letter-spacing: 0.12em;
  }
}

@media (max-width: 860px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-page .team-section .section-inner {
    max-width: min(var(--home-content-width), 100%);
  }

  .intro-grid,
  .door-photo-float,
  .transport-cards {
    float: none;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 2rem;
  }

  .door-photo-float {
    margin-left: auto;
    margin-right: auto;
  }

  .getting-here-directions-col {
    max-width: none;
  }

  .form-row { grid-template-columns: 1fr; }

  header {
    padding: 0 1.25rem;
    gap: 0.75rem;
  }

  .header-brand {
    min-width: 0;
    flex: 1;
    gap: 0.75rem;
  }

  .brand-line {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .nav-toggle {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--pebble);
    box-shadow: 0 12px 28px rgba(30, 48, 64, 0.08);
  }

  body.nav-open nav {
    display: flex;
  }

  nav a {
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--pebble);
    font-size: 0.82rem;
  }

  nav a:last-child {
    border-bottom: 0;
  }

  nav a.active {
    border-bottom-color: var(--pebble);
    box-shadow: inset 0 -1px 0 var(--sea-glass);
  }

  .footer-contact { flex-direction: column; gap: 0.7rem; }

  .hero-title {
    letter-spacing: 0.08em;
    font-size: clamp(1.35rem, 4.5vw, 1.85rem);
  }

  .hero-sub {
    font-size: clamp(0.85rem, 2.5vw, 1rem);
  }
}
