/* Belle Mead Painting - site styles
   Brand palette taken from the company logo: near black, red, white. */

:root {
  --ink: #14171c;
  --ink-soft: #2b313b;
  --body: #3d4550;
  --muted: #6b7480;
  --red: #c8102e;
  --red-dark: #a20d25;
  --red-light: #fdeff1;
  --bg: #ffffff;
  --bg-soft: #f4f6f8;
  --bg-dark: #14171c;
  --line: #e2e6ea;
  --line-strong: #cdd4dc;

  /* Emerald for primary CTAs and confirmation marks. Red stays the brand
     accent, but filled action buttons should not read as warnings. */
  --emerald: #047857;
  --emerald-dark: #065f46;
  --emerald-light: #e6f6ee;
  --emerald-bright: #34d399;

  /* Notice panels use this cool slate instead of the brand red, which made
     ordinary helpful asides look like error messages. */
  --info: #1d4e89;
  --info-light: #eef4fb;
  --info-line: #cfe0f2;

  --wrap: 1140px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(20, 23, 28, .06), 0 2px 8px rgba(20, 23, 28, .05);
  --shadow-md: 0 10px 30px rgba(20, 23, 28, .1);
  --shadow-lg: 0 24px 60px rgba(20, 23, 28, .18);

  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  /* Single source for the page side gutter, so anything that has to line up
     with .wrap content can reuse it instead of hard coding a value. */
  --gutter: 26px;
  --header-h: 92px;
  --bar-h: 0px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

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

/* A <picture> is an inline wrapper by default, so it has to be told to fill
   any container that sets its own aspect ratio or absolute size. */
.hero-media picture,
.card-media picture,
.gallery-item picture { display: block; width: 100%; height: 100%; }

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2rem, 1.35rem + 2.9vw, 3.35rem); }
h2 { font-size: clamp(1.6rem, 1.25rem + 1.6vw, 2.35rem); }
h3 { font-size: clamp(1.14rem, 1.05rem + .45vw, 1.35rem); letter-spacing: -.01em; }
h4 { font-size: 1.02rem; letter-spacing: 0; }

p { margin: 0 0 1.1em; }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }

a { color: var(--red-dark); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--red); }

strong, b { color: var(--ink-soft); font-weight: 700; }

hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 10px 10px;
  font-weight: 700;
  text-decoration: none;
  transition: top .15s ease;
}
.skip:focus { top: 0; color: #fff; }

/* ---------- Layout helpers ---------- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap-narrow { max-width: 760px; }

.section { padding: clamp(3rem, 5vw, 5rem) 0; }
.section-tight { padding: clamp(2.25rem, 3.5vw, 3.25rem) 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--bg-dark); color: #cfd5dd; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark strong { color: #fff; }

.eyebrow {
  display: block;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .75rem;
}
.section-dark .eyebrow { color: #ff5d75; }

.lead { font-size: clamp(1.06rem, 1rem + .35vw, 1.2rem); color: var(--ink-soft); }
.section-dark .lead, .cta-band .lead { color: #cfd5dd; }

.section-head { max-width: 720px; margin-bottom: 2.25rem; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  min-height: 52px;
  padding: 0 1.4em;
  border: 2px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, transform .12s ease, box-shadow .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn svg { flex: none; width: 19px; height: 19px; }

.btn-primary {
  background: var(--emerald);
  border-color: var(--emerald);
  color: #fff;
  box-shadow: 0 6px 18px rgba(4, 120, 87, .28);
}
.btn-primary:hover { background: var(--emerald-dark); border-color: var(--emerald-dark); color: #fff; }

.btn-dark { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; border-color: #000; color: #fff; }

.btn-outline { background: #fff; border-color: var(--line-strong); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); background: #fff; color: var(--ink); }

.btn-light { background: #fff; border-color: #fff; color: var(--ink); }
.btn-light:hover { background: #f0f2f5; border-color: #f0f2f5; color: var(--ink); }

.btn-ghost-light { background: transparent; border-color: rgba(255, 255, 255, .4); color: #fff; }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255, 255, 255, .1); color: #fff; }

.btn-sm { min-height: 44px; font-size: .95rem; padding: 0 1.15em; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.6rem;
}
.btn-row .btn { flex: 1 1 auto; }
@media (min-width: 560px) {
  .btn-row .btn { flex: 0 0 auto; }
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  font-weight: 800;
  text-decoration: none;
  color: var(--red-dark);
}
.link-arrow::after { content: "\203A"; font-size: 1.25em; line-height: 1; transition: transform .15s ease; }
.link-arrow:hover::after { transform: translateX(3px); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; text-decoration: none; }
.brand img { width: 132px; height: 60px; object-fit: contain; }
.brand-text { display: none; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 44px;
  padding: 0 .85rem;
  background: #fff;
  border: 1.5px solid var(--line-strong);
  border-radius: 10px;
  color: var(--ink);
  font: inherit;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
}
.nav-toggle-bars { display: grid; gap: 4px; width: 17px; }
.nav-toggle-bars span { height: 2px; background: var(--ink); border-radius: 2px; }

.nav { display: none; }
.nav ul { display: flex; align-items: center; gap: .15rem; margin: 0; padding: 0; list-style: none; }
.nav a {
  display: block;
  padding: .5rem .62rem;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.nav a:hover { background: var(--bg-soft); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--red); box-shadow: inset 0 -2px 0 var(--red); border-radius: 8px 8px 0 0; }

.header-cta { display: none; }

@media (min-width: 1020px) {
  :root { --header-h: 100px; }
  .nav, .header-cta { display: block; }
  .nav-toggle { display: none; }
  .brand img { width: 145px; height: 66px; }
}

/* Mobile drop panel */
.nav-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
}
.nav-panel.is-open { display: block; }
.nav-panel ul { margin: 0; padding: .5rem 0 1rem; list-style: none; }
/* Scoped to the list so the .panel-cta buttons keep their own colours and padding. */
.nav-panel ul a {
  display: block;
  padding: .8rem .2rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
}
.nav-panel ul a[aria-current="page"] { color: var(--red); }
.nav-panel .panel-cta { display: grid; gap: .6rem; padding: 1rem 0 1.25rem; }
@media (min-width: 1020px) {
  .nav-panel { display: none !important; }
}

