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

:root {
  --ocean: #0a4a6b;
  --deep: #031f2d;
  --sky: #1a8fbf;
  --foam: #e8f4f0;
  --sand: #f2e8d0;
  --gold: #e8a835;
  --coral: #e85c35;
  --white: #fafaf8;
  --ink: #0d1a22;
  --muted: #6b8a99;
  --ff-display: 'Bebas Neue', sans-serif;
  --ff-body: 'Archivo', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}
body.nav-menu-open {
  overflow: hidden;
  touch-action: none;
}

/* ─── SITE HEADER / NAV (header wraps nav + mobile overlays — no backdrop-filter on header so iOS Safari positions fixed drawer/backdrop to the viewport) ─── */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  max-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem max(2.5rem, env(safe-area-inset-right, 0px)) 1rem max(2.5rem, env(safe-area-inset-left, 0px));
  padding-top: max(1rem, env(safe-area-inset-top, 0px));
  background: rgba(3, 31, 45, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: padding 0.3s;
  box-sizing: border-box;
}
nav.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex: 0 0 auto;
  min-width: 0;
  max-width: 100%;
  background: transparent;
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--white);
}
.nav-logo span { color: var(--gold); }
.nav-logo-img {
  display: block;
  height: 92px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.nav-brand-link { display: flex; align-items: center; line-height: 0; min-width: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  margin-left: auto;
  padding: 0;
}
.nav-links a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.nav-link-active {
  color: var(--gold);
}
.nav-cta {
  background: var(--coral);
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #c94a28 !important; color: white !important; }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 120;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  transition: background 0.2s, border-color 0.2s;
}
.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(232, 168, 53, 0.65);
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 1.2rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.22s ease, opacity 0.22s ease, box-shadow 0.22s ease;
}
.nav-toggle-lines {
  position: relative;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: '';
  position: absolute;
  left: 0;
}
.nav-toggle-lines::before { top: -7px; }
.nav-toggle-lines::after { top: 7px; }
.site-header.is-open .nav-toggle-lines {
  background: transparent;
}
.site-header.is-open .nav-toggle-lines::before {
  transform: translateY(7px) rotate(45deg);
}
.site-header.is-open .nav-toggle-lines::after {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-backdrop {
  display: none;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  background: var(--deep);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(3,31,45,0.92) 45%, rgba(10,74,107,0.5) 100%),
    url('https://images.unsplash.com/photo-1502680390469-be75c86b636f?w=1600&q=80') center/cover no-repeat;
  animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.hero-content {
  position: relative; z-index: 2;
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 8rem 8vw 5rem;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(232,168,53,0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.2s both;
}
.hero-badge::before { content: none; }
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: 0.9;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.4s both;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
  display: block;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeUp 0.8s 0.6s both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.8s both;
}
.btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none; cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
}
.btn-primary { background: var(--coral); color: white; }
.btn-primary:hover { background: #c94a28; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,92,53,0.4); }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.hero-stats {
  margin-top: 3.5rem;
  display: flex; gap: 3rem;
  animation: fadeUp 0.8s 1s both;
}
.stat { text-align: right; }
.stat-num {
  font-family: var(--ff-display);
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
}
.stat-num span { color: var(--gold); }
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.3rem;
}

.wave-divider {
  width: 100%; overflow: hidden;
  line-height: 0;
  margin-top: -2px;
}
.wave-divider svg { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--ocean);
  padding: 1.2rem 4vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.trust-item .icon { font-size: 1.1rem; }

/* ─── SECTION SHARED ─── */
section { padding: 7rem 8vw; }
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.section-title.light { color: var(--white); }

