:root {
  --ink-975: #07131c;
  --ink-950: #0a1822;
  --ink-925: #0d1f2c;
  --ink-900: #102635;
  --ink-850: #153144;
  --ink-800: #19384c;
  --ink-700: #24475b;
  --ink-500: #577083;
  --ink-300: #94aabd;
  --ink-200: #bdcbd5;
  --ink-100: #e1e7eb;
  --gold-200: #ead8ad;
  --gold-300: #d8b878;
  --gold-400: #c7a463;
  --gold-500: #ac884c;
  --white: #fbfaf7;
  --muted: #bec9d1;
  --danger: #ffb4ab;
  --success: #addbc0;
  --border: rgba(255, 255, 255, .13);
  --border-soft: rgba(255, 255, 255, .085);
  --border-strong: rgba(216, 184, 120, .43);
  --panel: rgba(13, 31, 44, .86);
  --panel-soft: rgba(22, 49, 67, .58);
  --panel-light: rgba(255, 255, 255, .055);
  --shadow: 0 26px 72px rgba(0, 0, 0, .28);
  --shadow-soft: 0 16px 46px rgba(0, 0, 0, .18);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 13px;
  --container: 1360px;
  --content: 1040px;
  --header-height: 114px;
  --brand-surface: #f7f7f3;
  --brand-surface-alt: #edf1ef;
  --brand-navy: #193b57;
  --brand-navy-deep: #253b50;
  --brand-slate: #3b5260;
  --brand-grey: #94a4a3;
  --brand-border: rgba(25, 59, 87, .17);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink-975); }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink-100);
  background:
    linear-gradient(90deg, rgba(7, 19, 28, .52) 0%, rgba(7, 19, 28, .42) 42%, rgba(7, 19, 28, .25) 100%),
    linear-gradient(180deg, rgba(7, 19, 28, .12), rgba(7, 18, 27, .82) 82%),
    url("/assets/images/background.webp?v=20260810-lcp-opt") center / cover fixed no-repeat;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before { display: none; }
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 75% 44% at 50% -10%, rgba(216, 184, 120, .13), transparent 72%),
    linear-gradient(90deg, rgba(7, 19, 28, .24), transparent 40%, rgba(7, 19, 28, .13));
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--gold-300); outline-offset: 4px; }
::selection { background: rgba(216, 184, 120, .28); color: var(--white); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: .72rem 1rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-950);
  text-decoration: none;
  transform: translateY(-170%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(247, 247, 243, .965);
  border-bottom: 1px solid var(--brand-border);
  box-shadow: 0 10px 34px rgba(7, 19, 28, .16);
  backdrop-filter: blur(20px) saturate(115%);
  -webkit-backdrop-filter: blur(20px) saturate(115%);
}
.header-shell {
  width: min(var(--container), calc(100% - 48px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 208px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 1.8vw, 26px);
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 198px;
  height: 98px;
  text-decoration: none;
}
.brand img {
  width: auto;
  height: 88px;
  max-width: 100%;
}
.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 1.15vw, 20px);
}
.desktop-nav a {
  position: relative;
  color: var(--brand-slate);
  text-decoration: none;
  font-size: .64rem;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: .105em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .2s ease;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 1px;
  background: var(--gold-300);
  transition: right .2s ease;
}
.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] { color: var(--brand-navy); }
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { right: 0; }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.language-switch {
  display: flex;
  flex-shrink: 0;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--brand-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
}
.language-switch a {
  display: grid;
  place-items: center;
  min-width: 29px;
  min-height: 29px;
  border-radius: 999px;
  color: var(--brand-slate);
  text-decoration: none;
  font-size: .64rem;
  font-weight: 760;
  letter-spacing: .05em;
  transition: color .2s ease, background .2s ease;
}
.language-switch a:hover { color: var(--brand-navy); }
.language-switch a[aria-current="page"] { color: var(--white); background: var(--brand-navy); }
.language-switch--mobile { display: none; }
.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--brand-navy);
  border-radius: 999px;
  background: var(--brand-navy);
  color: var(--white);
  text-decoration: none;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .115em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.header-contact:hover { background: var(--brand-navy-deep); border-color: var(--brand-navy-deep); transform: translateY(-1px); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--brand-border);
  border-radius: 50%;
  background: rgba(25, 59, 87, .045);
  cursor: pointer;
}
.menu-toggle span { display: block; height: 1px; margin: 5px 0; background: var(--brand-navy); }
.mobile-menu[hidden] { display: none !important; }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 10000;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  isolation: isolate;
  overscroll-behavior: none;
  touch-action: none;
  background: rgba(3, 9, 14, .76);
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.mobile-menu__inner {
  position: relative;
  z-index: 1;
  width: min(450px, 93vw);
  height: 100%;
  max-height: 100vh;
  max-height: 100dvh;
  margin-left: auto;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  padding: calc(28px + env(safe-area-inset-top)) calc(28px + env(safe-area-inset-right)) calc(28px + env(safe-area-inset-bottom)) 28px;
  background: linear-gradient(180deg, var(--ink-850), var(--ink-975));
  border-left: 1px solid var(--border);
  box-shadow: -28px 0 72px rgba(0, 0, 0, .44);
}
.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  color: var(--gold-300);
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.mobile-menu__top button { border: 0; background: transparent; color: var(--white); font-size: 2rem; cursor: pointer; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--ink-100);
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  line-height: 1.25;
}
.mobile-menu nav a[aria-current="page"] { color: var(--gold-300); }
.mobile-menu__legal { display: flex; flex-wrap: wrap; gap: 12px 18px; margin-top: 28px; }
.mobile-menu__legal a { color: var(--muted); font-size: .84rem; }
.menu-open,
.menu-open body { overflow: hidden; overscroll-behavior: none; }
body.mobile-menu-lock {
  position: fixed;
  inset-inline: 0;
  width: 100%;
  overflow: hidden;
}