/* ---------- Hero ---------- */

.hero { position: relative; background: var(--bg-dark); color: #e8ebef; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero .hero-media img { object-position: 48% 42%; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10, 12, 15, .72) 0%, rgba(10, 12, 15, .88) 34%, rgba(10, 12, 15, .96) 100%);
}
@media (min-width: 860px) {
  .hero .hero-media img { object-position: 42% 40%; }
  .hero-media::after {
    background:
      linear-gradient(to right, rgba(10, 12, 15, .95) 0%, rgba(10, 12, 15, .84) 42%, rgba(10, 12, 15, .42) 78%, rgba(10, 12, 15, .3) 100%);
  }
}

/* padding-block, not the padding shorthand: these sit on .wrap and the
   shorthand's horizontal value would cancel the page gutter. */
.hero-inner { position: relative; padding-block: clamp(2.25rem, 6vw, 6.5rem) clamp(2.5rem, 4vw, 5rem); }
.hero-copy { max-width: 620px; }
.hero h1 { color: #fff; text-wrap: balance; text-shadow: 0 1px 18px rgba(8, 10, 13, .55); }

/* The location is emphasised with a red underline mark rather than red text,
   which kept reading as an error message. Clone the decoration so the mark
   follows the phrase across line breaks. */
.hero h1 .accent {
  color: #fff;
  padding-bottom: .1em;
  background-image: linear-gradient(to top, var(--red) 0 .11em, transparent .11em);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hero-sub { font-size: clamp(1.06rem, 1rem + .4vw, 1.24rem); color: #dae0e7; max-width: 34em; text-shadow: 0 1px 14px rgba(8, 10, 13, .6); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .5rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  padding: .34rem .7rem;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  color: #e8ebef;
  font-size: .84rem;
  font-weight: 700;
}
.hero-trust svg { width: 14px; height: 14px; flex: none; color: var(--emerald-bright); }

.hero-reviews {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  margin: 0 0 1.5rem;
  padding: .45rem .85rem .45rem .45rem;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #e8ebef;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.hero-reviews:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .35);
  color: #fff;
  transform: translateY(-1px);
}
.hero-reviews:focus-visible {
  outline-color: #fff;
}

.hero-reviews-faces {
  display: flex;
  align-items: center;
  flex: none;
}
.hero-reviews-faces picture,
.hero-reviews-faces img,
.hero-reviews-initial {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(20, 23, 28, .85);
  box-sizing: border-box;
}
.hero-reviews-faces picture,
.hero-reviews-initial {
  margin-left: -.55rem;
}
.hero-reviews-faces picture:first-child,
.hero-reviews-faces > :first-child {
  margin-left: 0;
}
.hero-reviews-faces img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #2b313b;
}
.hero-reviews-initial {
  display: grid;
  place-items: center;
  background: var(--face, #2b313b);
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .03em;
}

.hero-reviews-copy {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  min-width: 0;
  padding-right: .2rem;
}
.hero-reviews-stars {
  display: inline-flex;
  gap: .08rem;
  color: #f5c518;
  line-height: 1;
}
.hero-reviews-stars svg { display: block; }
.hero-reviews-text {
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.25;
  color: #dae0e7;
}
.hero-reviews:hover .hero-reviews-text { color: #fff; }
.hero-reviews-text strong {
  color: #fff;
  font-weight: 800;
  letter-spacing: -.02em;
}

@media (max-width: 420px) {
  .hero-reviews {
    width: 100%;
    border-radius: 14px;
    padding: .55rem .7rem .55rem .55rem;
  }
}

.hero-note { margin-top: 1.1rem; font-size: .92rem; color: #a8b1bd; }
.hero-note a { color: #fff; }

/* Slim page header for inner pages */
.page-hero { position: relative; background: var(--bg-dark); color: #cfd5dd; overflow: hidden; }
.page-hero .hero-media::after {
  background: linear-gradient(to top, rgba(10, 12, 15, .93) 8%, rgba(10, 12, 15, .74) 62%, rgba(10, 12, 15, .5) 100%);
}
.page-hero-inner { position: relative; padding-block: clamp(2.5rem, 4.5vw, 4.25rem); }
.page-hero h1 { color: #fff; margin-bottom: .35em; text-shadow: 0 1px 18px rgba(8, 10, 13, .6); }
.page-hero .lead { color: #dae0e7; max-width: 46em; text-shadow: 0 1px 14px rgba(8, 10, 13, .65); }

.crumbs { margin: 0 0 1rem; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: .3rem; font-size: .86rem; color: #98a1ad; }
.crumbs li::after { content: "/"; margin-left: .4rem; color: #5c6570; }
.crumbs li:last-child::after { content: none; }
.crumbs a { color: #cfd5dd; text-decoration: none; font-weight: 600; }
.crumbs a:hover { color: #fff; text-decoration: underline; }

/* ---------- Cards and grids ---------- */

.grid { display: grid; gap: 1.15rem; }
.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
@media (min-width: 560px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.card-body { padding: 1.25rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: .4rem; }
.card-body p { font-size: .98rem; }
.card-body .link-arrow { margin-top: auto; padding-top: .9rem; }
.card-media { aspect-ratio: 16 / 10; background: var(--bg-soft); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }

a.card { text-decoration: none; color: inherit; }
a.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--line-strong); }
a.card:hover h3 { color: var(--red-dark); }

.tile {
  padding: 1.35rem 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.tile h3 { display: flex; align-items: center; gap: .55rem; margin-bottom: .45rem; }
.tile p { font-size: .98rem; margin-bottom: 0; }
.section-dark .tile { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .12); box-shadow: none; }

.icon-badge {
  display: grid;
  place-items: center;
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--red-light);
  color: var(--red-dark);
}
.icon-badge svg { width: 21px; height: 21px; }
.section-dark .icon-badge { background: rgba(255, 93, 117, .16); color: #ff8496; }

/* ---------- Split media block ---------- */

.split { display: grid; gap: clamp(1.6rem, 3vw, 3rem); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split-media-first .split-media { order: -1; }
}
.split-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.split-media figcaption { margin-top: .7rem; font-size: .87rem; color: var(--muted); }
.split-media { margin: 0; }

/* ---------- Checklists ---------- */

.check-list { margin: 0; padding: 0; list-style: none; display: grid; gap: .6rem; }
.check-list.two-col { grid-template-columns: 1fr; }
@media (min-width: 620px) {
  .check-list.two-col { grid-template-columns: 1fr 1fr; gap: .6rem 1.5rem; }
}
.check-list li { position: relative; padding-left: 1.85rem; font-size: .99rem; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--emerald-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23047857' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / .72rem no-repeat;
}
.section-dark .check-list li::before {
  background-color: rgba(52, 211, 153, .16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2334d399' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* ---------- Stats / proof strip ---------- */

.proof-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 860px) { .proof-strip { grid-template-columns: repeat(4, 1fr); } }
.proof-strip > div {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  background: #fff;
  padding: 1.15rem 1.2rem;
}
.proof-strip .icon-badge {
  width: 36px;
  height: 36px;
  margin-top: .05rem;
  background: var(--emerald-light);
  color: var(--emerald);
}
.proof-strip .icon-badge svg { width: 18px; height: 18px; }
.proof-strip .proof-copy { min-width: 0; flex: 1; }
.proof-strip dt { font-size: .82rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.proof-strip dd { margin: .25rem 0 0; font-size: clamp(1rem, .92rem + .35vw, 1.15rem); font-weight: 800; color: var(--ink); letter-spacing: -.02em; }

/* ---------- Google reviews ---------- */

.review-score {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 1.1rem 0 0;
  font-size: 1.05rem;
  color: var(--ink);
}
.review-score .stars {
  display: inline-flex;
  gap: .12rem;
  color: #e6a100;
}
.review-score strong { font-size: 1.2rem; letter-spacing: -.02em; }
.review-score-meta { color: var(--muted); font-weight: 600; }

.reviews {
  display: grid;
  gap: 1.75rem 1.5rem;
  margin-bottom: 1.75rem;
}
@media (min-width: 800px) {
  .reviews { grid-template-columns: 1fr 1fr; }
}

.review {
  margin: 0;
  padding: 0 0 0 1.15rem;
  border-left: 3px solid var(--red);
}
.review .stars {
  display: flex;
  gap: .1rem;
  margin-bottom: .65rem;
  color: #e6a100;
}
.review blockquote { margin: 0; }
.review blockquote p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
}
.review figcaption {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-top: 1rem;
}
.review-avatar,
.review-avatar-img {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.review-avatar {
  display: grid;
  place-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.review-avatar-img { object-fit: cover; background: var(--bg-soft); }
.review figcaption picture { display: block; flex: none; }
.review-name {
  display: block;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}
.review-source {
  display: block;
  margin-top: .15rem;
  font-size: .82rem;
  color: var(--muted);
  font-weight: 600;
}

/* Two narrow columns leave too little room for values like the licence
   number, which then break mid-word. Below this width each stat gets a full
   width row with the value set beside its label. */
@media (max-width: 559px) {
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip > div {
    align-items: center;
    padding: .85rem 1.05rem;
  }
  .proof-strip .proof-copy {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
  }
  .proof-strip dd { margin: 0; text-align: right; }
}

/* ---------- Contact cards ---------- */

.contact-cards { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .contact-cards { grid-template-columns: repeat(3, 1fr); } }

.contact-card {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: 1.5rem 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--body);
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--line-strong); color: var(--body); }
.contact-card .icon-badge { width: 44px; height: 44px; margin-bottom: .5rem; }
.contact-card .label { font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.contact-card .value { font-size: 1.22rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; word-break: break-word; }
.contact-card .hint { font-size: .92rem; color: var(--muted); }

/* ---------- CTA band ---------- */

.cta-band { background: var(--bg-dark); color: #cfd5dd; }
.cta-band .cta-inner { padding: clamp(2.5rem, 4vw, 4rem) 0; display: grid; gap: 1.5rem; align-items: center; }
@media (min-width: 900px) { .cta-band .cta-inner { grid-template-columns: 1.15fr .85fr; gap: 3rem; } }
.cta-band h2 { color: #fff; margin-bottom: .4em; }
.cta-band p { margin-bottom: 0; }
.cta-actions { display: grid; gap: .7rem; }
@media (min-width: 480px) { .cta-actions { grid-template-columns: 1fr 1fr; } }
.cta-actions .btn-primary { grid-column: 1 / -1; }

/* ---------- Areas ---------- */

.area-list { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; list-style: none; }
.area-list li {
  padding: .42rem .85rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .93rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.area-list li.is-core { background: var(--ink); border-color: var(--ink); color: #fff; }
.area-list a { color: inherit; text-decoration: none; }
.area-list a:hover { text-decoration: underline; }

/* ---------- FAQ ---------- */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  cursor: pointer;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.01em;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: .18em;
  border-radius: 50%;
  background: var(--bg-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314171c' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / 13px no-repeat;
  transition: transform .18s ease;
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq .faq-body { padding: 0 0 1.3rem; max-width: 68ch; }
.faq .faq-body p { font-size: .99rem; }

/* ---------- Gallery ---------- */

.gallery { display: grid; gap: .75rem; grid-template-columns: 1fr 1fr; }
@media (min-width: 700px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 1000px) { .gallery { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  position: relative;
  display: block;
  margin: 0;
  border: 0;
  padding: 0;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item .caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem .8rem .6rem;
  background: linear-gradient(to top, rgba(10, 12, 15, .82), rgba(10, 12, 15, 0));
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  text-align: left;
  line-height: 1.35;
}
/* Lightbox */
/* The header uses backdrop-filter, which Chrome composites above the overlay
   regardless of z-index, so the header and action bar are hidden while open. */
.lightbox-open { overflow: hidden; }
.lightbox-open .site-header,
.lightbox-open .action-bar { visibility: hidden; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: max(16px, 3vh) 16px;
  background: rgba(8, 10, 13, .93);
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 82vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox figcaption { margin-top: .9rem; color: #d7dce2; font-size: .92rem; text-align: center; }
.lightbox figure { margin: 0; display: grid; justify-items: center; }
.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover { background: rgba(255, 255, 255, .22); }

/* ---------- Callout ---------- */

.callout {
  padding: 1.3rem 1.4rem;
  background: var(--info-light);
  border: 1px solid var(--info-line);
  border-left: 4px solid var(--info);
  border-radius: var(--radius-sm);
}
.callout p { font-size: .99rem; }
.callout h3 { font-size: 1.08rem; margin-bottom: .35rem; }
.callout .link-arrow { color: var(--info); }
.callout .link-arrow:hover { color: #143a68; }

.note-box {
  padding: 1.25rem 1.35rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--bg-dark);
  color: #9aa3af;
  padding: clamp(2.5rem, 4vw, 3.5rem) 0 calc(1.5rem + var(--bar-h));
  font-size: .96rem;
}
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; } }
@media (min-width: 1020px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1.15fr 1fr; gap: 2.25rem; } }
.site-footer h2, .site-footer h3 { color: #fff; font-size: .82rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .9rem; }
.site-footer ul { margin: 0; padding: 0; list-style: none; display: grid; gap: .55rem; }
.site-footer a { color: #cfd5dd; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-brand img { width: 150px; height: 68px; object-fit: contain; margin-bottom: 1rem; }
.footer-brand p { max-width: 34em; }
.footer-contact strong { display: block; color: #fff; font-size: 1.2rem; letter-spacing: -.02em; }
.footer-legal {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  font-size: .87rem;
}
.footer-legal p { margin: 0; }

/* ---------- Sticky mobile action bar ---------- */

.action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, .16);
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -6px 22px rgba(10, 12, 15, .22);
}
.action-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 58px;
  padding: .4rem .3rem;
  background: var(--ink);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .01em;
  text-decoration: none;
}
.action-bar a.is-primary { background: var(--emerald); }
.action-bar a:active { filter: brightness(1.15); }
.action-bar svg { width: 20px; height: 20px; }

@media (min-width: 1020px) {
  .action-bar { display: none; }
}
@media (max-width: 1019px) {
  body { --bar-h: 72px; }
}

/* ---------- Misc ---------- */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.mt-lg { margin-top: 2rem; }
.mt-md { margin-top: 1.25rem; }

.body-copy > h2 { margin-top: 2.25rem; }
.body-copy > h3 { margin-top: 1.75rem; }
.body-copy > *:first-child { margin-top: 0; }

/* ---------- SEO area pages & blog ---------- */

.prose { max-width: 72ch; }
.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.85rem; }
.prose > *:first-child { margin-top: 0; }
.prose ul, .prose ol { margin: 0 0 1.1em; padding-left: 1.25em; }
.prose li { margin-bottom: .4em; }
.prose li::marker { color: var(--emerald); }
.prose a { font-weight: 600; }

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 600;
}

.blog-list { display: grid; gap: 1.25rem; }
.blog-list a.card { color: inherit; text-decoration: none; }
.blog-list .card-body h3 { margin-bottom: .35em; }
.blog-list .card-meta {
  display: block;
  margin-bottom: .65rem;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.area-grid {
  display: grid;
  gap: .75rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 700px) {
  .area-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
.area-grid a {
  display: block;
  padding: 1rem 1.1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.area-grid a:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
  color: var(--red-dark);
}
.area-grid a span {
  display: block;
  margin-top: .2rem;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 500;
}

.related-links {
  display: grid;
  gap: .55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.related-links a { font-weight: 600; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .gallery-item:hover img, a.card:hover { transform: none; }
}

@media print {
  .site-header, .action-bar, .cta-band, .hero-media { display: none !important; }
  body { color: #000; }
}
