/* ===========================
   CUSTOM PROPERTIES
   =========================== */
:root {
  --navy:        #0B1F3A;
  --navy-mid:    #163358;
  --navy-light:  #1E4A7A;
  --brass:       #C49A3C;
  --brass-light: #E5C875;
  --brass-dim:   #A07C28;
  --white:       #FFFFFF;
  --off-white:   #F7F9FC;
  --ink:         #0B1F3A;
  --ink-mid:     #4B6780;
  --ink-light:   #8AA3B8;
  --border:      #D9E2EC;
  --max-width:   1200px;
  --radius:      2px;
  --shadow:      0 1px 12px rgba(11,31,58,.08);
  --shadow-lg:   0 8px 40px rgba(11,31,58,.16);
  --transition:  all 0.22s ease;
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.12;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 0.95rem; font-weight: 600; font-family: 'Inter', sans-serif; letter-spacing: 0; }
p  { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.6rem;
}
.eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--brass);
  margin-top: 0.65rem;
  margin-bottom: 0.65rem;
}
.eyebrow--light { color: rgba(255,255,255,0.45); }
.eyebrow--light::after { background: var(--brass-light); }

.lead {
  font-size: 1.08rem;
  color: var(--ink-mid);
  line-height: 1.85;
}

/* ===========================
   LAYOUT
   =========================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  padding: 0.85rem 2.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: var(--transition);
  text-align: center;
  border-radius: var(--radius);
}
.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--primary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
}
.btn--brass {
  background: var(--brass);
  color: var(--white);
  border-color: var(--brass);
}
.btn--brass:hover {
  background: var(--brass-dim);
  border-color: var(--brass-dim);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn--outline-light:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  border-bottom: 1px solid rgba(196,154,60,0.35);
  padding-bottom: 1px;
  transition: gap 0.18s ease, border-color 0.18s;
}
.text-link:hover { gap: 0.8rem; border-color: var(--brass); }
.text-link--light {
  color: var(--brass-light);
  border-color: rgba(229,200,117,0.3);
}
.text-link--light:hover { border-color: var(--brass-light); }

/* ===========================
   PRELOADER
   =========================== */
body.loading { overflow: hidden; }
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .55s ease, visibility .55s ease;
}
#preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__ring {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-top-color: var(--brass);
  border-radius: 50%;
  animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===========================
   SITE HEADER
   =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: border-color 0.28s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--border); }
.site-header .container {
  display: flex; align-items: center;
  height: 72px; gap: 2rem;
}

/* photo-hero-page nav stays solid — no transparent overlay */
.photo-hero-page .site-header { position: sticky; }

/* ===========================
   LOGO
   =========================== */
.site-logo {
  display: flex; align-items: center;
  gap: 0.85rem; flex-shrink: 0; cursor: pointer;
}
.site-logo img { width: 300px; height: auto; display: block; }
.logo-mark {
  width: 40px; height: 40px;
  border: 1.5px solid var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem; font-style: italic; font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--navy); flex-shrink: 0;
  transition: border-color 0.28s, color 0.28s;
}
.logo-text {
  display: flex; flex-direction: column;
  line-height: 1; transition: color 0.28s;
}
.logo-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 500;
  color: var(--navy); letter-spacing: -0.01em;
  transition: color 0.28s;
}
.logo-text small {
  font-family: 'Inter', sans-serif;
  font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-light); margin-top: 3px;
  transition: color 0.28s;
}

/* ===========================
   NAV
   =========================== */
.site-nav { display: flex; align-items: center; margin-left: auto; }
.nav-list { display: flex; align-items: center; }
.nav-list > li > a {
  display: flex; align-items: center; gap: 0.25rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.72rem; font-weight: 700;
  color: var(--ink-mid); letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.18s; white-space: nowrap;
}
.nav-list > li > a:hover { color: var(--brass); }
.nav-caret { font-size: 0.65em; transition: transform 0.2s; }
.has-dropdown:hover .nav-caret { transform: rotate(180deg); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 6px); left: -1rem;
  min-width: 240px; background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--brass);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 0;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 200;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li a {
  display: block; padding: 0.6rem 1.25rem;
  font-size: 0.84rem; color: var(--ink-mid);
  transition: color 0.15s, background 0.15s;
}
.dropdown li a:hover { color: var(--navy); background: var(--off-white); }

