/* =========================================================================
   Swing & Sole — design system
   Tidal teal base + sun-bleached sand accent. Arial Black (blocky, coastal
   signage feel) paired with Georgia (serif body, warm and readable) —
   system fonts only, no CDN.
   Sand-tray aesthetic: soft rounded panels, tideline dividers, circular
   gauge marks instead of hex badges.
   Hand-written, no framework.
   ========================================================================= */

:root {
  --sws-teal-950: #081a1c;
  --sws-teal-900: #0b2528;
  --sws-teal-800: #123336;
  --sws-teal-700: #1b464a;
  --sws-teal-600: #275a5e;
  --sws-line: rgba(233, 221, 195, 0.10);
  --sws-line-strong: rgba(233, 221, 195, 0.22);
  --sws-sand: #d9a441;
  --sws-sand-light: #f0c775;
  --sws-sand-dark: #a97a26;
  --sws-foam: #f6f1e4;
  --sws-khaki-100: #ece3cc;
  --sws-khaki-300: #cdc0a0;
  --sws-khaki-500: #a4977c;
  --sws-khaki-600: #7f7360;

  --sws-font-display: "Arial Black", "Arial Bold", Arial, Helvetica, sans-serif;
  --sws-font-body: Georgia, "Times New Roman", "Palatino Linotype", serif;

  --sws-wrap-w: 1200px;
  --sws-radius: 10px;
  --sws-radius-lg: 20px;
  --sws-radius-pill: 999px;
  --sws-shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.30);
  --sws-shadow-md: 0 20px 46px rgba(0, 0, 0, 0.40);
  --sws-shadow-glow: 0 16px 40px rgba(217, 164, 65, 0.22);
  --sws-ease: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.sws-body {
  margin: 0;
  font-family: var(--sws-font-body);
  color: var(--sws-khaki-300);
  background: var(--sws-teal-900);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; }
h1, h2, h3, h4 {
  font-family: var(--sws-font-display);
  color: var(--sws-foam);
  line-height: 1.12;
  margin: 0 0 0.45em;
  font-weight: 900;
  letter-spacing: -0.005em;
}
p { margin: 0 0 1.05em; color: var(--sws-khaki-300); }
address { font-style: normal; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.sws-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--sws-sand);
  color: var(--sws-teal-950);
  padding: 0.75em 1.25em;
  z-index: 1000;
  font-weight: 700;
}
.sws-skip:focus { left: 1em; top: 1em; }

.sws-wrap {
  width: 100%;
  max-width: var(--sws-wrap-w);
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- Tideline divider (coastal signature element) ---------- */
.sws-tideline {
  height: 5px;
  background: linear-gradient(90deg,
    transparent 0%, var(--sws-sand) 12%, var(--sws-sand-light) 26%,
    var(--sws-sand) 40%, transparent 52%, var(--sws-sand) 64%,
    var(--sws-sand-light) 78%, var(--sws-sand) 92%, transparent 100%);
  opacity: 0.55;
}

/* ---------- Buttons ---------- */
.sws-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8em 1.75em;
  border-radius: var(--sws-radius-pill);
  font-weight: 700;
  font-family: var(--sws-font-body);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: transform var(--sws-ease), box-shadow var(--sws-ease), background var(--sws-ease), color var(--sws-ease), border-color var(--sws-ease);
  border: 1px solid transparent;
  cursor: pointer;
}
.sws-btn--primary {
  background: var(--sws-sand);
  color: var(--sws-teal-950);
}
.sws-btn--primary:hover { background: var(--sws-sand-light); transform: translateY(-2px); box-shadow: var(--sws-shadow-glow); }
.sws-btn--ghost {
  background: transparent;
  border-color: var(--sws-line-strong);
  color: var(--sws-khaki-100);
}
.sws-btn--ghost:hover { border-color: var(--sws-sand); color: var(--sws-sand-light); transform: translateY(-2px); }
.sws-btn--panel {
  background: var(--sws-teal-700);
  color: var(--sws-khaki-100);
  border-color: var(--sws-line);
}
.sws-btn--panel:hover { border-color: var(--sws-sand); transform: translateY(-2px); }
.sws-btn--block { display: flex; justify-content: center; width: 100%; }