/* Main frame and shared typography */
.site-main {
  width: min(var(--container), calc(100% - 48px));
  min-height: 60vh;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 84px) 0 104px;
}
.page--home .site-main { padding-top: clamp(26px, 4vw, 50px); }
.hero-logo,
.home-hero__logo { display: none; }
.eyebrow {
  margin: 0 0 13px;
  color: var(--gold-300);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.text-intro,
.content,
.faq-wrap,
.contact-premium,
.hero--compact {
  max-width: var(--content);
  margin: 0 auto clamp(28px, 4vw, 48px);
  padding: clamp(34px, 5vw, 58px);
  background: linear-gradient(145deg, rgba(20, 48, 66, .82), rgba(10, 28, 40, .84));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(112%);
  -webkit-backdrop-filter: blur(18px) saturate(112%);
}
.text-intro::before,
.content::before,
.faq-wrap::before,
.contact-premium::before,
.hero--compact::before {
  content: "";
  display: block;
  width: 58px;
  height: 1px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, var(--gold-300), transparent);
}
.text-intro h1,
.content > h1,
.faq-wrap > h1,
.contact-premium h1,
.hero-copy h1 {
  max-width: 900px;
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 3.8vw, 3.65rem);
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: -.032em;
  text-wrap: balance;
}
.text-intro .lead,
.content .lead,
.faq-wrap .subline,
.contact-premium .subline,
.hero-copy .lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--ink-100);
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  line-height: 1.68;
}
.text-intro > p:not(.lead),
.hero-copy > p:not(.lead) { max-width: 74ch; color: var(--muted); }

.text-flow,
.section .container.flow {
  max-width: var(--content);
  margin: 20px auto;
  padding: clamp(30px, 4vw, 46px);
  background: linear-gradient(145deg, rgba(255, 255, 255, .065), rgba(10, 28, 40, .64));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}
.text-flow h2,
.content h2,
.faq-section h2,
.section .flow h2,
.fact-panel h2,
.contact-details h2 {
  max-width: 850px;
  margin: 0 0 17px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.72rem, 3.1vw, 2.65rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.text-flow h3,
.content h3,
.section .flow h3 {
  margin: 27px 0 11px;
  color: var(--gold-300);
  font-size: .78rem;
  line-height: 1.4;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.text-flow p,
.content p,
.faq-answer p,
.section .flow p { max-width: 78ch; color: var(--muted); }
.text-flow ul,
.content ul,
.section .flow ul { margin: 17px 0 22px; padding: 0; list-style: none; }
.text-flow li,
.content li,
.section .flow li {
  position: relative;
  margin: 9px 0;
  padding-left: 25px;
  color: var(--ink-100);
}
.text-flow li::before,
.content li::before,
.section .flow li::before {
  content: "";
  position: absolute;
  top: .76em;
  left: 0;
  width: 10px;
  height: 1px;
  background: var(--gold-300);
}
.text-flow blockquote,
.content blockquote,
.quote {
  margin: 28px 0;
  padding: 23px 27px;
  border: 1px solid var(--border-soft);
  border-left: 2px solid var(--gold-300);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(255, 255, 255, .035);
  color: var(--ink-100);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
}
.quote p { margin-top: 0; color: var(--ink-100); }
.quote .quote-attribution {
  margin: 16px 0 0;
  color: var(--gold-300);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.source-note {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
  color: var(--muted);
  font-size: .86rem;
}
.source-note a { color: var(--gold-300); }
.sig { color: var(--gold-300); font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: .82rem; letter-spacing: .08em; }

/* Image sections */
.text-flow--media {
  display: flex;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.content-thumb {
  width: min(100%, 560px);
  max-width: 560px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.content-thumb--left { margin-right: auto; margin-left: 0; }
.content-thumb--right { margin-right: 0; margin-left: auto; }
.content-thumb--landscape { width: min(100%, 760px); max-width: 760px; }
.content-thumb--landscape .content-thumb__image { aspect-ratio: 4 / 3; max-height: none; }
.content-thumb__image {
  width: 100%;
  max-height: 640px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* Buttons */
.cta-link,
.btnPremium,
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  max-width: 100%;
  min-width: 0;
  min-height: 46px;
  box-sizing: border-box;
  padding: 10px 22px;
  border-radius: 999px;
  text-align: center;
  text-decoration: none !important;
  font-size: .71rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .115em;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.cta-link,
.btnPremium,
.button-primary {
  border: 1px solid var(--gold-300);
  background: var(--gold-300);
  color: var(--ink-950) !important;
}
.button-secondary {
  border: 1px solid var(--border-strong);
  background: rgba(9, 28, 40, .24);
  color: var(--white);
}
.cta-link:hover,
.btnPremium:hover,
.button-primary:hover { background: var(--gold-200); border-color: var(--gold-200); transform: translateY(-1px); }
.button-secondary:hover { background: rgba(255, 255, 255, .075); transform: translateY(-1px); }
.cta-link:active,
.btnPremium:active,
.button-primary:active,
.button-secondary:active { transform: translateY(0); }

/* Home */
.home-hero {
  min-height: min(690px, calc(100vh - var(--header-height) - 46px));
  display: grid;
  align-items: center;
  padding: 14px 0 54px;
}
.home-hero__content {
  max-width: 660px;
  padding: clamp(36px, 5vw, 60px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(118deg, rgba(9, 28, 40, .93), rgba(16, 45, 61, .76));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(112%);
  -webkit-backdrop-filter: blur(18px) saturate(112%);
}
.home-hero h1 {
  max-width: 640px;
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 4.2vw, 4.15rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.038em;
  text-wrap: balance;
}
.home-hero h1::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin-top: 22px;
  background: var(--gold-300);
}
.home-hero__lead {
  max-width: 620px;
  margin: 23px 0 10px;
  color: var(--ink-100);
  font-size: clamp(1.05rem, 1.55vw, 1.2rem);
  line-height: 1.65;
}
.home-hero__content > p:not(.eyebrow):not(.home-hero__lead) { max-width: 66ch; margin-bottom: 0; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 27px; }
.section-heading { max-width: 1120px; margin: 62px auto 18px; }
.section-heading h2 {
  max-width: 850px;
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.025em;
}

/* Cards and service overview */
.service-grid,
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 24px auto;
}
.service-card,
.location-card,
.cards-grid > article,
.location-list a {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 27px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, rgba(24, 56, 75, .75), rgba(9, 27, 39, .79));
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.service-card::before,
.location-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold-300), transparent);
  opacity: .55;
}
.service-card:hover,
.location-card:hover,
.location-list a:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: linear-gradient(150deg, rgba(29, 66, 87, .8), rgba(10, 30, 43, .84));
}
.service-card h2,
.service-card h3,
.location-card h2,
.location-card h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.48rem;
  font-weight: 500;
  line-height: 1.2;
}
.service-card p,
.location-card p { color: var(--muted); }
.service-card__label {
  display: block;
  margin-bottom: 15px;
  color: var(--gold-300);
  font-size: .65rem;
  font-weight: 760;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.service-card__link { color: var(--gold-300); font-size: .7rem; font-weight: 760; letter-spacing: .095em; text-transform: uppercase; }
.location-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; padding: 0; list-style: none; }
.location-list li { margin: 0; padding: 0; }
.location-list li::before { display: none; }
.location-list a { display: block; min-height: auto; padding: 20px 22px; color: var(--ink-100); }