.mobile-nav-cta { display: none; padding: 1rem 1.5rem; }
.nav-toggle {
  display: none; flex-direction: column;
  justify-content: center; gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  margin-left: auto; padding: 0 8px;
}
.nav-toggle span {
  display: block; height: 1.5px; background: var(--navy);
  border-radius: 2px; transition: transform 0.22s, opacity 0.22s;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===========================
   SCROLL HERO
   =========================== */
.scroll-hero {
  position: relative;
  height: 280vh;
  background: var(--navy);
}
.scroll-hero__sticky {
  position: sticky;
  top: 72px;
  height: calc(var(--real-vh, 100vh) - 72px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
}

/* The video frame — sized as 100vw × portrait height, scaled by JS */
.scroll-hero__frame {
  position: absolute;
  left: 50%;
  top: 50%; /* overridden by JS after setup() runs */
  transform: translate(-50%, -50%);
  /* JS overrides width/height; pre-JS default approximates the starting circle */
  width: 40vmin;
  height: 40vmin;
  border-radius: 50%;
  overflow: hidden;
  will-change: width, height, border-radius;
  z-index: 1;
  background: var(--navy-mid);
}
/* Permanent subtle dark filter — stacks under vid-overlay (no z-index so child wins) */
.scroll-hero__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.22);

  pointer-events: none;
}
#hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%; /* JS lerps this to 25% at full screen */
  display: block;
}
.scroll-hero__vid-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 58, 0.42);
  will-change: opacity;
}

/* Text block — sits in the clear navy space ABOVE the small video frame.
   As the video expands upward it covers this zone; JS fades it out simultaneously. */
.scroll-hero__text {
  position: absolute;
  /* Clear the fixed nav (72px) then add breathing room */
  top: 7.5rem;
  left: 0; right: 0;
  z-index: 2;
  text-align: left;
  padding: 0 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  will-change: opacity, transform;
  pointer-events: none;
}
.scroll-hero__text::before {
  content: '';
  position: absolute;
  top: -2rem; bottom: -2rem;
  left: -2.5rem;
  width: calc(700px + 5.5rem); /* headline max-width + padding + bleed */
  filter: blur(18px);
  border-radius: 4px;
  z-index: -1;
  pointer-events: none;
}
.scroll-hero__eyebrow {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 1.25rem;
}
/* No brass rule on this eyebrow — clean on dark */
.scroll-hero__eyebrow::after { display: none; }
.scroll-hero__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  max-width: 700px;
}
.scroll-hero__headline em {
  font-style: italic;
  color: var(--brass-light);
}
.scroll-hero__sub em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--brass-light);
}
.scroll-hero__sub {
  font-size: clamp(0.82rem, 1.2vw, 1rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 520px;
}

/* Scroll cue — anchored at the bottom of the sticky container, independent of text block */
.scroll-hero__cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  will-change: opacity;
}
.scroll-hero__cue span {
  font-size: 0.56rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.scroll-hero__cue-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.65), transparent);
  animation: cue-pulse 2.4s ease-in-out infinite;
}
@keyframes cue-pulse {
  0%, 100% { opacity: 0.45; transform: scaleY(0.7) translateY(-4px); }
  55%       { opacity: 1;    transform: scaleY(1.0) translateY(0); }
}

/* CTA block — fades in when video is full-screen */
.scroll-hero__cta {
  position: absolute;
  bottom: 3.5rem;
  left: 0; right: 0;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}
.scroll-hero__cta .container {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.scroll-hero__cta-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}

@media (max-width: 640px) {
  .scroll-hero { height: 260vh; }
  .scroll-hero__text { bottom: 3.5rem; }
  .scroll-hero__headline { font-size: clamp(1.5rem, 7vw, 2.2rem); }
  .scroll-hero__cta .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

/* ===========================
   PAGE HERO (inner pages — navy)
   =========================== */
.page-hero {
  position: relative;
  background: var(--navy);
  padding: 8rem 0;
  overflow: hidden;
}
.page-hero__image {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 48%;
  background-size: cover;
  background-position: right center;
  clip-path: polygon(5rem 0, 100% 0, 100% 100%, 0 100%);
}
.page-hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 58, 0.62);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { color: rgba(255,255,255,0.35); }
.page-hero .eyebrow::after { background: var(--brass); }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; max-width: 520px; font-size: clamp(1.9rem, 3.5vw, 2.75rem); }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.58); max-width: 480px; }
@media (max-width: 900px) {
  .page-hero__image { display: none; }
  .page-hero h1 { max-width: 720px; }
  .page-hero p  { max-width: 620px; }
}