/* ─── LESSONS ─── */
#lessons { background: var(--white); }
.lessons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 4rem;
}
.lesson-card {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  text-decoration: none;
}
.lesson-card:first-child { border-radius: 4px 0 0 4px; }
.lesson-card:last-child { border-radius: 0 4px 4px 0; }
.lesson-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.lesson-card:hover .lesson-bg { transform: scale(1.05); }
.lesson-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(3,31,45,0.96) 0%, rgba(3,31,45,0.3) 60%, transparent 100%);
}
.lesson-tag {
  position: absolute;
  top: 2rem;
  right: 2rem;
  left: auto;
  z-index: 3;
  max-width: min(11.5rem, calc(100% - 4rem));
  background: var(--gold);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  text-align: center;
  line-height: 1.25;
  box-sizing: border-box;
}
.lesson-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  color: white;
}
.lesson-level {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.lesson-name {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.lesson-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  margin-bottom: 1.5rem;
  max-width: 380px;
}
.lesson-meta {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  margin-bottom: 1.8rem;
}
.lesson-meta-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}
.lesson-price-block {
  display: flex; align-items: baseline; gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.price-from { font-size: 0.72rem; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; }
.price-num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  color: var(--gold);
}
.price-per { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.btn-card {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--coral); color: white;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.8rem 1.6rem; border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-card:hover { background: #c94a28; transform: translateX(4px); }
.btn-card svg { transition: transform 0.2s; }
.btn-card:hover svg { transform: translateX(4px); }

/* ─── PRICING ─── */
#pricing {
  background: var(--deep);
  position: relative;
  overflow: hidden;
}
#pricing::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,143,191,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}
.pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 2rem 1.8rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.pricing-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(232,168,53,0.4);
  transform: translateY(-4px);
}
.pricing-card.featured {
  background: var(--ocean);
  border-color: var(--gold);
}
.pricing-card.featured::after {
  content: 'POPULAR';
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}
.pc-persons {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.pc-price-usd {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1;
}
.pc-price-usd sup { font-size: 1.5rem; vertical-align: super; }
.pc-price-lkr {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.3rem;
  margin-bottom: 1.2rem;
}
.pc-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 1.2rem;
}
.pc-includes {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.pc-includes li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 0.5rem;
}
.pc-separator {
  color: rgba(14, 13, 13, 0.85);
  font-weight: 700;
  margin-right: 0.05rem;
}
.pc-includes li::before {
  content: 'P';
  color: #fff;
  background: #000;
  font-weight: 800;
  font-size: 0.62rem;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}

/* ─── SPOTS ─── */
#spots { background: var(--sand); }
.spots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.spot-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  transition: box-shadow 0.3s;
  text-decoration: none;
  color: var(--ink);
}
.spot-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.spot-thumb {
  width: 120px; min-height: 120px;
  background-size: cover; background-position: center;
  flex-shrink: 0;
}
.spot-info { padding: 1.5rem; }
.spot-name {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.spot-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* ─── REVIEWS ─── */
#reviews {
  background: var(--white);
  padding: 7rem 8vw;
}
.tripadvisor-badge {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: #00eb5b;
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 1.3rem;
  border-radius: 4px;
  margin-bottom: 3rem;
}
.tripadvisor-badge .stars { color: #000; letter-spacing: 2px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.review-card {
  background: var(--foam);
  border-radius: 4px;
  padding: 2rem;
  border-left: 3px solid var(--gold);
  transition: transform 0.3s;
}
.review-card:hover { transform: translateY(-4px); }
.review-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 0.8rem; }
.review-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.8rem; }
.review-text { font-size: 0.85rem; color: #444; line-height: 1.6; margin-bottom: 1.2rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 0.6rem; }
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ocean);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.82rem; }
.review-date { font-size: 0.72rem; color: var(--muted); }

