/* =========================================================
   BlueFlute Digital, global styles
   Mobile-first. Change palette tokens in :root to rebrand.
   ========================================================= */

:root {
  --ink: #0F1B2D;
  --harbour: #16385C;
  --harbour-deep: #0B2545;
  --mint: #4ECDC4;
  --ember: #F4A261;
  --paper: #FBF9F4;
  --mist: #EEF3F7;
  --rule: #D9E0E8;
  --muted: #5B6B7E;
  --white: #FFFFFF;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-soft: 0 6px 18px rgba(15, 27, 45, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 27, 45, 0.08);

  --container: 1140px;

  --font-serif: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, p, li, a { overflow-wrap: break-word; }

a {
  color: var(--harbour);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
a:hover { color: var(--harbour-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.6em;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; }

.muted { color: var(--muted); }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--harbour);
  margin: 0 0 0.6em;
}

/* ========== Layout ========== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 64px 0; }
@media (min-width: 768px) { section { padding: 88px 0; } }

.section-mist { background: var(--mist); }
.section-deep { background: var(--harbour-deep); color: var(--white); }
.section-deep h1, .section-deep h2, .section-deep h3 { color: var(--white); }
.section-deep .eyebrow { color: var(--mint); }
.section-deep p { color: rgba(255, 255, 255, 0.85); }

.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ========== Skip link ========== */
.skip-link {
  position: absolute;
  left: 20px;
  top: 0;
  transform: translateY(-120%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { transform: translateY(0); }

/* ========== Header / Nav ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 249, 244, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
}
.brand svg { width: 28px; height: 28px; }
.brand-mark-dot { color: var(--ember); }

.nav-links {
  list-style: none;
  display: none;
  gap: 28px;
  padding: 0;
  margin: 0;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--harbour); }
.nav-links a.active { color: var(--harbour); }

.site-header .nav-cta { display: none; }

.nav-toggle {
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
  display: inline-flex;
}
.nav-toggle:focus-visible { outline: 2px solid var(--harbour); outline-offset: 2px; }
.nav-toggle svg { width: 22px; height: 22px; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .site-header .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* Mobile drawer */
.mobile-drawer {
  display: none;
  border-top: 1px solid var(--rule);
  background: var(--paper);
  padding: 12px 0 18px;
}
.mobile-drawer.open { display: block; }
.mobile-drawer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-drawer li { border-bottom: 1px solid var(--rule); }
.mobile-drawer li:last-child { border-bottom: 0; }
.mobile-drawer a {
  display: block;
  padding: 14px 4px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}
.mobile-drawer .btn { margin-top: 14px; display: inline-flex; }

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.06s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  line-height: 1;
  text-align: center;
  white-space: normal;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--harbour-deep);
  color: var(--white);
}
.btn-primary:hover { background: var(--ink); color: var(--white); }
.btn-accent {
  background: var(--ember);
  color: var(--harbour-deep);
}
.btn-accent:hover { background: #e89048; color: var(--harbour-deep); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn-ghost:hover { border-color: var(--harbour); color: var(--harbour); }
.btn-lg { padding: 14px 26px; font-size: 1rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ========== Hero ========== */
.hero {
  position: relative;
  padding: 64px 0 48px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 320px at 85% -10%, rgba(78, 205, 196, 0.18), transparent 60%),
    radial-gradient(700px 300px at -10% 110%, rgba(244, 162, 97, 0.14), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; }
.hero-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero { padding: 96px 0 72px; }
  .hero-grid { grid-template-columns: 1.15fr 1fr; gap: 56px; }
}
.hero h1 { margin-bottom: 10px; }
/* Short musical brand tagline under the hero headline */
.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--harbour);
  margin: 0 0 18px;
}
.hero-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 28px;
}
.hero-actions { margin-bottom: 28px; }
@media (max-width: 420px) {
  .hero-actions .btn { width: 100%; }
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta svg { width: 16px; height: 16px; color: var(--harbour); }

.hero-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.hero-card h3 { margin-top: 0; }
.hero-card ul { list-style: none; padding: 0; margin: 0 0 18px; }
.hero-card li { padding: 8px 0; border-bottom: 1px dashed var(--rule); display: flex; gap: 10px; }
.hero-card li:last-child { border-bottom: 0; }
.hero-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
.hero-client-link {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 16px;
  align-items: center;
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(22, 56, 92, 0.18);
  background: var(--mist);
  color: var(--ink);
  text-decoration: none;
}
.hero-client-link:hover {
  color: var(--ink);
  border-color: var(--harbour);
  background: #e6eef5;
}
.hero-client-link span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-client-link strong {
  font-family: var(--font-serif);
  font-size: 1.4rem;
}
.hero-client-link em {
  grid-row: 1 / span 2;
  grid-column: 2;
  font-style: normal;
  font-weight: 700;
  color: var(--harbour);
}
@media (max-width: 420px) {
  .hero-client-link { grid-template-columns: 1fr; }
  .hero-client-link em { grid-row: auto; grid-column: auto; }
}
.hero-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
@media (max-width: 520px) {
  .hero-price-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-price-row .btn { width: 100%; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(78, 205, 196, 0.12);
  color: var(--harbour-deep);
  border: 1px solid rgba(78, 205, 196, 0.3);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mint);
}

/* ========== Trust strip ========== */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  align-items: center;
  justify-content: center;
  padding-top: 22px;
  padding-bottom: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}