/* ---- Default page template ---- */
.page-title {
  background: var(--navy);
  padding: 5rem 0 4rem;
}
.page-title h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
}
.content-body {
  padding: 4rem 0 5.5rem;
}

/* Prose — CMS rich text within default template */
.prose {
  max-width: 820px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-mid);
}
.prose > *:first-child { margin-top: 0; }
.prose h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--navy);
  font-weight: 400;
  margin: 3rem 0 0.6rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.prose h2:first-child { border-top: none; padding-top: 0; }
.prose h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--navy);
  font-weight: 400;
  margin: 2rem 0 0.5rem;
}
.prose h4 {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 1.75rem 0 0.5rem;
}
.prose p { margin-bottom: 1.1em; }
.prose p:last-child { margin-bottom: 0; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1.25em; }
.prose li { margin-bottom: 0.4em; }
.prose a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(11,31,58,0.25); transition: color 0.18s, text-decoration-color 0.18s; }
.prose a:hover { color: var(--brass-dim); text-decoration-color: var(--brass-dim); }
.prose strong { color: var(--navy); font-weight: 700; }
.prose em { font-style: italic; }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 1.5em; font-size: 0.9rem; }
.prose th { background: var(--navy); color: var(--white); padding: 0.6rem 1rem; text-align: left; font-size: 0.75rem; letter-spacing: 0.07em; text-transform: uppercase; font-weight: 600; }
.prose td { padding: 0.65rem 1rem; border-bottom: 1px solid var(--border); vertical-align: top; }
.prose tr:last-child td { border-bottom: none; }
.prose tr:nth-child(even) td { background: var(--surface); }

/* Service stat strip */
.service-stats {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}
.service-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service-stat {
  padding: 1.25rem 2rem 1.25rem 0;
  border-right: 1px solid var(--border);
}
.service-stat:last-child { border-right: none; }
.service-stat__figure {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.service-stat__label {
  font-size: 0.82rem;
  color: var(--ink-mid);
  line-height: 1.55;
}
@media (max-width: 640px) {
  .service-stats__grid { grid-template-columns: 1fr; }
  .service-stat { border-right: none; border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
  .service-stat:last-child { border-bottom: none; }
}

/* ===========================
   DINGO TAX DIARY
   =========================== */
/* Month headers */
#dingocontent_tax h1 {
  font-size: clamp(1.15rem, 2vw, 1.45rem) !important;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 2px solid var(--brass) !important;
  padding: 2.5rem 0 0.6rem !important;
  margin: 0 0 0.5rem !important;
  letter-spacing: -0.01em;
}
#dingocontent_tax h1:first-child { padding-top: 0 !important; }
/* Date entries */
#dingocontent_tax h2 {
  font-size: clamp(1rem, 1.8vw, 1.25rem) !important;
  font-weight: 400;
  color: var(--navy);
  margin: 1.75rem 0 0.6rem !important;
}
#dingocontent_tax p {
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 0.85em;
}
#dingocontent_tax blockquote {
  border-left: 3px solid var(--border);
  margin: 0.75rem 0 0.75rem 0;
  padding-left: 1.25rem;
}
#dingocontent_tax blockquote p { font-size: 0.9rem; color: var(--ink-light, var(--ink-mid)); }
#dingocontent_tax hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}
#dingocontent_tax li { margin-bottom: 0.5em !important; }
/* Some month headers are hardcoded as <p><strong style="font-family:arial..."> — override inline styles */
#dingocontent_tax p:has(> strong[style]) {
  border-bottom: 2px solid var(--brass);
  padding: 2.5rem 0 0.6rem;
  margin-bottom: 0.5rem !important;
}
#dingocontent_tax p:has(> strong[style]):first-child { padding-top: 0; }
#dingocontent_tax p > strong[style] {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: clamp(1.15rem, 2vw, 1.45rem) !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
}

/* ===========================
   DINGO CALCULATORS
   Neutralise injected Foundation classes and apply site styling
   =========================== */
#dingo_calcs .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.75rem;
}
#dingo_calcs .columns {
  width: 100%;
  padding: 0 0.75rem;
  margin-bottom: 2.5rem;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  #dingo_calcs .medium-6 { width: 50%; }
}
#dingo_calcs h3.headline {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  padding-bottom: 0.6rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid var(--brass);
}
#dingo_calcs ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.35rem;
}
#dingo_calcs ul li { font-size: 0.68rem; color: var(--ink-mid); opacity: 0.7; }
#dingo_calcs ul li a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  background: var(--surface);
  color: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.82rem !important;
  opacity: 1;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  line-height: 1;
}
#dingo_calcs ul li a::after { content: ' →'; font-size: 0.75em; opacity: 0.6; }
#dingo_calcs ul li a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
#dingo_calcs .article > p {
  font-size: 0.95rem;
  color: var(--ink-mid);
  margin-bottom: 2.5rem;
  max-width: 760px;
}