/* ─── WHAT'S INCLUDED ─── */
#included {
  background: var(--ocean);
  padding: 7rem 8vw;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.included-item {
  display: flex; gap: 1.2rem;
  align-items: flex-start;
}
.included-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
}
.included-text h4 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.included-text p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* ─── TIPS ─── */
#tips { background: var(--sand); }
.tips-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-top: 4rem;
}
.tips-visual {
  background: var(--ocean);
  border-radius: 4px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.tips-visual::before {
  content: '🏄';
  font-size: 10rem;
  position: absolute;
  bottom: -2rem; right: -1rem;
  opacity: 0.12;
}
.tips-visual h3 {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.tips-visual p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
}
.tips-schedule {
  margin-top: 2rem;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.session-row {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,0.07);
  padding: 0.8rem 1.2rem;
  border-radius: 3px;
  border-left: 3px solid var(--gold);
}
.session-time {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--gold);
  width: 80px;
  flex-shrink: 0;
}
.session-label { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.tips-list { display: flex; flex-direction: column; gap: 1.2rem; }
.tip-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.tip-item:last-child { border-bottom: none; }
.tip-num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  color: var(--coral);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  opacity: 0.6;
}
.tip-item h4 { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.3rem; }
.tip-item p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* ─── INSTRUCTOR ─── */
#instructor {
  background: var(--deep);
  padding: 7rem 8vw;
}
.instructor-wrap {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 6rem;
  align-items: center;
  margin-top: 4rem;
}
.instructor-card {
  background: var(--ocean);
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
}
.instructor-photo {
  width: 100%; aspect-ratio: 3/4;
  background: url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?w=600&q=80') center/cover;
}
.instructor-info { padding: 2rem; }
.instructor-name {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  color: white;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.28rem;
}
.instructor-name-visual {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.32rem;
}
.instructor-name-mr-cluster {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.instructor-name-mr-ring {
  width: 2.35rem;
  height: 2.35rem;
  min-width: 2.35rem;
  min-height: 2.35rem;
  border-radius: 50%;
  background: var(--white);
  color: var(--ocean);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.32rem;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: 0 1px 2px rgba(3, 31, 45, 0.18);
}
.instructor-name-mr-ring--r {
  margin-left: -0.78rem;
  position: relative;
  z-index: 1;
}
.instructor-name-mr-ring:first-of-type {
  position: relative;
  z-index: 2;
}
.instructor-name-mr-char {
  display: block;
  transform: translateY(0.04rem);
}
.instructor-name-mr-period {
  font-family: var(--ff-display);
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1;
  margin-left: 0.1rem;
  padding-bottom: 0.12rem;
  align-self: flex-end;
  font-weight: 400;
  letter-spacing: 0;
}
.instructor-name-tail {
  font-family: var(--ff-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.instructor-name-visual--unicode {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.38em;
  color: var(--white);
  line-height: 1.1;
}
.instructor-name-uc-mrwrap {
  display: inline-flex;
  align-items: baseline;
  flex-shrink: 0;
  gap: 0;
  line-height: 1;
  unicode-bidi: isolate;
}
.instructor-name-uc-mr {
  font-family: "Segoe UI Symbol", "Apple Symbols", "Noto Sans Symbols 2", "Noto Sans Symbols", "Apple Color Emoji", sans-serif;
  font-size: 0.96em;
  letter-spacing: 0.1em;
  line-height: 1;
}
.instructor-name-uc-dot {
  font-family: var(--ff-display);
  color: var(--white);
  font-size: 0.92em;
  font-weight: 400;
  line-height: 1;
  margin-left: 0.02em;
  letter-spacing: 0;
}
.instructor-name-uc-pappy {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 1em;
  letter-spacing: 0.1em;
}
.instructor-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.instructor-text h3 {
  font-family: var(--ff-display);
  font-size: 3rem;
  color: white;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.instructor-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.instructor-quals {
  display: flex; flex-wrap: wrap; gap: 0.8rem;
}
.qual-tag {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
}

/* ─── GALLERY ─── */
#gallery {
  background: var(--deep);
  padding: 7rem 8vw;
}
#gallery .section-label { color: var(--gold); }
#gallery .section-title { color: white; margin-bottom: 3rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
}
.gallery-item.video-item {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-media {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover .gallery-media {
  transform: scale(1.08);
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(3,31,45,0.2);
  transition: background 0.3s;
}
.gallery-item:hover::after {
  background: transparent;
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 70px; height: 70px;
  background: rgba(232,92,53,0.9);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: all 0.3s;
}
.play-btn::before { content: '▶'; margin-left: 5px; }
.gallery-item:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--gold);
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.video-item { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.video-item { grid-column: span 1; grid-row: span 1; aspect-ratio: 16/9; }
}

/* ─── BOOK CTA ─── */
#book {
  background: var(--coral);
  padding: 6rem 8vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#book::before {
  content: 'SURF';
  font-family: var(--ff-display);
  font-size: 20rem;
  color: rgba(255,255,255,0.05);
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
#book .section-title { color: white; }
#book p { color: rgba(255,255,255,0.8); max-width: 500px; margin: 1.2rem auto 2.5rem; font-size: 1rem; line-height: 1.7; }
.book-form {
  display: flex; justify-content: center;
  gap: 1rem; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.book-form input, .book-form select {
  padding: 1rem 1.4rem;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  border: none;
  border-radius: 2px;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  min-width: 200px;
  outline: none;
}
.book-form button {
  padding: 1rem 2.5rem;
  background: var(--deep);
  color: white;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
}
.book-form button:hover { background: var(--ocean); }
.book-form .payment-info {
  flex-basis: 100%;
  text-align: left;
  margin-top: 0.2rem;
  padding: 0.85rem 1rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.92);
  font-size: 0.82rem;
  line-height: 1.45;
}
.book-form .payment-info strong {
  color: #fff;
}
.wa-cta {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 2rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}
.wa-cta:hover { color: white; }
.wa-cta strong { color: white; }

/* ─── LOCATION ─── */
#location {
  background: var(--white);
  padding: 7rem 8vw;
}
.location-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 4rem;
}
.location-map {
  border-radius: 4px;
  overflow: hidden;
  height: 380px;
  background: var(--foam);
  position: relative;
}
.location-map iframe {
  width: 100%; height: 100%;
  border: none;
}
.location-info h3 {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.contact-rows { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--foam);
  border-radius: 3px;
  font-size: 0.9rem;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.2s;
}
.contact-row:hover { background: var(--sand); }
.contact-row .cicon { font-size: 1.3rem; width: 36px; text-align: center; }
.contact-row strong { display: block; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.15rem; }

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  padding: 4rem 8vw 2rem;
  color: rgba(255,255,255,0.55);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}