/* ---------- Utility bar ---------- */
.sws-utility { background: var(--sws-teal-950); border-bottom: 1px solid var(--sws-line); }
.sws-utility__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  font-size: 0.78rem;
  color: var(--sws-khaki-500);
  letter-spacing: 0.01em;
}
.sws-utility__info { display: flex; align-items: center; gap: 10px; }
.sws-utility__dot { color: var(--sws-line-strong); }
.sws-utility__cta { color: var(--sws-sand-light); font-weight: 700; }
.sws-utility__cta:hover { color: var(--sws-sand); }
@media (max-width: 700px) { .sws-utility { display: none; } }

/* ---------- Header ---------- */
.sws-header {
  background: rgba(11, 37, 40, 0.94);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--sws-line);
  position: sticky;
  top: 0;
  z-index: 200;
}
.sws-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.sws-brand { display: flex; align-items: center; gap: 12px; }
.sws-brand__mark {
  position: relative;
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 50%;
  border: 2px solid var(--sws-sand);
  background:
    radial-gradient(circle at 50% 50%, transparent 0 34%, var(--sws-sand) 34% 38%, transparent 38% 52%, var(--sws-sand) 52% 55%, transparent 55%);
}
.sws-brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.sws-brand__name { color: var(--sws-foam); font-size: 1.2rem; font-weight: 900; font-family: var(--sws-font-display); }
.sws-brand__tag { color: var(--sws-khaki-500); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; font-family: var(--sws-font-body); font-weight: 700; }

.sws-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--sws-line-strong);
  border-radius: var(--sws-radius);
  cursor: pointer;
  z-index: 260;
}
.sws-nav-toggle span {
  display: block;
  height: 2px;
  margin: 0 8px;
  background: var(--sws-khaki-100);
  transition: transform var(--sws-ease), opacity var(--sws-ease);
}
.sws-nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sws-nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.sws-nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.sws-nav { display: flex; align-items: center; gap: 26px; }
.sws-nav__list { display: flex; align-items: center; gap: 18px; }
.sws-nav__item > a {
  color: var(--sws-khaki-300);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 8px 0;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: border-color var(--sws-ease), color var(--sws-ease);
}
.sws-nav__item > a:hover,
.sws-nav__item.is-active > a { border-color: var(--sws-sand); color: var(--sws-foam); }
.sws-nav__cta { padding: 0.6em 1.25em; font-size: 0.82rem; }

@media (max-width: 980px) {
  .sws-nav-toggle { display: flex; }
  .sws-nav {
    position: fixed;
    inset: 0;
    right: 28%;
    background: var(--sws-teal-950);
    border-right: 1px solid var(--sws-line);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 40px;
    transform: translateX(-100%);
    transition: transform var(--sws-ease);
    z-index: 250;
  }
  .sws-nav.is-open { transform: translateX(0); }
  .sws-nav__list { flex-direction: column; align-items: flex-start; gap: 2px; width: 100%; }
  .sws-nav__item { width: 100%; border-bottom: 1px solid var(--sws-line); }
  .sws-nav__item > a { display: block; padding: 15px 0; font-size: 1rem; }
  .sws-nav__cta { margin-top: 22px; width: 100%; justify-content: center; }
}
@media (max-width: 460px) { .sws-nav { right: 0; padding: 30px 22px; } }