/* ===========================
   INTRO STRIP
   =========================== */
.intro-strip {
  padding: 5.5rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.intro-strip__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7rem; align-items: center;
}
.intro-strip__heading h2 { letter-spacing: -0.02em; }
.intro-strip__body p { color: var(--ink-mid); margin-bottom: 1.25em; }
.intro-strip__body p:last-child { margin-bottom: 0; }

/* ===========================
   SERVICES LIST
   =========================== */
.services-list { padding: 5.5rem 0; background: var(--off-white); }
.services-page .services-list__header,
.services-page .services-list__footer { display: none; }
.services-list__header {
  display: flex; align-items: baseline;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--navy);
}
.services-list__header h2 { letter-spacing: -0.02em; }
.services-list__footer { margin-top: 2rem; }
.service-row {
  display: grid;
  grid-template-columns: 3.5rem 1fr 1fr 1.5rem;
  align-items: center; gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s, padding 0.2s, margin 0.2s;
  cursor: pointer; color: inherit;
}
.service-row:hover {
  background: var(--white);
  padding-left: 1.25rem; padding-right: 1.25rem;
  margin: 0 -1.25rem;
}
.service-row__num {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-style: italic;
  font-weight: 400; color: var(--brass);
}
.service-row__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 400; color: var(--navy);
}
.service-row__desc { font-size: 0.88rem; color: var(--ink-light); line-height: 1.5; }
.service-row__arrow { color: var(--brass); font-size: 0.9rem; justify-self: end; transition: transform 0.2s; }
.service-row:hover .service-row__arrow { transform: translateX(4px); }

/* ===========================
   PHOTO SPLIT
   =========================== */
.photo-split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.photo-split__image {
  /* TODO: Replace split-bg.jpg with your Getty Images download.      */
  /* Search: "marina sunset Queensland" or "yacht teak deck detail"   */
  /* or "Sunshine Coast waterfront aerial" or "sailing crew close-up" */
  /* Recommended: portrait-friendly or square ratio, warm tones.      */
  background-image: url('../images/principal.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--navy-mid);
}
.photo-split__content {
  background: var(--navy);
  display: flex; align-items: center;
  padding: 5.5rem 5rem;
}
.photo-split__inner { max-width: 420px; }
.photo-split blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400; font-style: italic;
  line-height: 1.45; color: var(--white);
  margin-bottom: 2rem;
}
.photo-split blockquote::before {
  content: '\201C';
  font-size: 3.5rem; line-height: 0;
  vertical-align: -0.85rem;
  color: var(--brass); font-style: normal;
  margin-right: 0.1rem;
}
.photo-split p { font-size: 0.92rem; color: rgba(255,255,255,0.5); margin-bottom: 1.25em; }
.photo-split p:last-child { margin-bottom: 0; }
.credential-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0; }
.credential-badge {
  display: inline-block; padding: 0.28rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.62rem; font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 100px;
}

/* ===========================
   PHOTO BAND (atmospheric strip)
   =========================== */
.photo-band {
  height: 48vh; min-height: 300px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: var(--navy);
  position: relative;
}
/* TODO: Replace sc-bg.jpg / beach-bg.jpg with your Getty Images downloads.  */
/* Recommended: very wide, dramatic sky or coastal, works well with parallax. */
.photo-band--sc      { background-image: url('../images/sc-bg.jpg'); }
.photo-band--beach   { background-image: url('../images/beach-bg.jpg'); }
.photo-band--compass { background-image: url('../images/compass-bg.jpg'); }
.photo-band::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(11,31,58,0.22);
}

/* ===========================
   NEWS STRIP
   =========================== */