.footer-brand .nav-logo { font-size: 2rem; display: block; margin-bottom: 1rem; }
.footer-brand .nav-logo-img {
  height: clamp(104px, 20vw, 144px);
  margin-bottom: 1.25rem;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 300px; }
.footer-col h5 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.78rem;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.social-logo-link {
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  padding: 0;
  border-radius: 50%;
  overflow: hidden;
  box-sizing: border-box;
  border: 0px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  transition: transform 0.2s, filter 0.2s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.social-logo-link i {
  font-size: 1.2rem;
  line-height: 1;
}
.social-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  flex-shrink: 0;
  border-radius: 50%;
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
}
/* WhatsApp asset has extra white padding — zoom inside the circle mask */
.social-logo-whatsapp .social-logo-img {
  transform: scale(1.2);
  transform-origin: center center;
}
.social-logo-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.social-logo-instagram {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.social-logo-whatsapp {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.social-logo-tripadvisor {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── FLOATING WA ─── */
.float-wa {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  background: #25d366;
  color: white;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  text-decoration: none;
  font-size: 1.6rem;
  animation: pulse 2.5s ease-in-out infinite;
  transition: transform 0.2s;
}
.float-wa:hover { transform: scale(1.1); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 36px rgba(37,211,102,0.8); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  header.site-header {
    padding: max(0.75rem, env(safe-area-inset-top, 0px)) max(1rem, env(safe-area-inset-right, 0px)) 0.75rem max(1rem, env(safe-area-inset-left, 0px));
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
    width: 100%;
    max-width: 100vw;
  }
  header.site-header.is-open {
    z-index: 10001;
  }
  nav.site-nav {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
  }
  .nav-brand-link {
    position: relative;
    z-index: 120;
    flex: 1;
    min-width: 0;
    max-width: calc(100% - 3.25rem);
  }
  .nav-logo-img {
    height: clamp(48px, 12vw, 68px);
    width: auto;
    max-width: 100%;
  }
  .nav-toggle {
    display: flex;
    flex-shrink: 0;
    z-index: 120;
  }
  .nav-backdrop {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 105;
    background: rgba(3, 24, 35, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .site-header.is-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(20rem, 100vw);
    max-width: 100%;
    margin: 0;
    margin-left: 0;
    padding: calc(env(safe-area-inset-top, 0px) + 5rem) max(1rem, env(safe-area-inset-right, 0px)) max(1.5rem, env(safe-area-inset-bottom, 0px)) 1.25rem;
    list-style: none;
    background: rgba(3, 31, 45, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
    z-index: 110;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box;
  }
  .site-header.is-open .nav-links {
    transform: translate3d(0, 0, 0);
  }
  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-links li:last-child {
    border-bottom: none;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
  }
  .nav-links a {
    display: block;
    padding: 0.95rem 0.25rem;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }
  .nav-links a.nav-cta {
    text-align: center;
    padding: 0.85rem 1rem;
  }
  section { padding: 5rem 5vw; }
  .lessons-grid, .pricing-grid, .reviews-grid, .included-grid,
  .tips-wrap, .instructor-wrap, .location-wrap, .footer-top {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .spots-grid { grid-template-columns: 1fr; }
  .hero-stats { position: static; flex-direction: row; gap: 2rem; margin-top: 3rem; }
  .hero-content { padding-top: 7rem; }
  #book::before { font-size: 8rem; }
  .lesson-card { min-height: 420px; }
  .lesson-tag {
    top: 1.25rem;
    right: 1.25rem;
    max-width: min(11rem, calc(100% - 2.5rem));
  }
  .lesson-content { padding: 2rem 1.5rem; }
  .instructor-wrap { grid-template-columns: 1fr; }
  .instructor-card { max-width: 320px; }
}

/* ─── GALLERY MODAL ─── */
.gallery-modal {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  display: none; align-items: center; justify-content: center;
  padding: 5vh 5vw;
}
.gallery-modal.active { display: flex; }

.gallery-modal-content {
  width: 100%; max-width: 1100px;
  max-height: 80vh;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}

#galleryIframe {
  width: 100%; aspect-ratio: 16/9;
  border: none; display: none;
  box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

#galleryImg {
  max-width: 100%; max-height: 80vh;
  object-fit: contain; display: none;
  box-shadow: 0 0 50px rgba(0,0,0,0.5);
  border-radius: 4px;
}

.gallery-modal-close {
  position: absolute; top: -50px; right: 0;
  color: white; font-size: 1.5rem; cursor: pointer;
  background: none; border: none;
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--ff-body); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.gallery-modal-close:hover { color: var(--coral); }

/* ─── HOME HUB (landings) ─── */
#hub-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--deep);
  overflow: hidden;
}
#hub-hero .hero-actions { position: relative; z-index: 1; }
#hub-hero .hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3, 31, 45, 0.97) 0%, rgba(10, 74, 107, 0.55) 100%),
    url('https://images.unsplash.com/photo-1502680390469-be75c86b636f?w=1800&q=80') center/cover no-repeat;
  opacity: 0.85;
}
.hub-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 6rem 6vw 4rem;
  max-width: 900px;
}
.hub-hero-inner .hero-badge {
  display: inline-block;
  margin-bottom: 1.5rem;
}
.hub-hero-inner .hero-title {
  color: white;
  margin-bottom: 1rem;
}
.hub-hero-inner .hero-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}
.hub-cards-section {
  padding: 5rem 6vw 6rem;
  background: var(--white);
}
.hub-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hub-card {
  display: block;
  position: relative;
  min-height: 280px;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s, box-shadow 0.25s;
}
.hub-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}
.hub-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hub-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(3, 31, 45, 0.92) 100%);
}
.hub-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.75rem 1.5rem 1.5rem;
  text-align: left;
}
.hub-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.hub-card-title {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}
.hub-card-desc {
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
  max-width: 28rem;
}
@media (max-width: 768px) {
  .hub-cards-grid { grid-template-columns: 1fr; }
  .hub-card { min-height: 240px; }
}