.feature-panel {
  max-width: 1120px;
  margin: 76px auto 0;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(22, 51, 69, .86), rgba(8, 25, 36, .82));
  box-shadow: var(--shadow);
}
.feature-panel > div:first-child { padding: clamp(34px, 5.5vw, 64px); align-self: center; }
.feature-panel h2 {
  margin: 0 0 19px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3.5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.1;
}
.feature-panel p { max-width: 62ch; color: var(--muted); }
.feature-panel__image img { width: 100%; height: 100%; min-height: 410px; object-fit: cover; }
.image-gallery { max-width: 1120px; margin: 28px auto 68px; display: grid; gap: 16px; }
.image-gallery--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.image-gallery--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.image-gallery img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-soft); }

/* Fact panels */
.breadcrumbs { width: min(var(--content), calc(100% - 48px)); margin: 17px auto 0; font-size: .82rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; list-style: none; margin: 0; padding: 0; color: var(--muted); }
.breadcrumbs li + li::before { content: "/"; margin-right: 8px; color: rgba(255, 255, 255, .32); }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--white); }
.fact-panel {
  width: min(var(--content), 100%);
  margin: 30px auto 46px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(216, 184, 120, .28);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(21, 49, 67, .88), rgba(8, 25, 36, .9));
  box-shadow: var(--shadow-soft);
}
.fact-panel h2 { margin: 4px 0 22px; }
.fact-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; margin: 0; }
.fact-list > div { padding: 19px 21px; border-top: 1px solid var(--border-soft); }
.fact-list > div:nth-child(odd) { border-right: 1px solid var(--border-soft); }
.fact-list dt { margin-bottom: 7px; color: var(--gold-300); font-size: .72rem; font-weight: 760; letter-spacing: .1em; text-transform: uppercase; }
.fact-list dd { margin: 0; color: var(--ink-100); line-height: 1.64; }
.fact-list ul { margin: 0; padding-left: 18px; }
.fact-list a { color: var(--ink-100); text-underline-offset: 4px; }
.fact-list--compact > div:last-child:nth-child(odd) { grid-column: 1 / -1; border-right: 0; }

/* FAQ */
.faq-section { margin: 38px 0 0; }
.faq-section .sectionIntro { max-width: 70ch; color: var(--muted); }
.faq-item { margin: 11px 0; border: 1px solid var(--border-soft); border-radius: var(--radius-sm); overflow: hidden; background: rgba(255, 255, 255, .028); }
.faq-question {
  width: 100%;
  padding: 17px 20px;
  border: 0;
  background: transparent;
  color: var(--white);
  text-align: left;
  font-weight: 680;
  cursor: pointer;
}
.faq-question::after { content: "+"; float: right; color: var(--gold-300); font-size: 1.16rem; font-weight: 400; }
.faq-question[aria-expanded="true"]::after { content: "−"; }
.faq-answer { padding: 0 20px 18px; }
.faq-answer[hidden] { display: none; }