/* ---------- Hero ---------- */
.sws-hero {
  position: relative;
  background:
    radial-gradient(circle at 10% 4%, rgba(217, 164, 65, 0.14), transparent 46%),
    var(--sws-teal-900);
  padding: 74px 0 0;
  overflow: hidden;
  border-bottom: 1px solid var(--sws-line);
}
.sws-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-radial-gradient(circle at 50% 120%, rgba(233, 221, 195, 0.05) 0 1px, transparent 1px 34px);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.7), transparent 65%);
  pointer-events: none;
}
.sws-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
  padding-bottom: 58px;
}
.sws-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sws-sand-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: var(--sws-font-body);
}
.sws-hero__eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--sws-sand); box-shadow: 0 0 0 4px rgba(217, 164, 65, 0.2); }
.sws-hero h1 { font-size: clamp(2.3rem, 4.8vw, 3.5rem); max-width: 16ch; letter-spacing: -0.01em; }
.sws-hero__lede { color: var(--sws-khaki-300); font-size: 1.08rem; max-width: 50ch; }
.sws-hero__actions { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }

/* ---------- Reading gauge (hero visual) ---------- */
.sws-gauge {
  position: relative;
  background: var(--sws-teal-800);
  border: 1px solid var(--sws-line-strong);
  border-radius: var(--sws-radius-lg);
  padding: 28px 26px 24px;
  box-shadow: var(--sws-shadow-md);
}
.sws-gauge__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--sws-khaki-500);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--sws-line-strong);
}
.sws-gauge__head .sws-live-dot { display: inline-flex; align-items: center; gap: 6px; color: var(--sws-sand-light); }
.sws-live-dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--sws-sand); animation: sws-pulse 1.9s infinite; }
@keyframes sws-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.sws-gauge__reading {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 70px;
  margin-bottom: 18px;
  padding: 0 2px;
}
.sws-gauge__bar {
  flex: 1;
  background: linear-gradient(180deg, var(--sws-sand-light), var(--sws-sand-dark));
  border-radius: var(--sws-radius-pill) var(--sws-radius-pill) 2px 2px;
}
.sws-gauge__caption { display: flex; justify-content: space-between; font-size: 0.66rem; color: var(--sws-khaki-500); text-transform: uppercase; letter-spacing: 0.05em; margin: -12px 0 18px; }

.sws-spec-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--sws-line); }
.sws-spec-row:last-child { border-bottom: none; }
.sws-spec-row span:first-child { color: var(--sws-khaki-500); font-size: 0.85rem; }
.sws-spec-row span:last-child { color: var(--sws-foam); font-weight: 700; font-family: var(--sws-font-display); }

@media (max-width: 900px) {
  .sws-hero__grid { grid-template-columns: 1fr; padding-bottom: 40px; }
}

/* ---------- Stat strip ---------- */
.sws-stats-strip { background: var(--sws-teal-800); border-bottom: 1px solid var(--sws-line); }
.sws-stats-strip__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 26px 0;
}
.sws-stat { text-align: center; border-left: 1px solid var(--sws-line); padding: 4px 12px; }
.sws-stat:first-child { border-left: none; }
.sws-stat__num { display: block; font-family: var(--sws-font-display); font-size: 1.85rem; font-weight: 900; color: var(--sws-sand-light); }
.sws-stat__label { font-size: 0.74rem; color: var(--sws-khaki-500); text-transform: uppercase; letter-spacing: 0.05em; }
@media (max-width: 780px) {
  .sws-stats-strip__row { grid-template-columns: repeat(2, 1fr); row-gap: 18px; }
  .sws-stat:nth-child(3) { border-left: none; }
}

/* ---------- Page header (non-home) ---------- */
.sws-page-header {
  position: relative;
  background: radial-gradient(circle at 6% 0%, rgba(217, 164, 65, 0.12), transparent 46%), var(--sws-teal-800);
  padding: 52px 0 58px;
  border-bottom: 1px solid var(--sws-line);
}
.sws-breadcrumb { color: var(--sws-sand-light); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; font-weight: 700; }
.sws-page-header h1 { font-size: clamp(1.95rem, 3.6vw, 2.8rem); max-width: 22ch; }
.sws-page-header .sws-lede { color: var(--sws-khaki-300); max-width: 62ch; font-size: 1.04rem; margin: 0; }

