/* ============================================================
   Cresswell Corporate Law — Design System
   Deep navy & graphite · restrained gold · confident serif
   ============================================================ */

:root {
  /* Palette */
  --navy-950: #060d1a;
  --navy-900: #0a1428;
  --navy-850: #0d1b34;
  --navy-800: #112243;
  --navy-700: #1a3056;
  --navy-600: #26426e;
  --graphite-900: #181c24;
  --graphite-700: #2a313d;
  --graphite-500: #4a5568;
  --graphite-300: #8a93a4;

  --gold-600: #9c7a32;
  --gold-500: #b8924a;
  --gold-400: #cda85f;
  --gold-300: #e0c285;
  --gold-100: #f3e8d0;

  --paper: #f7f5f0;
  --paper-2: #efece4;
  --cloud: #fbfaf7;
  --white: #ffffff;

  --ink: #0e1626;
  --ink-soft: #3a4456;
  --muted: #6c7585;
  --line: rgba(14, 22, 38, 0.10);
  --line-light: rgba(255, 255, 255, 0.12);

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --display: "Fraunces", Georgia, serif;
  --sans: "Archivo", system-ui, sans-serif;

  /* Shape & motion */
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 4px 20px rgba(6, 13, 26, 0.08);
  --shadow: 0 22px 60px rgba(6, 13, 26, 0.16);
  --shadow-lg: 0 48px 110px rgba(6, 13, 26, 0.30);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1280px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 16.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h1 { font-size: clamp(2.9rem, 6.2vw, 5.4rem); }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.5rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); }
em { font-style: italic; }

.serif { font-family: var(--serif); }

.wrap { width: min(100% - 2.8rem, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8.5rem) 0; position: relative; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.bg-paper2 { background: var(--paper-2); }
.bg-cloud { background: var(--cloud); }
.bg-navy { background: var(--navy-900); color: var(--paper); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--sans);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-600);
}
.eyebrow::before {
  content: ""; width: 30px; height: 1px;
  background: var(--gold-500);
}
.bg-navy .eyebrow { color: var(--gold-400); }
.section-head { max-width: 720px; }
.section-head h2 { margin: 1rem 0 0.9rem; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }
.bg-navy .section-head p { color: rgba(247,245,240,0.72); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans);
  font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 1rem 1.7rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn .arr { transition: transform .35s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }
.btn-solid {
  background: var(--gold-500); color: var(--navy-950);
  box-shadow: 0 10px 30px rgba(184,146,74,0.32);
}
.btn-solid:hover { background: var(--gold-400); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(184,146,74,0.42); }
.btn-navy { background: var(--navy-900); color: var(--white); }
.btn-navy:hover { background: var(--navy-800); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border-color: rgba(14,22,38,0.22);
}
.btn-ghost:hover { border-color: var(--navy-900); background: var(--navy-900); color: var(--white); }
.bg-navy .btn-ghost { color: var(--paper); border-color: rgba(255,255,255,0.28); }
.bg-navy .btn-ghost:hover { background: var(--white); color: var(--navy-950); border-color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: all .4s var(--ease);
  background: rgba(10, 20, 40, 0.0);
}
.site-header.scrolled {
  background: rgba(8, 15, 30, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 18px 50px rgba(6,13,26,0.4);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
  width: min(100% - 2.8rem, var(--wrap));
  margin-inline: auto;
  transition: padding .4s var(--ease);
}
.site-header.scrolled .nav { padding: 0.95rem 0; }
.brand { display: flex; flex-direction: column; line-height: 1; color: var(--white); }
.brand-mark {
  font-family: var(--display);
  font-size: 1.5rem; font-weight: 500; letter-spacing: 0.01em;
}
.brand-mark .amp { color: var(--gold-400); font-style: italic; }
.brand-sub {
  font-family: var(--sans);
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold-300); margin-top: 0.45rem;
}
.nav-links { display: flex; gap: 2.2rem; }
.nav-links a {
  font-family: var(--sans);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(247,245,240,0.82);
  position: relative; padding: 0.3rem 0;
  transition: color .3s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--gold-400);
  transition: width .35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 1.5rem; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 600; color: var(--gold-300);
}
.nav-phone svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 2px; background: var(--white);
  transition: all .35s var(--ease); transform-origin: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 78% -10%, rgba(184,146,74,0.16), transparent 60%),
    linear-gradient(160deg, var(--navy-950), var(--navy-850) 55%, var(--navy-900));
  color: var(--paper);
  padding: clamp(8rem, 16vh, 12rem) 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(900px 500px at 30% 20%, #000, transparent 75%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
  position: relative; z-index: 2;
}
.hero-copy h1 { color: var(--white); margin: 1.4rem 0 1.5rem; }
.hero-copy h1 em { color: var(--gold-300); font-family: var(--serif); font-weight: 500; }
.hero-tag {
  font-size: 1.15rem; color: rgba(247,245,240,0.78);
  max-width: 32rem; margin-bottom: 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }
.hero-trust {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  padding-top: 1.8rem; border-top: 1px solid var(--line-light);
}
.hero-trust .tr-item { display: flex; flex-direction: column; }
.hero-trust .tr-item b { font-family: var(--display); font-size: 1.5rem; color: var(--gold-300); }
.hero-trust .tr-item span { font-size: 0.78rem; color: rgba(247,245,240,0.6); letter-spacing: 0.04em; }
.hero-trust .tr-div { width: 1px; height: 38px; background: var(--line-light); }

.hero-media { position: relative; }
.hero-frame {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(184,146,74,0.28);
  box-shadow: var(--shadow-lg);
  will-change: transform;
}
.hero-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,13,26,0.45));
}
.hero-frame img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: -28px; left: -28px;
  background: var(--white); color: var(--navy-900);
  padding: 1.3rem 1.5rem; border-radius: var(--radius);
  box-shadow: var(--shadow); z-index: 3;
  border-left: 3px solid var(--gold-500);
}
.hero-badge .n { font-family: var(--display); font-size: 2.4rem; line-height: 1; }
.hero-badge .n span { font-size: 0.42em; color: var(--gold-600); }
.hero-badge .l { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 0.3rem; }
.hero-float {
  position: absolute; top: 26px; right: -26px;
  background: rgba(10,20,40,0.85); backdrop-filter: blur(8px);
  border: 1px solid var(--line-light);
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.85rem 1.1rem; border-radius: var(--radius);
  z-index: 3; box-shadow: var(--shadow);
}
.hero-float .dot {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(184,146,74,0.18); color: var(--gold-300);
}
.hero-float .dot svg { width: 18px; height: 18px; }
.hero-float .t { display: flex; flex-direction: column; line-height: 1.2; }
.hero-float .t b { font-family: var(--display); font-size: 1.15rem; color: var(--white); }
.hero-float .t span { font-size: 0.7rem; color: rgba(247,245,240,0.6); }

/* ---------- Logos / trust strip ---------- */
.trust-strip { background: var(--navy-950); padding: 2.4rem 0; border-top: 1px solid var(--line-light); }
.trust-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.trust-label { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(247,245,240,0.45); }
.trust-logos { display: flex; align-items: center; gap: 2.8rem; flex-wrap: wrap; }
.trust-logos span {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 600;
  color: rgba(247,245,240,0.55); letter-spacing: 0.02em;
  transition: color .3s var(--ease);
}
.trust-logos span:hover { color: var(--gold-300); }

/* ---------- Stats ---------- */
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
}
.stat { text-align: left; position: relative; padding-left: 1.6rem; }
.stat::before { content: ""; position: absolute; left: 0; top: 0.4rem; bottom: 0.4rem; width: 2px; background: linear-gradient(var(--gold-500), transparent); }
.stat .n { font-family: var(--display); font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1; color: var(--white); }
.stat .n .suf, .stat .n .pre { color: var(--gold-400); }
.stat .l { margin-top: 0.6rem; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(247,245,240,0.6); }