/* Contact */
.contact-premium { max-width: 1080px; }
.contact-premium .card { margin-top: 28px; padding: 0; background: transparent !important; box-shadow: none !important; }
.contact-layout { display: block; margin-top: 34px; }
.contact-details {
  align-self: start;
  padding: 26px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .035);
}
.contact-details h2 { margin-bottom: 15px; font-size: 1.55rem; }
.contact-details p,
.contact-details a { color: var(--muted); }
.contact-details a:hover { color: var(--gold-300); }
.contact-form {
  display: grid;
  width: min(730px, 100%);
  margin-inline: auto;
  gap: 19px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: rgba(7, 23, 34, .34);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
.form-field { display: grid; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label,
.consent-row label { color: var(--ink-100); font-size: .86rem; font-weight: 650; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: rgba(255, 255, 255, .05);
  color: var(--white);
  transition: border-color .2s ease, background .2s ease;
}
.form-field textarea { min-height: 164px; resize: vertical; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: color-mix(in srgb, var(--muted) 82%, transparent); opacity: 1; }
.form-field-help { color: var(--muted); font-size: .78rem; line-height: 1.5; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold-300); background: rgba(255, 255, 255, .072); outline: none; }
.form-field select option { color: #111; background: #fff; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.consent-row { display: flex; align-items: flex-start; gap: 10px; }
.consent-row input { width: 19px; height: 19px; margin-top: 3px; accent-color: var(--gold-300); }
.consent-row a { color: var(--gold-300); }
.form-note { color: var(--muted); font-size: .81rem; }
.contact-form > .form-note { margin: 0; }
.contact-form > .form-actions { margin-top: -5px; }
.contact-form > .form-note--enquiry { margin-top: -5px; }
.form-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 15px; }
.form-status { min-height: 24px; font-weight: 650; }
.form-status[data-type="error"] { color: var(--danger); }
.form-status[data-type="success"] { color: var(--success); }
button[disabled] { opacity: .55; cursor: wait; }



.legal-consents {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background: rgba(255, 255, 255, .026);
}
.legal-consents .consent-row { margin: 0; }
.legal-consents .consent-row + .consent-row { padding-top: 9px; border-top: 1px solid var(--border-soft); }

.contact-response-time { margin: -2px 0 0; color: var(--ink-200); font-size: .83rem; }
.contact-response-time--prominent {
  margin: 0;
  padding: 11px 14px;
  border-left: 3px solid var(--gold-300);
  border-radius: 8px;
  background: rgba(218, 181, 116, .07);
  color: var(--ink-100);
  font-size: .9rem;
}

/* Cookie and privacy settings */
.cookie-banner[hidden] { display: none !important; }
.cookie-banner {
  position: fixed;
  inset: auto 12px 12px;
  z-index: 200;
  width: min(560px, calc(100% - 24px));
  margin-inline: auto;
  border: 1px solid rgba(218, 181, 116, .32);
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(31, 61, 77, .985), rgba(7, 23, 34, .99));
  box-shadow: 0 16px 42px rgba(0, 0, 0, .38);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.cookie-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
}
.cookie-copy { min-width: 0; }
.cookie-title { margin: 0 0 3px; color: var(--white); font-size: .88rem; line-height: 1.2; }
.cookie-text,
.cookie-necessary { margin: 0; color: var(--ink-200); font-size: .68rem; line-height: 1.38; }
.cookie-necessary { margin-top: 3px; color: var(--muted); font-size: .63rem; }
.cookie-link { color: var(--gold-300); text-underline-offset: 2px; }
.cookie-actions { display: flex; align-items: center; justify-content: flex-end; gap: 6px; }
.cookie-btn {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--gold-300);
  border-radius: 999px;
  background: var(--gold-200);
  color: var(--ink-950);
  font: inherit;
  font-size: .58rem;
  font-weight: 760;
  letter-spacing: .035em;
  text-transform: uppercase;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: center;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.cookie-btn--ghost { background: transparent; color: var(--ink-100); border-color: var(--border); }
.cookie-btn:hover { transform: translateY(-1px); background: var(--gold-300); }
.cookie-btn--ghost:hover { background: rgba(255, 255, 255, .07); border-color: var(--gold-300); }
.cookie-btn:focus-visible,
.footer-cookie-settings:focus-visible { outline: 2px solid var(--gold-200); outline-offset: 3px; }
.footer-meta-actions { display: inline-flex; align-items: center; flex-wrap: wrap; justify-content: flex-end; gap: 15px; }
.footer-cookie-settings {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand-slate);
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.footer-cookie-settings:hover { color: var(--brand-navy); }