/* ---------- Sections ---------- */
.sws-section { padding: 72px 0; }
.sws-section--alt { background: var(--sws-teal-800); border-top: 1px solid var(--sws-line); border-bottom: 1px solid var(--sws-line); }
.sws-section__head { max-width: 660px; margin: 0 auto 42px; text-align: center; }
.sws-section__head.sws-left { margin: 0 0 34px; text-align: left; }
.sws-eyebrow {
  display: inline-block;
  color: var(--sws-sand-light);
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  font-family: var(--sws-font-body);
}
.sws-section__head h2 { font-size: clamp(1.65rem, 3.2vw, 2.2rem); }
.sws-section__head p { font-size: 1.02rem; }

/* ---------- Grid / cards ---------- */
.sws-grid { display: grid; gap: 20px; }
.sws-grid--2 { grid-template-columns: repeat(2, 1fr); }
.sws-grid--3 { grid-template-columns: repeat(3, 1fr); }
.sws-grid--4 { grid-template-columns: repeat(4, 1fr); }
.sws-grid--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1040px) { .sws-grid--5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 960px) { .sws-grid--3, .sws-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .sws-grid--2, .sws-grid--3, .sws-grid--4, .sws-grid--5 { grid-template-columns: 1fr; } }

.sws-card {
  background: var(--sws-teal-800);
  border: 1px solid var(--sws-line);
  border-radius: var(--sws-radius-lg);
  padding: 26px 22px;
  transition: transform var(--sws-ease), box-shadow var(--sws-ease), border-color var(--sws-ease);
  position: relative;
}
.sws-card:hover { transform: translateY(-4px); box-shadow: var(--sws-shadow-md); border-color: var(--sws-sand); }
.sws-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(217, 164, 65, 0.10);
  color: var(--sws-sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-family: var(--sws-font-display);
  font-size: 0.82rem;
  margin-bottom: 16px;
  border: 1px solid rgba(217, 164, 65, 0.35);
}
.sws-card h3 { font-size: 1.12rem; }
.sws-card p:last-child { margin-bottom: 0; }
.sws-card__link { display: inline-block; margin-top: 6px; color: var(--sws-sand-light); font-weight: 700; font-size: 0.88rem; border-bottom: 1px solid transparent; transition: border-color var(--sws-ease); }
.sws-card__link:hover { border-color: var(--sws-sand-light); }

/* ---------- Glossary strip (bounce/grind terms) ---------- */
.sws-glossary { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 1px solid var(--sws-line); border-radius: var(--sws-radius-lg); overflow: hidden; }
.sws-glossary__item { padding: 24px 20px; border-left: 1px solid var(--sws-line); background: var(--sws-teal-800); }
.sws-glossary__item:first-child { border-left: none; }
.sws-glossary__num { display: block; font-family: var(--sws-font-display); color: var(--sws-sand); font-size: 1.5rem; margin-bottom: 8px; }
.sws-glossary__item h3 { font-size: 1rem; margin-bottom: 6px; }
.sws-glossary__item p { font-size: 0.88rem; margin: 0; }
@media (max-width: 1040px) {
  .sws-glossary { grid-template-columns: repeat(3, 1fr); }
  .sws-glossary__item:nth-child(3n+1) { border-left: none; }
  .sws-glossary__item { border-top: 1px solid var(--sws-line); }
  .sws-glossary__item:nth-child(-n+3) { border-top: none; }
}
@media (max-width: 640px) {
  .sws-glossary { grid-template-columns: 1fr; }
  .sws-glossary__item { border-left: none; border-top: 1px solid var(--sws-line); }
  .sws-glossary__item:first-child { border-top: none; }
}

/* ---------- Bar comparison ---------- */
.sws-bars { display: flex; flex-direction: column; gap: 18px; }
.sws-bar-row__label { display: flex; justify-content: space-between; font-size: 0.88rem; color: var(--sws-khaki-300); margin-bottom: 7px; }
.sws-bar-row__label strong { color: var(--sws-foam); }
.sws-bar-track { height: 10px; background: var(--sws-teal-700); border-radius: var(--sws-radius-pill); overflow: hidden; }
.sws-bar-fill { height: 100%; background: linear-gradient(90deg, var(--sws-sand-dark), var(--sws-sand)); }
.sws-bar-fill--muted { background: var(--sws-khaki-600); opacity: 0.5; }