.news-strip {
  padding: 5.5rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.news-strip__header {
  display: flex; align-items: baseline;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--navy);
}
.news-strip__header h2 { font-size: 1.5rem; }
.news-row {
  display: grid; grid-template-columns: 7rem 1fr 1.5rem;
  align-items: start; gap: 2.5rem;
  padding: 1.5rem 0; border-bottom: 1px solid var(--border);
  transition: background 0.2s, padding 0.2s, margin 0.2s;
  cursor: pointer; color: inherit;
}
.news-row:hover {
  background: var(--off-white);
  padding-left: 1rem; padding-right: 1rem;
  margin: 0 -1rem;
}
.news-row__thumb {
  display: block;
  background: var(--border) center/cover no-repeat;
  border-radius: var(--radius);
  height: 5rem;
}
.news-row__body { display: flex; flex-direction: column; gap: 0.4rem; padding-top: 0.1rem; }
.news-row__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 400;
  color: var(--navy); line-height: 1.3;
}
.news-row__desc { font-size: 0.83rem; color: var(--ink-mid); line-height: 1.55; }
.news-row__arrow { color: var(--brass); font-size: 0.9rem; transition: transform 0.2s; justify-self: end; align-self: center; }
.news-row:hover .news-row__arrow { transform: translateX(4px); }
.news-strip__footer { margin-top: 2.5rem; }

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  position: relative;
  padding: 6rem 0 5rem;
  background: var(--navy);
  overflow: hidden;
}
.cta-section__image {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 48%;
  background-size: cover;
  background-position: right center;
  clip-path: polygon(5rem 0, 100% 0, 100% 100%, 0 100%);
}
.cta-section__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 58, 0.55);
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section__inner { max-width: 540px; }
.cta-section .eyebrow { color: rgba(255,255,255,0.3); }
.cta-section .eyebrow::after { background: var(--brass); }
.cta-section h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400; line-height: 1.15;
  letter-spacing: -0.02em; color: var(--white);
  margin-bottom: 2.5rem;
}
.cta-section h2 em { font-style: italic; color: var(--brass-light); }
.cta-section__actions { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.cta-section__phone { font-size: 0.88rem; color: rgba(255,255,255,0.35); }
.cta-section__phone a {
  color: rgba(255,255,255,0.65); font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.18); padding-bottom: 1px;
  transition: color 0.18s, border-color 0.18s;
}
.cta-section__phone a:hover { color: var(--white); border-color: rgba(255,255,255,0.55); }

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: #080F1D;
  color: rgba(255,255,255,0.55);
  padding: 5rem 0 3rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.5rem; }
.footer-logo img { width: 200px; height: auto; display: block; }
.footer-logo .logo-mark { border-color: rgba(255,255,255,0.35); color: rgba(255,255,255,0.65); }
.footer-logo .logo-text strong { color: rgba(255,255,255,0.85); }
.footer-logo .logo-text small { color: rgba(255,255,255,0.45); }
.footer-contact address {
  font-style: normal; font-size: 0.88rem;
  line-height: 1.75; color: rgba(255,255,255,0.55);
  margin-bottom: 0.85rem;
}
.contact-detail { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 1.5rem; }
.contact-detail a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.18s; }
.contact-detail a:hover { color: rgba(255,255,255,0.95); }
.footer-nav h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brass); opacity: 0.8;
  margin-bottom: 1.25rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav ul a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color 0.18s; }
.footer-nav ul a:hover { color: rgba(255,255,255,0.95); }
.footer-legal {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 2rem; flex-wrap: wrap;
}
.footer-legal__text { font-size: 0.75rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 520px; }
.footer-legal__right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; flex-shrink: 0; }
.footer-legal__liability { font-size: 0.75rem; color: rgba(255,255,255,0.4); text-align: right; }
.footer-legal__links { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: flex-end; }
.footer-legal__links a { font-size: 0.75rem; color: rgba(255,255,255,0.4); transition: color 0.18s; }
.footer-legal__links a:hover { color: rgba(255,255,255,0.75); }
.footer-copy {
  width: 100%; padding-top: 1.5rem; margin-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; flex-wrap: wrap;
}
.footer-copy p, .footer-copy a { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.footer-copy a:hover { color: rgba(255,255,255,0.65); }

/* ===========================
   SERVICE DETAIL PAGE
   =========================== */
.service-detail { padding: 5rem 0; background: var(--off-white); }
.service-detail__inner { display: grid; grid-template-columns: 1fr 260px; gap: 5rem; align-items: start; }
.service-detail__header { margin-bottom: 2.5rem; }
.service-detail__header .eyebrow { margin-bottom: 0; }
.service-detail__header h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1.25rem; margin-top: 0.25rem; }
.service-detail__header p { color: var(--ink-mid); font-size: 1.05rem; }
.service-detail__body h2 { font-size: 1.7rem; margin: 1.5rem 0; }
.service-detail__body h3 { font-size: 1.15rem; font-family: 'Playfair Display', serif; font-style: italic; margin: 2.25rem 0 1.1rem; }
.service-detail__body p { color: var(--ink-mid); }
.service-detail__body ul { list-style: none; padding: 0; margin-bottom: 1em; }
.service-detail__body ul li { color: var(--ink-mid); padding: 0.3rem 0 0.3rem 1.25rem; position: relative; font-size: 0.95rem; }
.service-detail__body ul li::before { content: '—'; position: absolute; left: 0; color: var(--brass); }
.service-detail__cta { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }

.service-sidebar {
  position: sticky; top: 90px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--navy);
  padding: 2rem;
}
.service-sidebar h4 {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 1.25rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.service-sidebar ul { display: flex; flex-direction: column; list-style: none; }
.service-sidebar ul a {
  display: block; padding: 0.6rem 0;
  font-size: 0.88rem; color: var(--ink-mid);
  border-bottom: 1px solid var(--border);
  transition: color 0.15s, padding-left 0.15s;
}
.service-sidebar ul a:hover { color: var(--navy); padding-left: 0.75rem; }
.service-sidebar ul a.active {
  color: var(--brass); font-weight: 600;
  padding-left: 1rem;
  position: relative;
}
.service-sidebar ul a.active::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 5px; height: 5px;
  border-right: 1.5px solid var(--brass);
  border-top: 1.5px solid var(--brass);
}
.service-sidebar ul li:last-child a { border-bottom: none; }
.sidebar-cta { padding-top: 1.25rem; border-top: 1px solid var(--border); }
.sidebar-cta p { font-size: 0.85rem; color: var(--ink-mid); margin-bottom: 1rem; }

/* ===========================
   NEWS INDEX / ARTICLE
   =========================== */
.news-index {
  position: sticky; top: 90px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--navy);
  padding: 2rem;
}
.news-index h4 {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 1.25rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.news-index__list { display: flex; flex-direction: column; }
.news-index .news-index__list + h4 { margin-top: 1.75rem; }
.news-index__list li a {
  display: block; font-size: 0.85rem; color: var(--ink-mid);
  padding: 0.6rem 0; border-bottom: 1px solid var(--border);
  line-height: 1.4; transition: color 0.15s, padding-left 0.15s;
}
.news-index__list li a:hover { color: var(--navy); }
.news-index__list li a.active { color: var(--brass); font-weight: 600; }
.news-index__list li:last-child a { border-bottom: none; }
.news-article-body { font-size: 1rem; color: var(--ink-mid); }
.news-article-body h2 { font-size: 1.5rem; margin: 2rem 0 0.85rem; }
.news-article-body p { margin-bottom: 1em; }

/* ===========================
   NEWS ARTICLE
   =========================== */
.news-article__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-color: var(--border);
  border-radius: var(--radius);
  margin-bottom: 2rem;
}
#article h1 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0;
  font-weight: 400;
}
.articledescription {
  margin-top: 1rem;
  color: var(--ink-mid);
  font-size: 1.05rem;
  line-height: 1.7;
}
.article-share {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  margin: 1.75rem 0;
}
.article-share__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-right: 0.4rem;
  white-space: nowrap;
}
.article-share__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--ink-mid);
  font-size: 0.95rem;
  transition: border-color 0.18s, color 0.18s;
  flex-shrink: 0;
}
.article-share__btn:hover { border-color: var(--navy); color: var(--navy); }
.article-body { font-size: 1rem; line-height: 1.8; color: var(--ink-mid); }
.article-body h2 { font-size: 1.45rem; color: var(--navy); margin: 2.25rem 0 0.85rem; font-weight: 400; }
.article-body h3 { font-size: 1.1rem; color: var(--navy); font-style: italic; margin: 1.75rem 0 0.6rem; }
.article-body p { margin-bottom: 1.1em; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.1em; }
.article-body ul li, .article-body ol li { margin-bottom: 0.4em; color: var(--ink-mid); }
.article-body a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.article-body a:hover { color: var(--brass-dim); }
.article-body img { max-width: 100%; height: auto; border-radius: var(--radius); margin: 1.5rem 0; }
.article-body iframe {
  width: 100%; max-width: 100%;
  aspect-ratio: 16 / 9; height: auto;
  display: block; margin: 1.5rem 0;
  border: 0; border-radius: var(--radius);
}

/* ===========================
   ABOUT / BIO PAGE
   =========================== */