/* ---------- Intro / about split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.split-media { position: relative; }
.split-media .frame { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split-media .frame img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform 1.2s var(--ease); }
.split-media:hover .frame img { transform: scale(1.05); }
.split-media .accent {
  position: absolute; inset: auto auto -26px -26px;
  width: 140px; height: 140px;
  border: 1px solid var(--gold-500);
  border-radius: var(--radius); z-index: -1;
}
.split-media.r .accent { inset: -26px -26px auto auto; }
.lead { font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 1.85rem); line-height: 1.4; color: var(--ink); margin: 1.4rem 0 1.4rem; }
.split-body p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.sig { margin-top: 1.8rem; display: flex; align-items: center; gap: 1rem; }
.sig .name { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; }
.sig .role { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.feature-list { display: grid; gap: 0.9rem; margin: 1.6rem 0; }
.feature-list li { display: flex; gap: 0.85rem; align-items: flex-start; color: var(--ink-soft); }
.feature-list .ck {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(184,146,74,0.14); color: var(--gold-600);
  display: grid; place-items: center; margin-top: 0.1rem;
}
.feature-list .ck svg { width: 13px; height: 13px; }

/* ---------- Practice cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.p-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2.2rem 2rem;
  position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.p-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.p-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(184,146,74,0.4); }
.p-card:hover::before { transform: scaleX(1); }
.p-ic {
  width: 54px; height: 54px; border-radius: var(--radius);
  background: var(--navy-900); color: var(--gold-300);
  display: grid; place-items: center; margin-bottom: 1.3rem;
}
.p-ic svg { width: 26px; height: 26px; }
.p-card h3 { margin-bottom: 0.7rem; }
.p-card p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 1.1rem; }
.p-card .more {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-600); display: inline-flex; align-items: center; gap: 0.4rem;
}
.p-card .more .arr { transition: transform .3s var(--ease); }
.p-card:hover .more .arr { transform: translateX(4px); }

/* ---------- Feature band (image + text) ---------- */
.band {
  position: relative; color: var(--paper);
  background: linear-gradient(120deg, var(--navy-950) 0%, var(--navy-850) 60%, rgba(13,27,52,0.6)), var(--navy-900);
  overflow: hidden;
}
.band-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.band-media { position: relative; min-height: 480px; }
.band-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(10,20,40,0.55)); }
.band-copy { padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem); }
.band-copy h2 { color: var(--white); margin: 1rem 0 1.3rem; }
.band-copy p { color: rgba(247,245,240,0.76); margin-bottom: 1.5rem; }
.quote-mark { font-family: var(--display); font-size: 4rem; line-height: 0.6; color: var(--gold-500); }

/* ---------- Process / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
.step {
  position: relative; padding: 2rem 1.6rem; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.step .num {
  font-family: var(--display); font-size: 2.6rem; color: var(--gold-300); line-height: 1;
  -webkit-text-stroke: 1px var(--gold-500); color: transparent;
}
.step h4 { font-family: var(--display); font-size: 1.25rem; margin: 0.8rem 0 0.5rem; }
.step p { font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- Testimonials ---------- */
.t-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2.4rem 2.2rem;
  display: flex; flex-direction: column; gap: 1.3rem; height: 100%;
}
.bg-navy .t-card { background: rgba(255,255,255,0.04); border-color: var(--line-light); }
.t-card .stars { color: var(--gold-500); letter-spacing: 0.18em; }
.t-card blockquote { font-family: var(--serif); font-size: 1.25rem; line-height: 1.5; color: var(--ink); }
.bg-navy .t-card blockquote { color: var(--white); }
.t-card .who { display: flex; align-items: center; gap: 0.9rem; margin-top: auto; }
.t-card .av {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy-800); color: var(--gold-300);
  display: grid; place-items: center; font-family: var(--display); font-size: 1.1rem;
}
.t-card .who .nm { font-weight: 600; font-size: 0.95rem; }
.bg-navy .t-card .who .nm { color: var(--white); }
.t-card .who .cm { font-size: 0.78rem; color: var(--muted); }
.bg-navy .t-card .who .cm { color: rgba(247,245,240,0.55); }