/* ---------- Stepline (process) ---------- */
.sws-stepline { display: flex; flex-direction: column; gap: 0; }
.sws-stepline__item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-top: 1px solid var(--sws-line);
  position: relative;
}
.sws-stepline__item:first-child { border-top: none; }
.sws-stepline__num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sws-teal-900);
  border: 2px solid var(--sws-sand);
  color: var(--sws-sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sws-font-display);
  font-weight: 900;
  font-size: 1.1rem;
}
.sws-stepline__item h3 { font-size: 1.14rem; margin-bottom: 6px; }
.sws-stepline__item p { margin: 0; }

/* ---------- Table (pricing / spec sheets) ---------- */
.sws-table-wrap { overflow-x: auto; border: 1px solid var(--sws-line); border-radius: var(--sws-radius-lg); }
.sws-table { width: 100%; border-collapse: collapse; background: var(--sws-teal-800); min-width: 560px; }
.sws-table th, .sws-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--sws-line); font-size: 0.94rem; }
.sws-table thead th { background: var(--sws-teal-950); color: var(--sws-sand-light); font-weight: 700; text-transform: uppercase; font-size: 0.74rem; letter-spacing: 0.04em; font-family: var(--sws-font-body); }
.sws-table tbody tr:hover { background: var(--sws-teal-700); }
.sws-table tbody tr:last-child td { border-bottom: none; }

/* ---------- Pricing cards ---------- */
.sws-pricing-card { display: flex; flex-direction: column; }
.sws-pricing-card .sws-price { font-family: var(--sws-font-display); font-size: 2rem; font-weight: 900; color: var(--sws-foam); margin: 8px 0 4px; }
.sws-pricing-card .sws-price span { font-size: 0.88rem; color: var(--sws-khaki-500); font-weight: 400; font-family: var(--sws-font-body); }
.sws-pricing-card ul { margin: 16px 0; display: flex; flex-direction: column; gap: 10px; }
.sws-pricing-card li { padding-left: 22px; position: relative; font-size: 0.92rem; color: var(--sws-khaki-300); }
.sws-pricing-card li::before { content: "\25CF"; font-size: 0.6em; position: absolute; left: 2px; top: 0.5em; color: var(--sws-sand); }
.sws-pricing-card--featured { border-color: var(--sws-sand); box-shadow: var(--sws-shadow-glow); position: relative; }
.sws-pricing-card--featured::after {
  content: "Most Booked";
  position: absolute;
  top: -13px;
  left: 22px;
  background: var(--sws-sand);
  color: var(--sws-teal-950);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--sws-radius-pill);
}

/* ---------- Reviews (testimonials) ---------- */
.sws-review {
  background: var(--sws-teal-800);
  border: 1px solid var(--sws-line);
  border-radius: var(--sws-radius-lg);
  padding: 26px 22px;
  position: relative;
}
.sws-review p { color: var(--sws-khaki-100); font-size: 0.98rem; }
.sws-review__author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.sws-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(217, 164, 65, 0.10);
  border: 1px solid rgba(217, 164, 65, 0.35);
  color: var(--sws-sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-family: var(--sws-font-display);
  font-size: 0.82rem;
}
.sws-review__author strong { display: block; color: var(--sws-foam); font-size: 0.94rem; }
.sws-review__author span { font-size: 0.8rem; color: var(--sws-khaki-500); }
.sws-stars { color: var(--sws-sand); letter-spacing: 3px; font-size: 0.82rem; margin-bottom: 10px; display: block; }