.trust-strip span { display: inline-flex; align-items: center; gap: 8px; }
.trust-strip svg { width: 18px; height: 18px; color: var(--harbour); }
.trust-client-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--harbour-deep);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}
.trust-client-link:hover { color: var(--white); background: var(--ink); }

/* ========== Service cards ========== */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  border-color: #c9d4df;
}
.card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--harbour), var(--harbour-deep));
  color: var(--mint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.card .icon svg { width: 22px; height: 22px; }
.card h3 { margin: 4px 0 4px; }
.card .card-link {
  margin-top: auto;
  font-weight: 600;
  color: var(--harbour);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card .card-link:hover { color: var(--harbour-deep); }
.card .card-link::after { content: "→"; }

/* ========== Process ========== */
.process {
  display: grid;
  gap: 18px;
}
@media (min-width: 720px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process { grid-template-columns: repeat(4, 1fr); } }
.step {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 22px;
}
.step .n {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ember);
  margin-bottom: 6px;
  font-weight: 600;
}

/* ========== Benefits ========== */
.benefits { display: grid; gap: 20px; }
@media (min-width: 800px) { .benefits { grid-template-columns: repeat(3, 1fr); } }
.benefit h3 { margin-top: 14px; }
.benefit .icon-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--mist);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--harbour);
}

/* ========== Industries chips ========== */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--ink);
}

/* ========== Pricing ========== */
.pricing { display: grid; gap: 20px; }
@media (min-width: 720px) { .pricing { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing { grid-template-columns: repeat(4, 1fr); } }
.price-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.price-card.featured {
  border-color: var(--harbour);
  box-shadow: var(--shadow-md);
}
.price-card.featured::after {
  content: "Most chosen";
  position: absolute;
  top: -12px; right: 16px;
  background: var(--ember);
  color: var(--harbour-deep);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price-card .price {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--ink);
  font-weight: 600;
}
.price-card .gst { font-size: 0.85rem; color: var(--muted); }
.price-card ul { list-style: none; padding: 0; margin: 6px 0 16px; }
.price-card li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 0.92rem;
  color: var(--ink);
}
.price-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 10px; height: 10px;
  border-bottom: 2px solid var(--mint);
  border-left: 2px solid var(--mint);
  transform: rotate(-45deg);
}
.price-card .market {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
}
.price-card .btn { margin-top: auto; }