@media (max-width: 520px) {
  .hub-hero-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .hub-hero-inner .hero-sub {
    font-size: 0.95rem;
  }
  .trust-bar {
    padding: 1rem 1.25rem;
    gap: 1rem 1.5rem;
  }
  .trust-item {
    font-size: 0.75rem;
    flex: 1 1 40%;
    justify-content: center;
    text-align: center;
  }
  .book-form {
    flex-direction: column;
    align-items: stretch;
  }
  .book-form input,
  .book-form select {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .float-wa {
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    right: max(1rem, env(safe-area-inset-right, 0px));
    width: 52px;
    height: 52px;
    font-size: 1.45rem;
  }
  .social-links {
    gap: 0.55rem;
  }
  .social-logo-link {
    width: 2.2rem;
    min-width: 2.2rem;
    height: 2.2rem;
    padding: 0;
    gap: 0;
  }
}

/* ─── BLOG (list + articles, SEO) — same content width as hub / landings ─── */
body.blog-page-body {
  background: var(--sand);
  color: var(--ink);
}
body.blog-page-body footer {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.75);
}
.blog-page {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 6.5rem 8vw 4rem;
  box-sizing: border-box;
}
.blog-post-page.blog-page {
  max-width: 1100px;
}
.blog-post-page .blog-article {
  width: 100%;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}