/* ---------- CTA band ---------- */
.sws-cta {
  background: linear-gradient(135deg, var(--sws-teal-950), var(--sws-teal-800));
  position: relative;
  text-align: center;
  padding: 62px 0;
  border-top: 1px solid var(--sws-line);
  overflow: hidden;
}
.sws-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(217, 164, 65, 0.14), transparent 55%);
  pointer-events: none;
}
.sws-cta__inner { position: relative; }
.sws-cta h2 { color: var(--sws-foam); }
.sws-cta p { color: var(--sws-khaki-300); max-width: 56ch; margin: 0 auto 24px; }
.sws-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Team ---------- */
.sws-team-card { text-align: center; }
.sws-team-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 15px;
  background: var(--sws-teal-700);
  color: var(--sws-sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 900;
  font-family: var(--sws-font-display);
  border: 2px solid var(--sws-sand);
}
.sws-team-role { color: var(--sws-sand-light); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 10px; display: block; }

/* ---------- Brand tiles ---------- */
.sws-brand-tile {
  border: 1px solid var(--sws-line);
  border-radius: var(--sws-radius-lg);
  background: var(--sws-teal-800);
  padding: 22px;
  transition: border-color var(--sws-ease), transform var(--sws-ease);
}
.sws-brand-tile:hover { border-color: var(--sws-sand); transform: translateY(-3px); }
.sws-brand-tile__mark {
  font-weight: 900;
  font-family: var(--sws-font-display);
  font-size: 1.25rem;
  color: var(--sws-sand-light);
  border: 2px solid var(--sws-line-strong);
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.sws-brand-tile strong { display: block; color: var(--sws-foam); margin-bottom: 4px; font-size: 0.96rem; }
.sws-brand-tile span { font-size: 0.82rem; color: var(--sws-khaki-500); }

/* ---------- FAQ (details/summary, no JS) ---------- */
.sws-faq-item {
  border-bottom: 1px solid var(--sws-line);
  padding: 18px 0;
}
.sws-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--sws-foam);
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.sws-faq-item summary::-webkit-details-marker { display: none; }
.sws-faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--sws-sand); font-family: var(--sws-font-display); }
.sws-faq-item[open] summary::after { content: "\2212"; }
.sws-faq-item p { margin-top: 12px; }

/* ---------- Forms ---------- */
.sws-form-card {
  background: var(--sws-teal-800);
  border: 1px solid var(--sws-line);
  border-radius: var(--sws-radius-lg);
  padding: 32px;
  box-shadow: var(--sws-shadow-sm);
}
.sws-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 640px) { .sws-form-row { grid-template-columns: 1fr; } }
.sws-form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.sws-form-field label { font-weight: 700; font-size: 0.86rem; color: var(--sws-khaki-100); }
.sws-form-field input,
.sws-form-field select,
.sws-form-field textarea {
  font-family: var(--sws-font-body);
  font-size: 0.96rem;
  padding: 12px 14px;
  border: 1px solid var(--sws-line-strong);
  border-radius: var(--sws-radius);
  background: var(--sws-teal-900);
  color: var(--sws-khaki-100);
  transition: border-color var(--sws-ease), box-shadow var(--sws-ease);
}
.sws-form-field input:focus,
.sws-form-field select:focus,
.sws-form-field textarea:focus {
  outline: none;
  border-color: var(--sws-sand);
  box-shadow: 0 0 0 3px rgba(217, 164, 65, 0.2);
}
.sws-form-note { font-size: 0.84rem; color: var(--sws-khaki-500); }

/* ---------- Locate panel (contact / booking) ---------- */
.sws-locate {
  position: relative;
  height: 210px;
  border-radius: var(--sws-radius-lg);
  background: var(--sws-teal-800);
  overflow: hidden;
  border: 1px solid var(--sws-line-strong);
}
.sws-locate--lg { height: 284px; }
.sws-locate__hatch {
  position: absolute;
  inset: 0;
  background-image: repeating-radial-gradient(circle at 20% 30%, rgba(217, 164, 65, 0.06) 0 2px, transparent 2px 20px);
}
.sws-locate__frame::before, .sws-locate__frame::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--sws-sand);
}
.sws-locate__frame::before { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.sws-locate__frame::after { bottom: 14px; right: 14px; border-left: none; border-top: none; }
.sws-locate__pin {
  position: absolute;
  top: 46%;
  left: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(217, 164, 65, 0.14);
  border: 1px solid var(--sws-sand);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sws-sand-light);
  font-family: var(--sws-font-display);
  font-weight: 900;
  font-size: 0.78rem;
}
.sws-locate__label {
  position: absolute;
  bottom: 14px;
  left: 16px;
  color: var(--sws-khaki-500);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
}