/* Legal and utility content */
.content a:not(.cta-link),
.text-flow a:not(.cta-link),
.faq-wrap a:not(.cta-link),
.section .flow a:not(.cta-link) { color: var(--gold-300); text-underline-offset: 4px; }
.legal-content address,
.text-flow address { color: var(--muted); font-style: normal; }
.small { font-size: .86rem; color: var(--muted); }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.back-wrap { max-width: var(--content); margin: 17px auto; }
.back-btn { border: 0; background: transparent; color: var(--gold-300); cursor: pointer; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--brand-border);
  background: linear-gradient(180deg, var(--brand-surface), var(--brand-surface-alt));
  color: var(--brand-navy);
}
.footer-shell {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 46px;
  padding: 66px 0 50px;
}
.footer-brand img { width: auto; height: 88px; }
.footer-brand p { max-width: 350px; color: var(--brand-slate); }
.site-footer h2 { margin: 0 0 17px; color: var(--brand-navy); font-size: .69rem; letter-spacing: .16em; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin: 8px 0; }
.site-footer a { color: var(--brand-slate); text-decoration: none; }
.site-footer a:hover { color: var(--brand-navy); }
.social-links { display: flex; gap: 16px; margin-top: 18px; }
.footer-contact { margin-top: 21px; }
.phone-contact-number { display: inline; white-space: nowrap; }
.phone-cost-note { display: block; margin-top: 2px; color: var(--white); font-size: .72rem; line-height: 1.35; }
.footer-complaints { margin: 17px 0 0; }
.site-footer .footer-complaints a { display: inline-flex; align-items: center; min-height: 38px; padding: 7px 12px; border: 1px solid var(--brand-navy); border-radius: 999px; color: var(--brand-navy); font-size: .72rem; font-weight: 800; letter-spacing: .04em; }
.site-footer .footer-complaints a:hover { background: var(--brand-navy); color: var(--white); }
.footer-bottom {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 0 26px;
  border-top: 1px solid var(--brand-border);
  color: var(--brand-slate);
  font-size: .77rem;
}

/* Company representative */
.representative-profile {
  width: min(100%, 190px);
  margin: 18px 0 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}
.representative-profile img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1122 / 1402;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(214, 178, 109, .42);
  box-shadow: 0 16px 34px rgba(2, 10, 16, .28);
}
.representative-profile figcaption {
  color: var(--gold-200);
  font-size: .82rem;
  font-weight: 760;
  letter-spacing: .045em;
  line-height: 1.35;
}
.fact-list dd .representative-profile {
  width: min(100%, 150px);
  margin: 0;
}
.quote .representative-profile {
  width: min(100%, 210px);
  margin-top: 22px;
}
@media (max-width: 600px) {
  .representative-profile { width: min(100%, 160px); }
  .fact-list dd .representative-profile { width: min(100%, 138px); }
  .quote .representative-profile { width: min(100%, 178px); }
}

/* Floating actions */
.floating-actions { position: fixed; right: 20px; bottom: 20px; z-index: 80; display: flex; gap: 9px; }
.floating-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 17px;
  border-radius: 999px;
  text-decoration: none;
  font-size: .69rem;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .24);
}
.floating-contact { background: rgba(17, 43, 58, .94); border: 1px solid var(--border); color: var(--white); }
.floating-whatsapp { background: var(--gold-200); color: var(--ink-950); }