.bio-section { padding: 6rem 0; background: var(--white); }
.bio-section__inner { display: grid; grid-template-columns: 400px 1fr; gap: 6rem; align-items: start; }
.bio-section__image {
  overflow: hidden; aspect-ratio: 3/4;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--navy);
}
.bio-section__image img { width: 100%; height: 100%; object-fit: cover; }
.bio-section__content h2 { letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.bio-section__content p { color: var(--ink-mid); margin-bottom: 1em; }
.accent-block {
  border-left: 2px solid var(--brass);
  padding: 1rem 1.5rem; margin: 2rem 0;
  background: var(--off-white);
}
.accent-block p { font-size: 0.92rem; color: var(--ink-mid); margin: 0; }

.values-section { padding: 6rem 0; background: var(--off-white); }
.values-section .section-header { max-width: 560px; margin-bottom: 3.5rem; }
.values-section .section-header h2 { letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-top: 2px solid var(--navy);
  overflow: hidden;
}
.value-item {
  padding: 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.value-item:nth-child(3n) { border-right: none; }
.value-item:nth-last-child(-n+3) { border-bottom: none; }
.value-item h3 { font-size: 1rem; font-family: 'Playfair Display', serif; font-style: italic; color: var(--navy); margin-bottom: 0.6rem; }
.value-item p { font-size: 0.88rem; color: var(--ink-mid); }

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-section { padding: 5rem 0; background: var(--off-white); }
.contact-map { margin-top: 4rem; border: 1px solid var(--border); overflow: hidden; height: 500px; }
.contact-map iframe { width: 100%; height: 100%; border: none; display: block; }
.contact-section__inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 6rem; align-items: start; }
.contact-info h3 { font-size: 1.4rem; letter-spacing: -0.01em; margin-bottom: 1.5rem; }
.contact-info address { font-style: normal; color: var(--ink-mid); line-height: 1.85; margin-bottom: 1.25rem; font-size: 0.95rem; }
.contact-form h3 { font-size: 1.4rem; letter-spacing: -0.01em; margin-bottom: 1.75rem; }

/* ===========================
   FORMS
   =========================== */
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; letter-spacing: 0.02em; }
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  display: block; width: 100%; padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  font-size: 0.95rem; font-family: 'Inter', sans-serif;
  color: var(--ink); background: var(--white);
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none; appearance: none; border-radius: var(--radius);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,31,58,.08);
}
textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.visually-trap { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.message-success { padding: 1rem 1.25rem; background: #f0faf4; color: #1a5e38; border: 1px solid #b8e6cc; border-radius: var(--radius); margin-bottom: 1.25rem; font-size: 0.9rem; }
.message-error   { padding: 1rem 1.25rem; background: #fef4f4; color: #8b1a1a; border: 1px solid #f5c6c6; border-radius: var(--radius); margin-bottom: 1.25rem; font-size: 0.9rem; }

/* ===========================
   RESOURCES
   =========================== */
.resource-cards-section { padding: 4rem 0 6rem; background: var(--off-white); }
.resource-cards { display: flex; flex-direction: column; border: 1px solid var(--border); border-top: 2px solid var(--navy); overflow: hidden; background: var(--border); gap: 1px; }
.resource-card { display: flex; align-items: flex-start; gap: 2rem; background: var(--white); padding: 2.25rem; transition: background 0.18s; cursor: pointer; }
.resource-card:hover { background: var(--off-white); }
.resource-card__icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: var(--brass); font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.resource-card__body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--navy); }
.resource-card__body p { font-size: 0.9rem; color: var(--ink-mid); margin-bottom: 0.75rem; }
.resource-card__link { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brass); display: inline-flex; align-items: center; gap: 0.4rem; border-bottom: 1px solid rgba(196,154,60,0.35); padding-bottom: 1px; }

/* ===========================
   MODAL
   =========================== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(11,31,58,0.7);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; opacity: 0; visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}
.modal-overlay.is-open { opacity: 1; visibility: visible; }
.modal {
  background: var(--white); padding: 3rem;
  max-width: 620px; width: 100%; max-height: 82vh; overflow-y: auto;
  position: relative; border-top: 2px solid var(--navy);
}
.modal__close {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--off-white); border: 1px solid var(--border);
  cursor: pointer; width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-mid); font-size: 1.1rem; transition: background 0.15s;
}
.modal__close:hover { background: var(--border); }
.modal h2 { margin-bottom: 1.25rem; font-size: 1.4rem; }
.modal__body p { font-size: 0.9rem; color: var(--ink-mid); margin-bottom: 0.85em; line-height: 1.65; }
.modal__body h3 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); margin: 1.5rem 0 0.5rem; }
.modal__body a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.modal__meta { margin-top: 1.5rem !important; padding-top: 1rem; border-top: 1px solid var(--border); font-size: 0.78rem !important; color: var(--ink-light) !important; }

/* ===========================
   BACK TO TOP
   =========================== */