/* ---------- Blog ---------- */
.sws-post-card { display: flex; flex-direction: column; }
.sws-post-meta { font-size: 0.78rem; color: var(--sws-sand-light); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; font-weight: 700; }
.sws-post-card h3 { font-size: 1.12rem; }
.sws-article { max-width: 730px; margin: 0 auto; }
.sws-article h2 { margin-top: 1.5em; font-size: 1.5rem; }
.sws-article h3 { margin-top: 1.2em; font-size: 1.2rem; }
.sws-article ul, .sws-article ol { margin: 0 0 1.2em; padding-left: 1.4em; color: var(--sws-khaki-300); }
.sws-article li { margin-bottom: 0.5em; }
.sws-article blockquote {
  border-left: 3px solid var(--sws-sand);
  margin: 1.6em 0;
  padding: 0.4em 0 0.4em 1.3em;
  font-style: italic;
  color: var(--sws-khaki-100);
  font-size: 1.05rem;
}
.sws-article-header { text-align: center; margin-bottom: 32px; }
.sws-article-header .sws-post-meta { margin-bottom: 14px; }

/* ---------- Footer ---------- */
.sws-footer { background: var(--sws-teal-950); color: var(--sws-khaki-500); padding: 58px 0 0; }
.sws-footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--sws-line);
}
@media (max-width: 960px) { .sws-footer__top { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sws-footer__top { grid-template-columns: 1fr; } }
.sws-footer__col h3 { color: var(--sws-sand-light); font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 15px; }
.sws-footer__brand .sws-brand__name { display: block; color: var(--sws-foam); font-size: 1.26rem; margin-bottom: 12px; font-family: var(--sws-font-display); }
.sws-footer__badges { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.sws-tag {
  border: 1px solid var(--sws-line-strong);
  border-radius: var(--sws-radius-pill);
  padding: 6px 12px;
  font-size: 0.72rem;
  color: var(--sws-sand-light);
  display: inline-block;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.sws-footer address { font-size: 0.9rem; margin-bottom: 10px; }
.sws-footer a:hover { color: var(--sws-sand-light); }
.sws-hours li { display: flex; justify-content: space-between; gap: 12px; font-size: 0.84rem; padding: 4px 0; }
.sws-footer__links li { margin-bottom: 8px; font-size: 0.88rem; }
.sws-footer__bottom { padding: 18px 0; }
.sws-footer__bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.78rem; }

/* ---------- 404 ---------- */
.sws-error { text-align: center; padding: 100px 0; }
.sws-error .sws-error-code { font-family: var(--sws-font-display); font-size: 6rem; font-weight: 900; color: var(--sws-sand); line-height: 1; }
.sws-error h1 { margin-top: 6px; }

/* ---------- Scroll reveal (progressive enhancement) ----------
   Page stays fully readable with no JS at all; .js-on (set by an inline
   script at the very top of <head>) gates the hidden starting state so a
   scripting failure never leaves content invisible. ---------------------- */
.js-on .sws-reveal { opacity: 0; transform: translateY(16px); transition: opacity 560ms ease, transform 560ms ease; }
.js-on .sws-reveal.is-shown { opacity: 1; transform: none; }

/* ---------- Utility ---------- */
.sws-text-center { text-align: center; }
.sws-check-list li { padding-left: 24px; position: relative; margin-bottom: 10px; }
.sws-check-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--sws-sand); font-weight: 700; }
.sws-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
@media (max-width: 800px) { .sws-two-col { grid-template-columns: 1fr; } }