/* Responsive */
@media (max-width: 1240px) {
  .desktop-nav { display: none; }
  .header-shell { grid-template-columns: 208px minmax(0, 1fr) auto; }
  .header-actions > .language-switch { display: none; }
  .language-switch--mobile {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 2;
    justify-self: end;
  }
  .header-actions { justify-content: end; }
  .menu-toggle { display: block; }
}
@media (max-width: 900px) {
  .feature-panel,
  .contact-layout { grid-template-columns: 1fr; }
  .feature-panel__image { max-height: 430px; }
  .image-gallery--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid,
  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  :root { --header-height: 88px; }
  body {
    background:
      linear-gradient(180deg, rgba(7, 19, 28, .36), rgba(7, 18, 27, .86) 78%),
      url("/assets/images/backgroundm.webp?v=20260810-lcp-opt") center / cover scroll no-repeat;
  }
  .header-shell,
  .site-main,
  .footer-shell,
  .footer-bottom { width: min(100% - 28px, var(--container)); }
  .header-shell { grid-template-columns: 166px minmax(0, 1fr) auto; gap: 12px; }
  .brand { width: 160px; height: 76px; }
  .brand img { height: 72px; }
  .header-contact { display: none; }
  .language-switch a { min-width: 27px; min-height: 27px; }
  .site-main { padding-top: 34px; padding-bottom: 84px; }
  .text-intro,
  .content,
  .faq-wrap,
  .contact-premium,
  .hero--compact,
  .text-flow,
  .section .container.flow { padding: 28px 23px; border-radius: var(--radius-md); }
  .contact-form {
    width: calc(100% + 38px);
    max-width: calc(100% + 38px);
    margin-inline: -19px;
  }
  .text-intro h1,
  .content > h1,
  .faq-wrap > h1,
  .contact-premium h1,
  .hero-copy h1 { font-size: clamp(2.1rem, 8vw, 3rem); }
  .home-hero { min-height: auto; padding: 0 0 44px; }
  .home-hero__content {
    max-width: 100%;
    padding: 32px 24px;
    border-radius: var(--radius-md);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .home-hero h1 { font-size: clamp(2.2rem, 9vw, 3.15rem); }
  .home-hero__lead { font-size: 1rem; }
  .home-hero__content > p:not(.eyebrow):not(.home-hero__lead) { font-size: .94rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .hero-actions a { width: 100%; min-width: 0; padding: 12px 16px; font-size: .65rem; line-height: 1.25; white-space: normal; overflow-wrap: anywhere; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .fact-list { grid-template-columns: 1fr; }
  .fact-list > div:nth-child(odd) { border-right: 0; }
  .fact-list--compact > div:last-child:nth-child(odd) { grid-column: auto; }
  .footer-shell { grid-template-columns: 1fr 1fr; gap: 32px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .floating-actions { right: 13px; bottom: 13px; }
  .floating-actions a { min-height: 43px; padding: 0 14px; }
  .breadcrumbs { width: min(100% - 28px, var(--content)); }
}
@media (max-width: 600px) {
  .mobile-menu__inner {
    width: min(420px, 94vw);
    padding-left: 24px;
    padding-right: calc(24px + env(safe-area-inset-right));
  }
  .header-shell {
    width: min(100% - 20px, var(--container));
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
  }
  .brand {
    width: 118px;
    height: 72px;
    min-width: 0;
  }
  .brand img { height: 66px; }
  .header-actions { gap: 6px; }
  .language-switch--mobile {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    gap: 0;
    padding: 2px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(7, 19, 28, .10);
  }
  .language-switch a {
    min-width: 25px;
    min-height: 34px;
    font-size: .58rem;
    letter-spacing: .025em;
  }
  .menu-toggle {
    width: 40px;
    height: 40px;
    padding: 9px;
  }
  .service-grid,
  .cards-grid,
  .image-gallery--four,
  .image-gallery--two { grid-template-columns: 1fr; }
  .text-flow--media { padding: 0; }
  .content-thumb { width: 100%; }
  .footer-shell { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .floating-contact { display: none !important; }
}

@media (max-width: 820px) {
  .cookie-banner { inset: auto 8px 8px; width: calc(100% - 16px); }
  .cookie-inner { gap: 9px; padding: 10px; }
  .cookie-text { font-size: .66rem; }
  .cookie-necessary { font-size: .61rem; }
  .cookie-btn { min-height: 32px; padding-inline: 8px; font-size: .54rem; }
}
@media (max-width: 360px) {
  .header-shell { gap: 4px; }
  .brand { width: 92px; }
  .brand img { height: 56px; }
  .header-actions { gap: 3px; }
  .language-switch--mobile { padding: 1px; }
  .language-switch--mobile a { min-width: 21px; min-height: 30px; font-size: .5rem; }
  .menu-toggle { width: 36px; height: 36px; padding: 8px; }
}
@media (max-width: 520px) {
  .cookie-inner { grid-template-columns: 1fr; }
  .cookie-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); justify-content: stretch; width: 100%; }
  .cookie-btn { width: 100%; min-width: 0; }
  .footer-meta-actions { align-items: flex-start; justify-content: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Owner guides */
.guide-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:26px; }
.guide-grid > article { min-height: 270px; }
.guide-grid h2 { margin:0 0 12px; color:var(--white); font-family:Georgia,"Times New Roman",serif; font-size:1.42rem; font-weight:500; line-height:1.22; }
.guide-grid p { color:var(--muted); }
.guide-evidence { border-color: rgba(216,184,120,.32); }
.checklist-list { list-style:none !important; padding-left:0 !important; }
.checklist-list li { position:relative; padding-left:34px !important; }
.checklist-list li::before { content:"□" !important; position:absolute; left:0; top:-1px; width:auto !important; height:auto !important; border:0 !important; background:none !important; color:var(--gold-300); font-size:1.18rem; }
.guide-sources ol { padding-left:22px; color:var(--muted); }
.guide-sources li { margin:.55rem 0; }
.guide-updated { font-size:.86rem; color:var(--muted); }
@media (max-width: 720px) { .guide-actions > a { width:100%; } }

/* Brand social icons and footer-safe floating actions */
.social-links {
  align-items: center;
  gap: 11px;
}
.social-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: transform .18s ease, opacity .18s ease;
}
.social-icon img {
  display: block;
  width: 32px;
  height: 32px;
}
.social-icon:hover { transform: translateY(-2px); opacity: .9; }
.social-icon:focus-visible { outline: 2px solid var(--gold-300); outline-offset: 3px; }

.floating-whatsapp {
  background: rgba(255, 255, 255, .97);
  color: var(--brand-navy);
  border: 1px solid rgba(37, 211, 102, .34);
  gap: 8px;
}
.floating-whatsapp img {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}
.floating-whatsapp:hover {
  background: #fff;
  border-color: #25D366;
}
.floating-actions {
  transition: bottom .22s ease, transform .18s ease;
}
html.footer-in-view .floating-actions {
  bottom: var(--floating-footer-offset, 82px);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

/* Homepage service finder */
.service-finder {
  width: min(1120px, 100%);
  margin: 10px auto 46px;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
}
.service-finder__intro {
  padding: 30px 6px 0 0;
}
.service-finder__intro h2 {
  margin: 0 0 14px;
  max-width: 16ch;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.1vw, 3.55rem);
  font-weight: 500;
  line-height: 1.04;
}
.service-finder__intro > p:last-child { max-width: 52ch; color: var(--muted); }
.service-finder__panel {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(16, 38, 53, .94), rgba(7, 19, 28, .91));
  box-shadow: var(--shadow-soft);
}
.service-finder__progress {
  min-height: 24px;
  margin-bottom: 17px;
  color: var(--gold-300);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.service-finder__step h3,
.service-finder__result h3 {
  margin: 0 0 21px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.2vw, 2.05rem);
  font-weight: 500;
  line-height: 1.18;
}
.service-finder__choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}
.service-finder__choices button {
  min-height: 76px;
  padding: 15px 17px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .045);
  color: var(--ink-100);
  text-align: left;
  line-height: 1.35;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.service-finder__choices button:hover,
.service-finder__choices button[aria-pressed="true"] {
  border-color: var(--gold-300);
  background: rgba(216, 184, 120, .11);
  transform: translateY(-1px);
}
.service-finder__controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}
.service-finder__back,
.service-finder__reset {
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--gold-200);
  font-size: .72rem;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}