/* ---------- CTA ---------- */
.cta {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 80% 120%, rgba(184,146,74,0.2), transparent 60%),
    linear-gradient(150deg, var(--navy-950), var(--navy-800));
  color: var(--paper); text-align: center;
}
.cta .wrap { position: relative; z-index: 2; }
.cta h2 { color: var(--white); margin-bottom: 1.1rem; }
.cta p { color: rgba(247,245,240,0.78); max-width: 40rem; margin: 0 auto 2.2rem; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(247,245,240,0.7); padding: clamp(4rem, 7vw, 6rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-brand .brand-mark { color: var(--white); font-size: 1.6rem; }
.footer-brand p { margin: 1.2rem 0; font-size: 0.92rem; max-width: 24rem; line-height: 1.8; }
.footer-social { display: flex; gap: 0.7rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: var(--radius);
  border: 1px solid var(--line-light); display: grid; place-items: center;
  color: rgba(247,245,240,0.65); transition: all .3s var(--ease);
}
.footer-social a:hover { background: var(--gold-500); color: var(--navy-950); border-color: var(--gold-500); }
.footer-social a svg { width: 17px; height: 17px; }
.footer-col h4 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-300); margin-bottom: 1.3rem; }
.footer-col ul { display: grid; gap: 0.7rem; }
.footer-col a, .footer-col li { font-size: 0.92rem; color: rgba(247,245,240,0.7); transition: color .3s var(--ease); }
.footer-col a:hover { color: var(--gold-300); }
.footer-col .ln { display: flex; gap: 0.6rem; align-items: flex-start; }
.footer-col .ln svg { width: 16px; height: 16px; flex: none; margin-top: 0.2rem; color: var(--gold-400); }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.8rem; border-top: 1px solid var(--line-light);
  display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  font-size: 0.82rem; color: rgba(247,245,240,0.5);
}
.footer-disclaimer {
  margin-top: 1.4rem; font-size: 0.76rem; line-height: 1.7;
  color: rgba(247,245,240,0.4); max-width: 70rem;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(900px 500px at 85% -20%, rgba(184,146,74,0.16), transparent 60%),
    linear-gradient(160deg, var(--navy-950), var(--navy-850));
  color: var(--paper); padding: clamp(8rem, 16vh, 11rem) 0 clamp(3.5rem, 6vw, 5.5rem);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(700px 400px at 70% 30%, #000, transparent);
}
.page-hero .wrap { position: relative; z-index: 2; }
.breadcrumb { font-size: 0.8rem; color: rgba(247,245,240,0.55); margin-bottom: 1.3rem; letter-spacing: 0.04em; }
.breadcrumb a:hover { color: var(--gold-300); }
.page-hero h1 { color: var(--white); max-width: 16ch; }
.page-hero .lead-sub { color: rgba(247,245,240,0.78); font-size: 1.15rem; max-width: 42rem; margin-top: 1.3rem; }

/* ---------- Services filter / fees ---------- */
.filter-bar { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  font-family: var(--sans); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.65rem 1.3rem; border-radius: 999px;
  background: var(--white); color: var(--ink-soft);
  border: 1px solid var(--line); transition: all .3s var(--ease);
}
.filter-btn:hover { border-color: var(--navy-700); }
.filter-btn.active { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.svc-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2rem; display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), opacity .4s var(--ease);
}
.svc-card.hide { display: none; }
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.svc-card .tag { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-600); font-weight: 600; }
.svc-card h3 { margin: 0.7rem 0; }
.svc-card p { color: var(--ink-soft); font-size: 0.94rem; flex: 1; }
.svc-fee { margin-top: 1.4rem; padding-top: 1.3rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: baseline; }
.svc-fee .from { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.svc-fee .amt { font-family: var(--display); font-size: 1.6rem; color: var(--navy-900); }
.svc-fee .amt small { font-size: 0.55em; color: var(--muted); }

/* fee table */
.fee-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.fee-table th, .fee-table td { padding: 1.1rem 1.5rem; text-align: left; border-bottom: 1px solid var(--line); }
.fee-table thead th { background: var(--navy-900); color: var(--white); font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.fee-table tbody tr:hover { background: var(--paper); }
.fee-table td:first-child { font-weight: 600; color: var(--ink); }
.fee-table td.price { font-family: var(--display); font-size: 1.15rem; color: var(--navy-800); text-align: right; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.enquiry-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(2rem, 4vw, 3rem); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.5rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 0.95rem;
  padding: 0.9rem 1rem; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--cloud); color: var(--ink);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(184,146,74,0.16);
}
.field textarea { resize: vertical; min-height: 130px; }
[data-form-note] { margin-top: 1rem; font-size: 0.92rem; font-weight: 600; min-height: 1.4rem; transition: color .3s; }
[data-form-note].ok { color: #2f7d4f; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.contact-aside { display: grid; gap: 1.5rem; }
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; }
.info-card h3 { font-family: var(--display); font-size: 1.35rem; margin-bottom: 1rem; }
.info-row { display: flex; gap: 0.9rem; align-items: flex-start; margin-bottom: 0.9rem; color: var(--ink-soft); font-size: 0.95rem; }
.info-row svg { width: 19px; height: 19px; flex: none; color: var(--gold-600); margin-top: 0.15rem; }
.hours-list { display: grid; gap: 0.6rem; }
.hours-list .h-row { display: flex; justify-content: space-between; padding: 0.55rem 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.hours-list .h-row:last-child { border-bottom: 0; }
.hours-list .day { color: var(--ink-soft); }
.hours-list .time { font-weight: 600; color: var(--ink); }
.hours-list .closed { color: var(--muted); }
.map-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-card svg { display: block; width: 100%; height: auto; }

/* ---------- Blog ---------- */
.featured-post { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.featured-post .fp-media { position: relative; min-height: 380px; overflow: hidden; }
.featured-post .fp-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.featured-post:hover .fp-media img { transform: scale(1.05); }
.featured-post .fp-body { padding: clamp(2rem, 4vw, 3.2rem); display: flex; flex-direction: column; justify-content: center; }
.post-meta { display: flex; gap: 1rem; align-items: center; font-size: 0.78rem; color: var(--muted); letter-spacing: 0.04em; margin-bottom: 1rem; }
.post-cat { color: var(--gold-600); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.featured-post h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 1rem; }
.featured-post p { color: var(--ink-soft); margin-bottom: 1.5rem; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.post-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card .pc-media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--navy-800); }
.post-card .pc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.post-card:hover .pc-media img { transform: scale(1.08); }
.post-card .pc-grad { position: absolute; inset: 0; }
.post-card .pc-body { padding: 1.6rem 1.7rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.post-card h3 { font-size: 1.3rem; margin: 0.6rem 0 0.7rem; }
.post-card p { font-size: 0.92rem; color: var(--ink-soft); flex: 1; margin-bottom: 1.1rem; }
.read-more { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-600); display: inline-flex; gap: 0.4rem; align-items: center; }
.read-more .arr { transition: transform .3s var(--ease); }
.post-card:hover .read-more .arr, .featured-post:hover .read-more .arr { transform: translateX(4px); }

/* pc gradient placeholders */
.grad-a { background: linear-gradient(135deg, #0a1428, #26426e); }
.grad-b { background: linear-gradient(135deg, #181c24, #4a5568); }
.grad-c { background: linear-gradient(135deg, #112243, #9c7a32); }
.grad-d { background: linear-gradient(135deg, #0d1b34, #1a6b82 120%); }
.grad-e { background: linear-gradient(135deg, #1a3056, #b8924a); }
.grad-f { background: linear-gradient(135deg, #060d1a, #2a313d); }
.pc-tag-on-grad { position: absolute; left: 1.2rem; bottom: 1.2rem; color: #fff; font-family: var(--display); font-size: 1.4rem; opacity: 0.92; }

/* newsletter */
.newsletter { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(2rem,4vw,3rem); text-align: center; }
.newsletter form { display: flex; gap: 0.8rem; max-width: 30rem; margin: 1.5rem auto 0; }
.newsletter input { flex: 1; padding: 0.9rem 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cloud); font-family: var(--sans); }
.newsletter input:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(184,146,74,0.16); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); row-gap: 2rem; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 1.3rem;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(8,15,30,0.98); backdrop-filter: blur(14px);
    padding: 1.8rem 2rem; border-top: 1px solid var(--line-light);
  }
  .nav.open .nav-cta {
    display: flex; flex-direction: column; align-items: flex-start; gap: 1rem;
    position: absolute; top: calc(100% + 184px); left: 0; right: 0;
    background: rgba(8,15,30,0.98); backdrop-filter: blur(14px);
    padding: 0 2rem 1.8rem;
  }
  .nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .hero-media { max-width: 520px; }
  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; max-width: 460px; }
  .band-grid { grid-template-columns: 1fr; }
  .band-media { min-height: 320px; }
  .grid-3, .svc-grid, .post-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .featured-post { grid-template-columns: 1fr; }
  .featured-post .fp-media { min-height: 280px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .grid-3, .grid-2, .svc-grid, .post-grid, .steps { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-badge { left: 0; bottom: -20px; }
  .hero-float { right: 0; }
  .footer-bottom { flex-direction: column; }
  .fee-table { font-size: 0.85rem; }
  .fee-table th, .fee-table td { padding: 0.85rem 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