/* ========== Offer banner ========== */
.offer-banner {
  background: linear-gradient(135deg, var(--harbour-deep), var(--harbour));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  gap: 16px;
  align-items: center;
}
@media (min-width: 800px) {
  .offer-banner { grid-template-columns: 1fr auto; padding: 36px 40px; }
}
.offer-banner h3 { color: var(--white); margin: 0 0 6px; }
.offer-banner p { color: rgba(255,255,255,0.88); margin: 0; }

/* ========== Offers grid ========== */
.offers-grid { display: grid; gap: 16px; }
@media (min-width: 720px) { .offers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .offers-grid { grid-template-columns: repeat(3, 1fr); } }
.offer-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 22px;
  border-top: 4px solid var(--ember);
}
.offer-card h3 { margin-top: 0; }

/* ========== Client spotlight ========== */
.client-spotlight {
  display: grid;
  gap: 20px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.client-spotlight:hover {
  color: var(--ink);
  transform: translateY(-2px);
  border-color: var(--harbour);
  box-shadow: var(--shadow-md);
}
@media (min-width: 760px) {
  .client-spotlight { grid-template-columns: 180px 1fr auto; padding: 30px; }
}
.client-logo {
  min-height: 120px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--harbour-deep), var(--harbour));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
}
.client-spotlight h3 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.client-spotlight p { margin-bottom: 0; }
.client-spotlight .eyebrow { color: var(--harbour); }
.client-cta {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border-radius: var(--radius);
  background: var(--ember);
  color: var(--harbour-deep);
  font-weight: 700;
  white-space: nowrap;
}

/* ========== FAQ accordion ========== */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-item:first-child { border-top: 1px solid var(--rule); }
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 18px 8px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
}
.faq-q:focus-visible { outline: 2px solid var(--harbour); outline-offset: 2px; border-radius: 6px; }
.faq-q .chev {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--rule);
  border-radius: 50%;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-item[aria-expanded="true"] .chev { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 8px 20px;
  color: var(--muted);
}
.faq-item[aria-expanded="true"] .faq-a { display: block; }

/* ========== Contact form ========== */
.form {
  display: grid;
  gap: 16px;
  max-width: 620px;
}
.form .row { display: grid; gap: 16px; }
@media (min-width: 600px) { .form .row.two { grid-template-columns: 1fr 1fr; } }
.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  background: var(--white);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--ink);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--harbour);
  outline-offset: 1px;
  border-color: var(--harbour);
}
.field .hint { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }
.form .consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; color: var(--muted); }
.form .consent input { width: auto; margin-top: 4px; }

.form-success, .form-error {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  display: none;
}
.form-success { background: rgba(78, 205, 196, 0.15); color: #0a5d56; border: 1px solid rgba(78, 205, 196, 0.45); }
.form-error { background: rgba(244, 162, 97, 0.18); color: #8a3a0a; border: 1px solid rgba(244, 162, 97, 0.5); }

/* ========== Two-column content (service detail) ========== */
.two-col {
  display: grid;
  gap: 40px;
}
@media (min-width: 900px) { .two-col { grid-template-columns: 1.4fr 1fr; gap: 56px; } }
.side-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 90px;
}
@media (max-width: 899px) {
  .side-card { position: static; }
}
.side-card h4 { margin-top: 0; }
.side-card ul { list-style: none; padding: 0; margin: 0 0 16px; }
.side-card li { padding: 6px 0 6px 22px; position: relative; font-size: 0.92rem; }
.side-card li::before {
  content: "";
  position: absolute; left: 0; top: 13px;
  width: 8px; height: 8px;
  border-bottom: 2px solid var(--mint);
  border-left: 2px solid var(--mint);
  transform: rotate(-45deg);
}
.side-card .contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 14px;
}
.side-card .contact-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 0;
  position: static;
  font-size: 0.95rem;
}
.side-card .contact-list li::before { content: none; }
.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--mist);
  color: var(--harbour);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; }