.service-finder__result > p:not(.eyebrow):not(.service-finder__note) { color: var(--muted); }
.service-finder__result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  margin: 22px 0;
}
.service-finder__result-card {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.045);
  text-decoration: none;
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}
.service-finder__result-card:hover {
  border-color: var(--gold-300);
  background: rgba(216,184,120,.08);
  transform: translateY(-1px);
}
.service-finder__result-card strong { color: var(--white); font-size: 1.03rem; }
.service-finder__result-card > span:not(.service-finder__result-link) { color: var(--muted); font-size: .88rem; line-height: 1.48; }
.service-finder__result-link { margin-top: auto; color: var(--gold-300); font-size: .75rem; font-weight: 760; }
.service-finder__note { margin: 0 0 20px; color: var(--gold-200); font-size: .9rem; }
.service-finder__noscript { margin-top: 20px; color: var(--muted); }
@media (max-width: 900px) {
  .service-finder { grid-template-columns: 1fr; gap: 18px; }
  .service-finder__intro { padding: 0; }
  .service-finder__intro h2 { max-width: 19ch; }
}
@media (max-width: 600px) {
  .service-finder { margin-bottom: 34px; }
  .service-finder__panel { padding: 22px 18px; border-radius: var(--radius-md); }
  .service-finder__choices,
  .service-finder__result-grid { grid-template-columns: 1fr; }
  .service-finder__choices button { min-height: 64px; }
  .service-finder__result-card { min-height: 0; }
}

.service-finder__result-card[hidden] { display: none !important; }

/* Blog */
.blog-intro { margin-bottom: 34px; }
.blog-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.blog-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.04);
}
.blog-card__image { display: block; aspect-ratio: 16/9; overflow: hidden; }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.blog-card:hover .blog-card__image img { transform: scale(1.02); }
.blog-card__body { padding: 22px; }
.blog-card__body h2 { margin: 5px 0 12px; font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.18; }
.blog-card__body h2 a { color: var(--white); text-decoration: none; }
.blog-card__body > p:not(.eyebrow):not(.blog-meta) { color: var(--muted); }
.blog-meta { color: var(--muted); font-size: .84rem; }
.blog-meta a { color: var(--gold-200); }
.blog-article { padding-bottom: 58px; }
.blog-article__header { margin-bottom: 28px; }
.blog-hero,
.blog-inline-image {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto 36px;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.blog-hero img,
.blog-inline-image img { display: block; width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; }
.blog-inline-image { margin-top: 12px; margin-bottom: 42px; }
.blog-copy { max-width: 860px; }
.blog-copy h2 { margin-top: 0; }
.blog-copy h3 { margin: 24px 0 7px; color: var(--white); font-size: 1.08rem; }
.blog-copy p + p { margin-top: 13px; }
.blog-limits ul { columns: 2; column-gap: 36px; }
.blog-limits li { break-inside: avoid; }
.blog-faq h3 + p { margin-top: 0; }
.blog-cta { padding-top: 4px; }
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; max-width: 720px; }
}
@media (max-width: 600px) {
  .blog-grid { width: min(100% - 28px, 720px); gap: 16px; margin-bottom: 46px; }
  .blog-card__body { padding: 18px; }
  .blog-hero, .blog-inline-image { width: min(100% - 28px, 960px); border-radius: var(--radius-sm); }
  .blog-limits ul { columns: 1; }
}


/* AI content transparency */
.ai-image-wrap { position: relative; display: block; width: 100%; }
.ai-image-wrap > img { display: block; }
.ai-image-note {
  position: absolute; right: 8px; bottom: 8px; z-index: 2;
  padding: 4px 7px; border-radius: 6px;
  background: rgba(6, 15, 22, .82); color: #fff;
  font-size: .68rem; font-weight: 600; line-height: 1.15; letter-spacing: .01em;
  box-shadow: 0 1px 4px rgba(0,0,0,.25);
}
.image-gallery > .ai-image-wrap { min-width: 0; }
.feature-panel__image > .ai-image-wrap { height: 100%; }
.ai-background-note {
  width: min(100% - 32px, 1180px); margin: 10px auto 0;
  color: var(--muted); font-size: .72rem; line-height: 1.3; text-align: right;
}
.ai-editorial-note { margin-top: .65rem; color: var(--muted); font-size: .88rem; line-height: 1.5; }
@media (max-width: 640px) {
  .ai-image-note { right: 6px; bottom: 6px; font-size: .64rem; padding: 3px 6px; }
  .ai-background-note { width: min(100% - 24px, 1180px); font-size: .68rem; }
}