#back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none; transform: translateY(6px);
  transition: opacity 0.22s, transform 0.22s, background 0.18s; z-index: 90;
}
#back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#back-to-top:hover { background: var(--brass); }

/* ===========================
   REDUCED MOTION
   =========================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .photo-band { background-attachment: scroll; }
}

/* ===========================
   RESPONSIVE — TABLET
   =========================== */
@media (max-width: 1024px) {
  .intro-strip__inner { gap: 4rem; }
  .photo-split__content { padding: 4rem 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .bio-section__inner { grid-template-columns: 1fr; }
  .bio-section__image { max-width: 100%; aspect-ratio: 2/3; }
  .service-detail__inner { grid-template-columns: 1fr 220px; gap: 3rem; }
  .contact-section__inner { grid-template-columns: 1fr; gap: 3.5rem; }
}

@media (max-width: 860px) {
  .intro-strip__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .photo-split { grid-template-columns: 1fr; }
  .photo-split__image { height: 340px; }
  .photo-split__content { padding: 4rem 2rem; }
  .service-row { grid-template-columns: 2.5rem 1fr 1.5rem; }
  .service-row__desc { display: none; }
  .news-row { grid-template-columns: 5.5rem 1fr 1.5rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .value-item:nth-child(2n) { border-right: none; }
  .value-item:nth-last-child(-n+2) { border-bottom: none; }
  .service-detail__inner { grid-template-columns: 1fr; }
  .service-sidebar, .news-index { position: static; }
  .footer-legal { flex-direction: column; align-items: center; text-align: center; }
  .footer-legal__text { text-align: center; }
  .footer-legal__right { align-items: center; }
  .footer-legal__liability { text-align: center; }
  .footer-legal__links { justify-content: center; }
  .photo-band { background-attachment: scroll; }
}

@media (max-width: 900px) {
  .site-header .container { height: 62px; }
  .scroll-hero__sticky { top: 62px; height: calc(var(--real-vh, 100vh) - 62px); }
  .site-logo img { width: 200px; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; top: 62px; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    flex-direction: column; align-items: stretch;
    padding: 0.5rem 0; overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 99; border-top: 1px solid rgba(255,255,255,0.07);
  }
  .nav-open .site-nav { transform: translateX(0); }
  .nav-list { flex-direction: column; width: 100%; }
  .nav-list > li > a {
    padding: 1rem 1.5rem; font-size: 0.72rem;
    border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.06);
    justify-content: space-between;
    color: rgba(255,255,255,0.65) !important;
  }
  .nav-list > li > a:hover { color: var(--brass-light) !important; background: rgba(255,255,255,0.04); }
  .nav-toggle span { background: var(--navy); }

  .has-dropdown .dropdown {
    position: static; box-shadow: none; border: none;
    border-radius: 0; border-top: none;
    opacity: 1; visibility: visible; transform: none;
    padding: 0; background: rgba(0,0,0,0.25); display: none;
  }
  .has-dropdown.is-open .dropdown { display: block; }
  .dropdown li a {
    padding: 0.75rem 1.5rem 0.75rem 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.5) !important;
  }
  .mobile-nav-cta { display: block; }
}

@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }
  .hero { min-height: 88vh; }
  .hero h1 { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .hero__actions { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .service-row { grid-template-columns: 2.2rem 1fr 1.5rem; gap: 1rem; }
  .news-row { display: flex; flex-direction: column; gap: 0.75rem; align-items: stretch; }
  .news-row__thumb { height: 200px; }
  .news-row__arrow { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .value-item { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .value-item:last-child { border-bottom: none !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-copy { flex-direction: column; align-items: center; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .resource-card { flex-direction: column; gap: 1rem; }
  .contact-map { height: 240px; }
  .cta-section { padding: 4rem 0; }
  .cta-section__image { display: none; }
  .cta-section__inner { max-width: 100%; }
  .photo-split__content { padding: 3rem 1.5rem; }
  .photo-band { height: 36vh; }
  .logo-mark { width: 36px; height: 36px; font-size: 0.8rem; }
  .logo-text strong { font-size: 0.95rem; }
}