.blog-hero {
  width: 100%;
  margin: 0 0 2rem;
}
.blog-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  letter-spacing: 0.04em;
  color: var(--deep);
  line-height: 1;
  margin: 0.35rem 0 1rem;
}
.blog-hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 40rem;
}
.blog-list-wrap {
  margin-top: 0.5rem;
  width: 100%;
}
.blog-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  width: 100%;
}
@media (max-width: 900px) {
  .blog-page {
    padding: 5.5rem 5vw 3rem;
  }
}
.blog-card {
  background: var(--white);
  border-radius: 4px;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--coral);
  box-shadow: 0 4px 22px rgba(3, 31, 45, 0.07);
}
.blog-card-date {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
}
.blog-card-title {
  font-family: var(--ff-display);
  font-size: 1.85rem;
  margin: 0.5rem 0 0.65rem;
  line-height: 1.1;
}
.blog-card-title a {
  color: var(--deep);
  text-decoration: none;
}
.blog-card-title a:hover {
  color: var(--coral);
}
.blog-card-excerpt {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 0.75rem;
}
.blog-card-read {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--coral);
  text-decoration: none;
}
.blog-card-read:hover {
  text-decoration: underline;
}
.blog-empty {
  color: var(--muted);
}
.blog-article-header {
  margin-bottom: 2rem;
}
.blog-breadcrumb {
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
}
.blog-breadcrumb a {
  color: var(--coral);
  font-weight: 600;
  text-decoration: none;
}
.blog-breadcrumb a:hover {
  text-decoration: underline;
}
.blog-article-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.03em;
  color: var(--deep);
  line-height: 1.05;
  margin: 0.5rem 0 0;
}
.blog-prose {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
}
.blog-prose p {
  margin: 0 0 1.1rem;
}
.blog-prose h2 {
  font-family: var(--ff-display);
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  color: var(--ocean);
  margin: 2rem 0 0.75rem;
}
.blog-prose ul {
  margin: 0 0 1.1rem 1.15rem;
}
.blog-prose a {
  color: var(--coral);
  font-weight: 600;
}
.blog-article-footer {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(3, 31, 45, 0.1);
  font-size: 0.9rem;
}
.blog-article-footer a {
  color: var(--coral);
  font-weight: 700;
  text-decoration: none;
}
.blog-article-footer a:hover {
  text-decoration: underline;
}
.blog-article-footer-sep {
  margin: 0 0.35rem;
  color: var(--muted);
}
.blog-draft-banner {
  background: rgba(232, 168, 53, 0.25);
  border: 1px solid var(--gold);
  color: var(--deep);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  margin: 0 0 1.25rem;
}