.tick-list { list-style: none; padding: 0; margin: 0 0 1em; }
.tick-list li { padding: 6px 0 6px 28px; position: relative; }
.tick-list li::before {
  content: "";
  position: absolute; left: 0; top: 12px;
  width: 12px; height: 12px;
  border-bottom: 2px solid var(--mint);
  border-left: 2px solid var(--mint);
  transform: rotate(-45deg);
}

/* ========== Blog ========== */
.post-grid { display: grid; gap: 20px; }
@media (min-width: 720px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .post-grid { grid-template-columns: repeat(3, 1fr); } }
.post-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.post-card .cover {
  height: 180px;
  background: linear-gradient(135deg, var(--mist), #cfe0ec);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--harbour);
}
.post-card .body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card .meta { font-size: 0.82rem; color: var(--muted); }
.post-card h3 { margin: 0; font-size: 1.15rem; }
.post-card a { color: var(--ink); text-decoration: none; }
.post-card a:hover { color: var(--harbour); }

.article {
  max-width: 760px;
  margin: 0 auto;
}
.article h2 { margin-top: 1.8em; }
.article h3 { margin-top: 1.5em; }
.article p, .article li { font-size: 1.05rem; color: #243345; }
.article ul, .article ol { padding-left: 1.2em; }
.article blockquote {
  margin: 1.4em 0;
  padding: 12px 18px;
  border-left: 4px solid var(--mint);
  background: var(--mist);
  font-style: italic;
  color: var(--ink);
}
.article .article-meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ========== CTA band ========== */
.cta-band {
  background: linear-gradient(135deg, var(--harbour-deep), #102d4a);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 200px at 90% 0%, rgba(78,205,196,0.25), transparent 60%);
  pointer-events: none;
}
.cta-band h2 { color: var(--white); margin-top: 0; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 580px; margin: 0 auto 22px; }
@media (max-width: 480px) {
  .cta-band .btn-row .btn { width: 100%; }
}

/* ========== Footer ========== */
.site-footer {
  background: var(--harbour-deep);
  color: rgba(255,255,255,0.78);
  padding: 56px 0 24px;
  margin-top: 40px;
}
.site-footer a { color: rgba(255,255,255,0.78); text-decoration: none; }
.site-footer a:hover { color: var(--mint); }
.footer-grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-grid h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { padding: 4px 0; }
.footer-brand {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-brand svg { width: 26px; height: 26px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 36px;
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ========== Page header (for inner pages) ========== */
.page-header {
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(700px 260px at 90% -20%, rgba(78,205,196,0.15), transparent 60%);
  pointer-events: none;
}
.page-header .container { position: relative; }
.page-header p.lede {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 640px;
}

/* ========== Flute curve divider ========== */
.curve {
  display: block;
  width: 100%;
  height: 40px;
  color: var(--mist);
}

/* ========== Misc ========== */
.divider-line {
  height: 1px;
  background: var(--rule);
  margin: 32px 0;
  border: 0;
}

.notice {
  background: var(--mist);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 20px;
  font-size: 0.95rem;
  color: var(--ink);
}
.notice strong { color: var(--harbour-deep); }

.kv {
  display: grid;
  gap: 6px 16px;
  grid-template-columns: max-content 1fr;
  font-size: 0.95rem;
  align-items: baseline;
}
.kv dt { color: var(--muted); }
.kv dd { margin: 0; }

/* ========== Reduced motion ========== */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ========== Focus rings ========== */
:focus-visible { outline: 2px solid var(--harbour); outline-offset: 2px; }

/* Container utility tweak for narrow content */
.narrow { max-width: 760px; }

/* ========== Floating WhatsApp button ========== */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 12px 20px 12px 14px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-fab svg { width: 24px; height: 24px; flex-shrink: 0; }
.wa-fab:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.22); color: #fff; }
@media (max-width: 480px) {
  .wa-fab { padding: 12px; border-radius: 50%; }
  .wa-fab-label { display: none; }
}