/* Service Finder 2.0 */
.service-finder__hint {
  margin: -10px 0 16px;
  color: var(--muted);
  font-size: .86rem;
}
.service-finder__continue {
  margin-top: 16px;
}
.service-finder__continue:disabled {
  opacity: .46;
  cursor: not-allowed;
  transform: none;
}
.service-finder__summary {
  margin: 20px 0 4px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.035);
}
.service-finder__summary > strong {
  display: block;
  margin-bottom: 11px;
  color: var(--white);
  font-size: .96rem;
}
.service-finder__summary dl { margin: 0; }
.service-finder__summary dl > div {
  display: grid;
  grid-template-columns: minmax(110px, .42fr) minmax(0, 1fr);
  gap: 14px;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.service-finder__summary dl > div:first-child { border-top: 0; }
.service-finder__summary dt {
  color: var(--gold-200);
  font-size: .76rem;
  font-weight: 760;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.service-finder__summary dd {
  margin: 0;
  color: var(--ink-100);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

/* Finder hand-off on contact page */
.finder-handoff {
  margin: 0 0 22px;
  padding: 18px 20px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: rgba(216,184,120,.075);
}
.finder-handoff__title {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
}
.finder-handoff dl { margin: 0; }
.finder-handoff dl > div {
  display: grid;
  grid-template-columns: minmax(110px, .36fr) minmax(0, 1fr);
  gap: 12px;
  padding: 6px 0;
}
.finder-handoff dt {
  color: var(--gold-200);
  font-size: .75rem;
  font-weight: 760;
}
.finder-handoff dd {
  margin: 0;
  color: var(--ink-100);
  overflow-wrap: anywhere;
}

/* Enquiry thank-you page */
.thank-you-page {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto 72px;
}
.thank-you-page__hero {
  max-width: 820px;
  margin: 14px auto 34px;
  text-align: center;
}
.thank-you-page__hero h1 {
  margin: 8px auto 18px;
  max-width: 18ch;
}
.thank-you-page__hero .lead {
  max-width: 68ch;
  margin-inline: auto;
}
.thank-you-page__summary,
.thank-you-page__next,
.thank-you-page__reassurance {
  margin: 0 auto 24px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(9, 24, 34, .72);
}
.thank-you-page__summary h2,
.thank-you-page__next h2 {
  margin-top: 0;
}
.thank-you-page__summary dl { margin: 0; }
.thank-you-page__summary dl > div {
  display: grid;
  grid-template-columns: minmax(150px, .38fr) minmax(0, 1fr);
  gap: 18px;
  padding: 11px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.thank-you-page__summary dl > div:first-child { border-top: 0; }
.thank-you-page__summary dt {
  color: var(--gold-200);
  font-weight: 760;
}
.thank-you-page__summary dd {
  margin: 0;
  color: var(--ink-100);
  overflow-wrap: anywhere;
}
.thank-you-page__steps {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.thank-you-page__steps article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 17px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.thank-you-page__steps article:first-child { border-top: 0; }
.thank-you-page__steps article > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--gold-300);
  border-radius: 50%;
  color: var(--gold-200);
  font-weight: 800;
}
.thank-you-page__steps h3 {
  margin: 0 0 5px;
  color: var(--white);
  font-size: 1.03rem;
}
.thank-you-page__steps p,
.thank-you-page__reassurance p {
  margin: 0;
  color: var(--muted);
}
.thank-you-page__reassurance {
  border-color: var(--border-strong);
  background: rgba(216,184,120,.065);
}
.thank-you-page__reassurance strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-size: 1.05rem;
}
.thank-you-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}
@media (max-width: 600px) {
  .service-finder__summary dl > div,
  .finder-handoff dl > div,
  .thank-you-page__summary dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .thank-you-page {
    width: min(100% - 28px, 980px);
    margin-bottom: 48px;
  }
  .thank-you-page__hero { text-align: left; }
  .thank-you-page__hero h1 { max-width: none; margin-inline: 0; }
  .thank-you-page__actions { display: grid; grid-template-columns: 1fr; }
  .thank-you-page__actions a { width: 100%; }
}

/* PDF download consent gate */
.pdf-consent-modal[hidden] { display: none !important; }
.pdf-consent-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 20px;
}
.pdf-consent-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 12, 18, .72);
  backdrop-filter: blur(3px);
}
.pdf-consent-modal__panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: 22px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: rgba(9, 24, 34, .98);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .42);
}
.pdf-consent-modal__panel h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 1.28rem;
}
.pdf-consent-modal__panel p {
  margin: 0;
  color: var(--ink-200);
  line-height: 1.55;
}
.pdf-consent-modal__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}
.pdf-consent-modal__actions button {
  min-height: 42px;
}
.pdf-consent-modal__settings {
  border: 0;
  cursor: pointer;
}
html.pdf-consent-modal-visible { overflow: hidden; }
@media (max-width: 560px) {
  .pdf-consent-modal { padding: 14px; }
  .pdf-consent-modal__panel { padding: 18px; }
  .pdf-consent-modal__actions { display: grid; grid-template-columns: 1fr; }
  .pdf-consent-modal__actions button { width: 100%; }
}
