:root {
  --charcoal: #20241f;
  --ink: #2b2b25;
  --muted: #697064;
  --paper: #f6f1e7;
  --surface: #fffdf7;
  --sand: #dfd6c6;
  --stone: #ebe4d7;
  --sage: #7d9477;
  --sage-dark: #465445;
  --deep-charcoal: #181a17;
  --warm-brown: #3d2d25;
  --cream: #faf4e9;
  --panel: rgba(255, 253, 247, 0.84);
  --gold: #b68a4b;
  --terracotta: #bb6c4d;
  --line: rgba(43, 43, 37, 0.14);
  --warm-line: rgba(182, 138, 75, 0.18);
  --shadow: 0 24px 60px rgba(32, 28, 24, 0.16);
  --radius: 8px;
  --header-height: 82px;
  --anchor-offset: calc(var(--header-height) + 18px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse at 14% 10%, rgba(182, 138, 75, 0.11), transparent 34%),
    radial-gradient(ellipse at 86% 28%, rgba(125, 148, 119, 0.1), transparent 36%),
    linear-gradient(180deg, #fbf7ee 0%, #f3eadc 48%, #ebe1d2 100%);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .floating-contact {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(177, 138, 76, 0.72);
  outline-offset: 3px;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  isolation: isolate;
  padding: 92px 0;
  scroll-margin-top: 0;
}

.section-offset {
  scroll-margin-top: 0;
  padding-top: calc(var(--header-height) + 70px);
}

.anchor-target {
  scroll-margin-top: 10px;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.has-reveal .reveal-target {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.has-reveal .reveal-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(30, 35, 30, 0.9);
  color: var(--surface);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(30, 35, 30, 0.97);
  box-shadow: 0 14px 40px rgba(24, 22, 20, 0.18);
}

.navbar {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #f5e8d3;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.94rem;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0.93rem;
  color: rgba(255, 253, 248, 0.82);
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #ffffff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 253, 248, 0.26);
  border-radius: var(--radius);
  background: transparent;
  color: var(--surface);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-active span:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(3) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 20px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease,
    border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #c77650);
  color: #fffdf8;
  box-shadow: 0 12px 26px rgba(177, 112, 76, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #9e7438, var(--terracotta));
}

.btn-secondary {
  border-color: rgba(37, 35, 32, 0.22);
  background: rgba(255, 253, 248, 0.72);
  color: var(--charcoal);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(177, 138, 76, 0.5);
  background: var(--surface);
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 999px;
  background: #1f8f4d;
  color: var(--surface);
  padding: 9px 16px 9px 9px;
  font-weight: 800;
  box-shadow: 0 18px 46px rgba(20, 103, 57, 0.28);
  backdrop-filter: blur(14px);
  transition: opacity 160ms ease, transform 160ms ease, background 160ms ease,
    box-shadow 160ms ease;
}

.floating-contact:hover,
.floating-contact:focus-visible {
  transform: translateY(-2px);
  background: #17783f;
  box-shadow: 0 20px 50px rgba(20, 103, 57, 0.34);
}

.floating-contact.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.floating-contact-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: var(--surface);
}

.floating-contact-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  padding-bottom: 70px;
  background: #1b231c;
  color: var(--surface);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(0.96) contrast(1.04);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(23, 31, 24, 0.72), rgba(23, 31, 24, 0.5) 44%, rgba(23, 31, 24, 0.26)),
    linear-gradient(180deg, rgba(12, 14, 12, 0.28), rgba(12, 14, 12, 0.1) 42%, rgba(12, 14, 12, 0.42));
}

.hero::after {
  inset: auto 0 0;
  z-index: 1;
  height: 190px;
  background: linear-gradient(180deg, transparent, rgba(18, 20, 17, 0.34));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 780px);
  align-items: center;
  justify-content: start;
  gap: 0;
  text-align: left;
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e9c99a;
  text-shadow: 0 2px 14px rgba(7, 10, 7, 0.34);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: 5.25rem;
}

.hero h1 {
  text-shadow: 0 3px 24px rgba(7, 10, 7, 0.42);
}

h2 {
  margin-bottom: 18px;
  color: var(--charcoal);
  font-size: 3.25rem;
}

h3 {
  color: var(--charcoal);
  font-size: 1.1rem;
  line-height: 1.35;
}

.hero-subtitle {
  max-width: 660px;
  margin-bottom: 32px;
  color: rgba(255, 253, 248, 0.82);
  font-size: 1.14rem;
  text-shadow: 0 2px 16px rgba(7, 10, 7, 0.36);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero .btn-secondary {
  border-color: rgba(255, 253, 248, 0.28);
  background: rgba(255, 253, 248, 0.08);
  color: var(--surface);
}

.hero .btn-secondary:hover,
.hero .btn-secondary:focus-visible {
  background: rgba(255, 253, 248, 0.14);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(246, 228, 199, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.16), rgba(182, 138, 75, 0.07)),
    rgba(255, 253, 248, 0.04);
  box-shadow:
    0 30px 80px rgba(15, 13, 11, 0.38),
    inset 0 1px 0 rgba(255, 253, 248, 0.12);
  isolation: isolate;
  overflow: hidden;
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(37, 35, 32, 0.08), rgba(37, 35, 32, 0.38)),
    linear-gradient(90deg, rgba(37, 35, 32, 0.18), transparent 48%);
  content: "";
  pointer-events: none;
}

.hero-visual::after {
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: var(--radius);
  content: "";
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.06);
}

.hero-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  width: min(290px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid rgba(246, 228, 199, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(48, 42, 35, 0.86), rgba(33, 29, 25, 0.86)),
    rgba(37, 35, 32, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 42px rgba(15, 13, 11, 0.26);
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note strong {
  margin-bottom: 4px;
  color: #f4dec1;
}

.hero-note span {
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.92rem;
  line-height: 1.5;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow),
.about-copy,
.service-area p:not(.eyebrow),
.contact-info p:not(.eyebrow) {
  color: var(--muted);
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  gap: 48px;
}

.services {
  overflow: hidden;
  background:
    radial-gradient(ellipse at 16% 8%, rgba(182, 138, 75, 0.16), transparent 36%),
    radial-gradient(ellipse at 86% 18%, rgba(187, 108, 77, 0.09), transparent 38%),
    repeating-linear-gradient(90deg, rgba(43, 43, 37, 0.025) 0 1px, transparent 1px 76px),
    linear-gradient(180deg, #fffdf8 0%, #f7f0e5 54%, #efe5d6 100%);
  box-shadow: inset 0 1px rgba(255, 253, 248, 0.5);
  color: var(--ink);
}

.services::before {
  position: absolute;
  inset: -18% -10% auto;
  z-index: 0;
  height: 62%;
  background:
    radial-gradient(ellipse at 24% 44%, rgba(255, 253, 248, 0.76), transparent 46%),
    radial-gradient(ellipse at 78% 10%, rgba(182, 138, 75, 0.1), transparent 42%);
  content: "";
  pointer-events: none;
}

.services h2,
.services h3 {
  color: var(--charcoal);
}

.services .section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.carousel-container {
  position: relative;
  width: 100%;
}

.carousel-btn,
.carousel-dots {
  display: none;
}

.carousel-track {
  will-change: transform;
}

.carousel-slide {
  min-width: 0;
}

.service-card {
  min-height: 360px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 241, 231, 0.9)),
    var(--surface);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.services .service-card {
  border-color: rgba(119, 86, 54, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(246, 238, 224, 0.82)),
    rgba(255, 253, 248, 0.72);
  box-shadow:
    0 18px 42px rgba(74, 53, 37, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.services .service-card:hover {
  border-color: rgba(182, 138, 75, 0.36);
  box-shadow:
    0 24px 52px rgba(74, 53, 37, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(177, 138, 76, 0.36);
  box-shadow: 0 16px 34px rgba(37, 35, 32, 0.09);
}

.service-card-media {
  position: relative;
  height: 178px;
  overflow: hidden;
}

.service-card-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(34, 49, 38, 0.22));
  content: "";
  pointer-events: none;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 300ms ease, filter 300ms ease;
}

.service-card-media img.image-position-lower {
  object-position: center 68%;
}

.service-card:hover .service-card-media img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.04);
}

.service-card-body {
  padding: 20px;
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 30px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(183, 108, 77, 0.11);
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.services .service-number {
  background: rgba(187, 108, 77, 0.12);
  color: var(--terracotta);
}

.services .service-card p {
  color: var(--muted);
}

.realisations {
  overflow: hidden;
  background:
    radial-gradient(ellipse at 82% 10%, rgba(182, 138, 75, 0.12), transparent 38%),
    radial-gradient(ellipse at 18% 78%, rgba(187, 108, 77, 0.1), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 253, 248, 0.022) 0 1px, transparent 1px 76px),
    linear-gradient(180deg, #20251f 0%, #2a3229 54%, #191d18 100%);
  color: var(--surface);
}

.realisations::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.025), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.12)),
    radial-gradient(ellipse at 50% 0%, rgba(255, 244, 224, 0.08), transparent 52%);
  content: "";
  pointer-events: none;
}

.realisations h2 {
  color: var(--surface);
}

.realisations .eyebrow {
  color: #e9c99a;
}

.realisations .section-heading p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.74);
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 136px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  grid-column: span 3;
  grid-row: span 2;
  margin: 0;
  border: 1px solid rgba(246, 228, 199, 0.17);
  border-radius: var(--radius);
  background: #312922;
  box-shadow:
    0 22px 52px rgba(12, 10, 8, 0.28),
    inset 0 1px 0 rgba(255, 253, 248, 0.08);
  overflow: hidden;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 34%, rgba(37, 35, 32, 0.76)),
    linear-gradient(90deg, rgba(37, 35, 32, 0.18), transparent 44%);
  opacity: 0.82;
  content: "";
  pointer-events: none;
  transition: opacity 180ms ease, background 180ms ease;
}

.gallery-trigger {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  cursor: pointer;
  overflow: hidden;
}

.gallery-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease, filter 300ms ease;
}

.gallery-trigger:focus-visible {
  outline: 3px solid rgba(177, 138, 76, 0.72);
  outline-offset: -6px;
}

.gallery-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  color: var(--surface);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.28;
  pointer-events: none;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.36);
}

.gallery-item:hover::after,
.gallery-item:focus-within::after {
  opacity: 1;
}

.gallery-item:hover .gallery-trigger img,
.gallery-item:focus-within .gallery-trigger img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.06);
}

.gallery-item.gallery-feature {
  grid-column: span 6;
  grid-row: span 3;
}

.gallery-item.wide {
  grid-column: span 6;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-column: span 3;
  grid-row: span 3;
}

.gallery-item.process {
  border-color: rgba(233, 201, 154, 0.28);
}

.about {
  overflow: hidden;
  background:
    radial-gradient(ellipse at 18% 10%, rgba(182, 138, 75, 0.12), transparent 40%),
    radial-gradient(ellipse at 88% 72%, rgba(187, 108, 77, 0.1), transparent 44%),
    repeating-linear-gradient(90deg, rgba(255, 253, 248, 0.02) 0 1px, transparent 1px 82px),
    linear-gradient(135deg, #1c211b 0%, #263026 50%, #34281f 100%);
  color: var(--surface);
}

.about::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.03), transparent 34%, rgba(0, 0, 0, 0.08));
  content: "";
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
  align-items: start;
}

.about h2 {
  color: var(--surface);
}

.about-panel {
  padding: 34px;
  border: 1px solid rgba(246, 228, 199, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.11), rgba(255, 253, 248, 0.055)),
    rgba(37, 35, 32, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 253, 248, 0.08);
}

.about-copy {
  color: rgba(255, 253, 248, 0.78);
  font-size: 1.04rem;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.service-area {
  overflow: hidden;
  background:
    radial-gradient(ellipse at 82% 18%, rgba(32, 36, 31, 0.12), transparent 38%),
    radial-gradient(ellipse at 16% 88%, rgba(182, 138, 75, 0.15), transparent 40%),
    repeating-linear-gradient(90deg, rgba(43, 43, 37, 0.025) 0 1px, transparent 1px 76px),
    linear-gradient(135deg, #fffaf2 0%, #f0e8dc 54%, #e4d8c8 100%);
  box-shadow: inset 0 1px rgba(255, 253, 248, 0.58);
}

.service-area::before {
  position: absolute;
  inset: -12% -10% auto;
  z-index: 0;
  height: 56%;
  background:
    radial-gradient(ellipse at 28% 40%, rgba(255, 253, 248, 0.72), transparent 48%),
    linear-gradient(90deg, rgba(255, 253, 248, 0.2), transparent);
  content: "";
  pointer-events: none;
}

.zone-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(390px, 1.16fr);
  gap: 56px;
  align-items: center;
}

.zone-grid > * {
  min-width: 0;
}

.zone-grid p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 24px;
}

.location-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 22px;
}

.location-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(119, 86, 54, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.86), rgba(247, 238, 224, 0.74)),
    rgba(255, 253, 248, 0.72);
  color: var(--charcoal);
  padding: 7px 13px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
}

.zone-note {
  border-left: 3px solid var(--terracotta);
  padding-left: 16px;
  font-size: 0.95rem;
}

.zone-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-map-shell {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 500px;
  border: 1px solid rgba(119, 86, 54, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.78), rgba(225, 208, 184, 0.84)),
    var(--sand);
  box-shadow:
    0 28px 72px rgba(62, 44, 31, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
  overflow: hidden;
}

.service-map-header {
  position: absolute;
  inset: 18px 18px auto;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(119, 86, 54, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(247, 238, 224, 0.86)),
    rgba(255, 253, 248, 0.9);
  padding: 12px 14px;
  box-shadow: 0 14px 34px rgba(62, 44, 31, 0.13);
  backdrop-filter: blur(12px);
}

.service-map-header span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.service-map-header strong {
  color: var(--charcoal);
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.service-map {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 500px;
  height: 100%;
  background:
    radial-gradient(ellipse at 72% 18%, rgba(182, 138, 75, 0.16), transparent 40%),
    linear-gradient(rgba(70, 62, 52, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 62, 52, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #e5dccf, #f3eadc);
  background-size: cover, 44px 44px, 44px 44px, cover;
}

.service-map .leaflet-control-attribution {
  font-size: 0.68rem;
}

.service-map .leaflet-popup-content-wrapper,
.service-map .leaflet-popup-tip {
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--surface);
}

.service-map .leaflet-popup-content {
  margin: 12px 14px;
  color: rgba(255, 253, 248, 0.82);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.45;
}

.service-map .leaflet-popup-content strong {
  display: block;
  margin-bottom: 3px;
  color: #f4dec1;
}

.service-map-marker {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(183, 108, 77, 0.18);
}

.service-map-marker span {
  width: 16px;
  height: 16px;
  border: 3px solid var(--surface);
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 8px rgba(183, 108, 77, 0.22);
}

.map-fallback {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  display: none;
  margin: 0;
  border: 1px solid rgba(47, 43, 39, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.93);
  color: var(--muted);
  padding: 12px 14px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.google-reviews {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
  margin-top: -6px;
  border: 1px solid rgba(119, 86, 54, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(50, 41, 32, 0.96), rgba(36, 42, 34, 0.94)),
    var(--charcoal);
  box-shadow: 0 22px 54px rgba(62, 44, 31, 0.14);
  color: var(--surface);
  padding: 30px;
}

.google-reviews-header {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.google-reviews-header .eyebrow {
  color: #e2ad86;
}

.google-reviews-header h3 {
  margin: 0;
  color: var(--surface);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.08;
}

.google-rating {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-width: min(100%, 330px);
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.96);
  color: var(--charcoal);
  padding: 14px 16px;
  box-shadow: 0 16px 34px rgba(13, 12, 10, 0.18);
}

.google-rating span span,
.google-rating strong {
  display: block;
}

.google-rating strong {
  font-size: 0.92rem;
  line-height: 1.2;
}

.google-rating span span:last-child {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.google-wordmark {
  color: #4285f4;
  font-size: 1.26rem;
  font-weight: 800;
  letter-spacing: 0;
}

.google-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.google-review-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 250px;
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.96);
  color: var(--charcoal);
  padding: 18px;
  box-shadow: 0 18px 38px rgba(13, 12, 10, 0.18);
}

.review-card-header {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #57704f, #c48a6a);
  color: #fffdf8;
  font-weight: 800;
}

.review-card-header h4 {
  margin: 0 0 2px;
  color: var(--charcoal);
  font-size: 0.98rem;
  line-height: 1.2;
}

.review-card-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.25;
}

.review-source-mark {
  justify-self: end;
  color: #4285f4;
  font-weight: 800;
}

.review-stars {
  color: #f2b600;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.google-review-card > p {
  margin: 0;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.58;
}

.review-visit {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.owner-reply {
  border-left: 3px solid var(--gold);
  background: rgba(199, 166, 107, 0.12);
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.owner-reply strong,
.owner-reply span {
  display: block;
}

.owner-reply strong {
  color: var(--charcoal);
}

.google-reviews-action {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.google-reviews-action .btn {
  min-width: min(100%, 270px);
}

.contact {
  overflow: hidden;
  background:
    radial-gradient(ellipse at 72% 14%, rgba(182, 138, 75, 0.18), transparent 38%),
    radial-gradient(ellipse at 18% 78%, rgba(187, 108, 77, 0.12), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 253, 248, 0.022) 0 1px, transparent 1px 76px),
    linear-gradient(155deg, #1d231d 0%, #283329 54%, #1c1f1b 100%);
  color: var(--surface);
}

.contact::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.035), transparent 28%, rgba(0, 0, 0, 0.12)),
    radial-gradient(ellipse at 72% 46%, rgba(255, 244, 224, 0.08), transparent 44%);
  content: "";
  pointer-events: none;
}

.contact h2 {
  color: var(--surface);
}

.contact .eyebrow {
  color: #e9c99a;
}

.contact-info p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.74);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1fr);
  gap: 58px;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: calc(var(--header-height) + 26px);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.contact-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  min-height: 126px;
  padding: 18px;
  border: 1px solid rgba(119, 86, 54, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.88), rgba(246, 239, 228, 0.82)),
    var(--panel);
  box-shadow:
    0 14px 34px rgba(18, 15, 12, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.contact-card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(183, 108, 77, 0.12);
  color: var(--terracotta);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
}

.contact-card-label {
  display: block;
  margin-bottom: 7px;
  color: var(--terracotta);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card strong,
.contact-card address {
  display: block;
  margin: 0;
  color: var(--charcoal);
  font-style: normal;
  font-weight: 800;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 32px;
  border: 1px solid rgba(246, 228, 199, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 82% 0%, rgba(182, 138, 75, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 239, 228, 0.94)),
    var(--paper);
  box-shadow:
    0 28px 76px rgba(15, 12, 9, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.form-heading {
  margin-bottom: 8px;
}

.form-heading h3 {
  margin-bottom: 6px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
}

.form-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-form label {
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(47, 43, 39, 0.18);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--charcoal) 50%),
    linear-gradient(135deg, var(--charcoal) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% + 1px),
    calc(100% - 15px) calc(50% + 1px);
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 42px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(177, 138, 76, 0.78);
  box-shadow: 0 0 0 4px rgba(177, 138, 76, 0.13);
}

.contact-form .btn {
  width: 100%;
  margin-top: 8px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status.is-visible {
  border: 1px solid rgba(177, 138, 76, 0.22);
  border-radius: var(--radius);
  background: rgba(177, 138, 76, 0.1);
  color: var(--charcoal);
  padding: 12px 14px;
  font-weight: 700;
}

.form-status.is-error {
  border-color: rgba(187, 108, 77, 0.34);
  background: rgba(187, 108, 77, 0.12);
  color: #7b3d28;
}

.site-footer {
  padding: 42px 0;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(182, 138, 75, 0.12), transparent 38%),
    repeating-linear-gradient(90deg, rgba(255, 253, 248, 0.018) 0 1px, transparent 1px 76px),
    linear-gradient(135deg, #171b16 0%, #222b22 54%, #171a16 100%);
  color: rgba(255, 253, 248, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: 40px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 10px;
  color: var(--surface);
  font-size: 1.1rem;
}

.site-footer p {
  margin-bottom: 8px;
}

.site-footer p:last-child {
  margin-bottom: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  background: rgba(22, 20, 18, 0.82);
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(12px);
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox[hidden] {
  display: none;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox-frame {
  width: min(980px, 100%);
  max-height: calc(100vh - 80px);
  margin: 0;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: var(--radius);
  background: var(--charcoal);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.lightbox-frame img {
  width: 100%;
  max-height: calc(100vh - 148px);
  object-fit: contain;
  background: #171512;
}

.lightbox-frame figcaption {
  padding: 14px 18px;
  color: var(--surface);
  font-weight: 800;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 61;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: var(--radius);
  background: rgba(37, 35, 32, 0.9);
  color: var(--surface);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: var(--gold);
}

@media (max-width: 980px) {
  :root {
    --header-height: 74px;
  }

  .section {
    padding: 76px 0;
  }

  h1 {
    font-size: 3.8rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .hero-grid,
  .zone-grid,
  .contact-grid,
  .about-grid,
  .split-heading,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

  .google-reviews {
    margin-top: 0;
  }

  .google-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual,
  .hero-visual img {
    min-height: 420px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 230px;
  }

  .gallery-item,
  .gallery-item.gallery-feature,
  .gallery-item.wide,
  .gallery-item.tall,
  .gallery-item.process {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item.gallery-feature,
  .gallery-item.wide {
    grid-column: span 2;
  }

  .contact-info {
    position: static;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header::before {
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(18, 20, 17, 0.56);
    opacity: 0;
    content: "";
    pointer-events: none;
    transition: opacity 200ms ease;
  }

  body.menu-open .site-header::before {
    opacity: 1;
    pointer-events: auto;
  }

  .brand {
    position: relative;
    z-index: 3;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 4;
  }

  .nav-panel {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 3;
    display: flex;
    width: min(86vw, 350px);
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    border: 0;
    border-left: 1px solid rgba(255, 253, 248, 0.16);
    border-radius: 0;
    padding: calc(var(--header-height) + 28px) 24px 28px;
    background:
      repeating-linear-gradient(0deg, rgba(255, 253, 248, 0.03) 0 1px, transparent 1px 58px),
      linear-gradient(180deg, rgba(31, 36, 31, 0.99), rgba(46, 39, 33, 0.99));
    box-shadow: -22px 0 60px rgba(16, 15, 13, 0.36);
    overflow-y: auto;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(100%);
    transition: transform 240ms ease;
  }

  .nav-panel.is-open {
    transform: translateX(0);
  }

  .nav-links {
    display: grid;
    gap: 0;
  }

  .nav-links a {
    display: block;
    border-bottom: 1px solid rgba(255, 253, 248, 0.11);
    padding: 15px 0;
    color: rgba(255, 253, 248, 0.9);
    font-size: 1.05rem;
    font-weight: 700;
  }

  .nav-cta {
    width: 100%;
    margin-top: 6px;
  }

  .hero {
    min-height: 100svh;
    padding-bottom: 54px;
  }

  .hero-media img {
    object-position: center center;
  }

  .section-offset {
    padding-top: calc(var(--header-height) + 42px);
  }

  .hero-grid {
    gap: 28px;
    text-align: center;
  }

  .hero-content {
    max-width: 610px;
    margin: 0 auto;
  }

  .hero .eyebrow {
    display: inline-flex;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 253, 248, 0.18);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.08);
    padding: 7px 10px;
    font-size: 0.72rem;
    line-height: 1.25;
  }

  h1 {
    max-width: 18ch;
    margin-right: auto;
    margin-left: auto;
    font-size: 2.35rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    margin-right: auto;
    margin-bottom: 24px;
    margin-left: auto;
    font-size: 1rem;
  }

  .btn {
    min-height: 52px;
    padding: 13px 16px;
  }

  .hero-actions,
  .zone-actions {
    flex-direction: column;
  }

  .hero-actions,
  .hero-actions .btn,
  .zone-actions,
  .zone-actions .btn {
    width: 100%;
  }

  .hero-visual {
    width: min(100%, 420px);
    margin: 0 auto;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 310px;
  }

  .hero-note {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 15px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .split-heading {
    gap: 12px;
  }

  .section-heading p:not(.eyebrow) {
    font-size: 0.96rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card {
    min-height: auto;
    padding: 0;
  }

  .service-card-media {
    height: 210px;
  }

  .mobile-carousel {
    overflow: hidden;
    padding-bottom: 34px;
  }

  .mobile-carousel + .mobile-carousel {
    margin-top: 22px;
  }

  .mobile-carousel .carousel-track {
    display: flex !important;
    gap: 0 !important;
    align-items: stretch;
    margin: 0;
    padding: 0;
    touch-action: pan-y;
    transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-carousel .carousel-slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .service-card-carousel .service-card {
    min-height: 430px;
  }

  .service-card-carousel {
    padding-bottom: 66px;
  }

  .gallery-carousel,
  .review-carousel {
    padding-bottom: 66px;
  }

  .carousel-btn {
    position: absolute;
    top: calc(50% - 17px);
    z-index: 4;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 253, 248, 0.4);
    border-radius: 50%;
    background: rgba(32, 36, 31, 0.86);
    color: var(--surface);
    box-shadow: 0 12px 28px rgba(32, 36, 31, 0.22);
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: background 160ms ease, opacity 160ms ease, transform 160ms ease;
  }

  .carousel-btn:hover,
  .carousel-btn:focus-visible {
    background: var(--terracotta);
    transform: translateY(-1px);
  }

  .carousel-btn:disabled {
    opacity: 0.36;
    cursor: not-allowed;
    transform: none;
  }

  .carousel-btn span {
    display: block;
    margin-top: -2px;
    font-size: 1.9rem;
    line-height: 1;
  }

  .carousel-btn-prev {
    left: 10px;
  }

  .carousel-btn-next {
    right: 10px;
  }

  .carousel-dots {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 9px;
  }

  .carousel-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 50%;
    background: rgba(43, 43, 37, 0.24);
    padding: 0;
    cursor: pointer;
    transition: background 160ms ease, transform 160ms ease;
  }

  .carousel-dot.is-active {
    background: var(--terracotta);
    transform: scale(1.28);
  }

  .services .carousel-dot {
    background: rgba(43, 43, 37, 0.24);
  }

  .services .carousel-dot.is-active {
    background: var(--terracotta);
  }

  .service-card-carousel .carousel-btn {
    top: auto;
    bottom: 4px;
  }

  .gallery-carousel .carousel-btn,
  .review-carousel .carousel-btn {
    top: auto;
    bottom: 4px;
  }

  .service-card-carousel .carousel-btn-prev {
    left: calc(50% - 120px);
  }

  .service-card-carousel .carousel-btn-next {
    right: calc(50% - 120px);
  }

  .gallery-carousel .carousel-btn-prev,
  .review-carousel .carousel-btn-prev {
    left: calc(50% - 120px);
  }

  .gallery-carousel .carousel-btn-next,
  .review-carousel .carousel-btn-next {
    right: calc(50% - 120px);
  }

  .service-card-carousel .carousel-dots {
    bottom: 20px;
  }

  .gallery-carousel .carousel-dots,
  .review-carousel .carousel-dots {
    bottom: 20px;
  }

  .gallery-carousel .carousel-dot,
  .review-carousel .carousel-dot {
    background: rgba(255, 253, 248, 0.34);
  }

  .gallery-carousel .carousel-dot.is-active,
  .review-carousel .carousel-dot.is-active {
    background: #e9c99a;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
    margin-right: 0;
    overflow: visible;
    padding: 0;
  }

  .gallery-item {
    grid-column: auto;
    grid-row: auto;
    height: 300px;
  }

  .gallery-item.gallery-feature,
  .gallery-item.wide,
  .gallery-item.tall,
  .gallery-item.process {
    grid-column: auto;
    grid-row: auto;
  }

  .service-map-shell,
  .service-map {
    min-height: 360px;
  }

  .service-map-header {
    inset: 12px 12px auto;
    align-items: flex-start;
  }

  .map-fallback {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .google-reviews {
    padding: 20px;
  }

  .google-reviews-header {
    display: grid;
  }

  .google-rating,
  .google-reviews-action .btn {
    width: 100%;
  }

  .google-review-grid {
    grid-template-columns: 1fr;
  }

  .google-review-card {
    min-height: 360px;
    height: 100%;
  }

  .google-reviews-action {
    width: 100%;
  }

  .contact-cards {
    gap: 0;
    margin-top: 22px;
    border: 1px solid rgba(119, 86, 54, 0.16);
    border-radius: var(--radius);
    background:
      radial-gradient(ellipse at 88% 0%, rgba(182, 138, 75, 0.08), transparent 44%),
      linear-gradient(180deg, rgba(255, 253, 247, 0.94), rgba(246, 239, 228, 0.86)),
      var(--surface);
    box-shadow: 0 18px 42px rgba(18, 15, 12, 0.15);
    overflow: hidden;
  }

  .contact-card {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: auto;
    gap: 12px;
    border: 0;
    border-bottom: 1px solid rgba(43, 43, 37, 0.1);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 15px 14px;
  }

  .contact-card:last-child {
    border-bottom: 0;
  }

  .contact-card-icon {
    width: 38px;
    height: 38px;
    background: rgba(70, 84, 69, 0.1);
    color: var(--sage-dark);
    font-size: 0.7rem;
  }

  .contact-card-label {
    margin-bottom: 3px;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .contact-card strong,
  .contact-card address {
    color: var(--ink);
    font-size: 0.94rem;
    line-height: 1.38;
  }

  .contact-form {
    padding: 22px;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 8px 13px 8px 8px;
    font-size: 0.9rem;
  }

  .floating-contact-icon {
    width: 30px;
    height: 30px;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-frame {
    max-height: calc(100vh - 72px);
  }

  .lightbox-frame img {
    max-height: calc(100vh - 138px);
  }
}

@media (max-width: 460px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 22px, 1120px);
  }

  .brand {
    gap: 9px;
    font-size: 0.96rem;
  }

  .brand > span:last-child {
    max-width: 145px;
    line-height: 1.1;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .section {
    padding: 60px 0;
  }

  .section-offset {
    padding-top: calc(var(--header-height) + 34px);
  }

  h1 {
    max-width: 17ch;
    font-size: 2.02rem;
  }

  h2 {
    font-size: 1.78rem;
  }

  h3 {
    font-size: 1.02rem;
  }

  .hero {
    padding-bottom: 44px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero .eyebrow {
    font-size: 0.68rem;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 255px;
  }

  .service-card-carousel .service-card {
    min-height: 220px;
  }

  .gallery-item {
    flex-basis: min(86vw, 320px);
    height: 260px;
  }

  .service-map-shell,
  .service-map {
    min-height: 320px;
  }

  .contact-form,
  .about-panel {
    padding: 18px;
  }

  .contact-card {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 14px 12px;
  }

  .contact-card-icon {
    width: 34px;
    height: 34px;
    font-size: 0.66rem;
  }

  .contact-card strong,
  .contact-card address {
    font-size: 0.9rem;
  }

  .floating-contact {
    width: 48px;
    min-height: 48px;
    border-radius: 50%;
    padding: 7px;
  }

  .floating-contact span:not(.floating-contact-icon) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .has-reveal .reveal-target {
    opacity: 1;
    transform: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* Contact email readability */
.contact-card--email {
  grid-column: 1 / -1;
  min-height: auto;
}

.email-link {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  font-size: clamp(0.9rem, 1.25vw, 1rem);
}

/* Footer legal links */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 253, 248, 0.86);
  font-weight: 700;
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #f4dec1;
}

/* Privacy note under the contact form */
.privacy-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.privacy-note a {
  color: var(--terracotta);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* Legal pages */
.legal-main {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 70px);
  background:
    radial-gradient(ellipse at 18% 6%, rgba(182, 138, 75, 0.12), transparent 36%),
    radial-gradient(ellipse at 82% 22%, rgba(125, 148, 119, 0.1), transparent 38%),
    linear-gradient(180deg, #fbf7ee 0%, #f4ebdf 56%, #eadfce 100%);
  scroll-margin-top: 0;
}

.legal-hero {
  padding: 74px 0 34px;
}

.legal-hero .eyebrow {
  color: var(--terracotta);
}

.legal-hero h1 {
  max-width: 880px;
  color: var(--charcoal);
  font-size: clamp(3rem, 7vw, 5rem);
}

.legal-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-content {
  padding: 0 0 90px;
}

.legal-panel {
  display: grid;
  gap: 26px;
  border: 1px solid rgba(119, 86, 54, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(246, 239, 228, 0.9)),
    var(--surface);
  padding: clamp(24px, 4vw, 46px);
  box-shadow: 0 24px 68px rgba(62, 44, 31, 0.14);
}

.legal-section {
  border-bottom: 1px solid rgba(43, 43, 37, 0.1);
  padding-bottom: 22px;
}

.legal-section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
}

.legal-section h3 {
  margin-bottom: 8px;
}

.legal-section p,
.legal-section li,
.legal-section address {
  color: var(--muted);
}

.legal-section address {
  font-style: normal;
}

.legal-list {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  margin: 0;
}

.legal-card {
  border: 1px solid rgba(119, 86, 54, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.7);
  padding: 18px;
}

@media (max-width: 760px) {
  .email-link {
    font-size: clamp(0.82rem, 3.8vw, 0.96rem);
  }

  .legal-hero {
    padding: 54px 0 24px;
  }

  .legal-panel {
    padding: 22px;
  }
}


/* Final clean refresh */
:root {
  --charcoal: #17211c;
  --ink: #243028;
  --muted: #68766b;
  --paper: #f7f3ea;
  --surface: #fffdf8;
  --sand: #e8ddca;
  --stone: #eee6d9;
  --sage: #6f8b76;
  --sage-dark: #31493a;
  --deep-charcoal: #111713;
  --warm-brown: #3a3128;
  --cream: #fbf7ef;
  --gold: #c0a05a;
  --terracotta: #a96f55;
  --line: rgba(36, 48, 40, 0.13);
  --warm-line: rgba(111, 139, 118, 0.2);
}

body {
  background:
    radial-gradient(ellipse at 12% 8%, rgba(111, 139, 118, 0.12), transparent 34%),
    radial-gradient(ellipse at 90% 18%, rgba(192, 160, 90, 0.1), transparent 35%),
    linear-gradient(180deg, #fbf7ef 0%, #f3eadc 52%, #e9ddca 100%);
}

/* Cleaner, fresher section backgrounds */
.hero {
  background:
    radial-gradient(ellipse at 72% 32%, rgba(192, 160, 90, 0.18), transparent 42%),
    radial-gradient(ellipse at 18% 78%, rgba(111, 139, 118, 0.16), transparent 44%),
    linear-gradient(180deg, rgba(8, 12, 9, 0.2), transparent 42%, rgba(7, 10, 8, 0.24)),
    linear-gradient(135deg, #121915 0%, #26392d 48%, #3b3227 100%);
}

.services,
.service-area {
  background:
    radial-gradient(ellipse at 16% 8%, rgba(111, 139, 118, 0.12), transparent 36%),
    radial-gradient(ellipse at 86% 18%, rgba(192, 160, 90, 0.1), transparent 38%),
    linear-gradient(180deg, #fffdf8 0%, #f6efe4 54%, #ece1d2 100%);
}

.realisations,
.about,
.contact,
.site-footer {
  background:
    radial-gradient(ellipse at 82% 10%, rgba(192, 160, 90, 0.13), transparent 38%),
    radial-gradient(ellipse at 18% 78%, rgba(111, 139, 118, 0.14), transparent 42%),
    linear-gradient(135deg, #17211c 0%, #24382c 55%, #151a16 100%);
}

/* Contact cards: four identical clean rows */
.contact-cards {
  grid-template-columns: 1fr !important;
  gap: 14px;
}

.contact-card,
.contact-card--email {
  grid-column: auto !important;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  min-height: 96px;
  padding: 20px;
  border-color: rgba(111, 139, 118, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(246, 241, 231, 0.9)),
    var(--surface);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background:
    linear-gradient(135deg, rgba(111, 139, 118, 0.18), rgba(192, 160, 90, 0.13));
  color: var(--sage-dark);
  font-size: 0;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card-content {
  min-width: 0;
}

.contact-card strong,
.contact-card address {
  overflow-wrap: normal;
  word-break: normal;
}

.email-link {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  font-size: clamp(0.82rem, 1.05vw, 0.98rem);
}

.contact-card-label {
  color: var(--sage-dark);
}

.btn-primary {
  background: linear-gradient(135deg, var(--sage-dark), var(--gold));
  box-shadow: 0 12px 26px rgba(49, 73, 58, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #243a2d, #b99348);
}

@media (max-width: 760px) {
  .contact-card,
  .contact-card--email {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 90px;
    padding: 17px;
  }

  .contact-card-icon {
    width: 44px;
    height: 44px;
  }

  .email-link {
    font-size: clamp(0.72rem, 3.25vw, 0.9rem);
  }
}


/* ==============================
   THEME VARIANT: LIGHT ELEGANT
   ============================== */
:root {
  --charcoal: #223126;
  --ink: #223126;
  --muted: #6c7a70;
  --paper: #fcfaf5;
  --surface: #ffffff;
  --sand: #efe6d9;
  --stone: #f4ede3;
  --sage: #8ca392;
  --sage-dark: #395342;
  --deep-charcoal: #223126;
  --warm-brown: #7a6253;
  --cream: #fffdf9;
  --panel: rgba(255, 255, 255, 0.86);
  --gold: #c7a66b;
  --terracotta: #c48a6a;
  --line: rgba(34, 49, 38, 0.10);
  --warm-line: rgba(199, 166, 107, 0.18);
  --shadow: 0 24px 60px rgba(81, 63, 46, 0.12);
}

body {
  background:
    radial-gradient(ellipse at 12% 8%, rgba(140, 163, 146, 0.12), transparent 34%),
    radial-gradient(ellipse at 88% 20%, rgba(199, 166, 107, 0.09), transparent 35%),
    linear-gradient(180deg, #fffdf9 0%, #f8f2ea 52%, #efe6d9 100%);
  color: var(--ink);
}

.hero {
  background: #1b231c;
  color: var(--surface);
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(23, 31, 24, 0.72), rgba(23, 31, 24, 0.5) 44%, rgba(23, 31, 24, 0.26)),
    linear-gradient(180deg, rgba(12, 14, 12, 0.28), rgba(12, 14, 12, 0.1) 42%, rgba(12, 14, 12, 0.42));
}

.hero::after {
  background: linear-gradient(180deg, transparent, rgba(18, 20, 17, 0.34));
}

.hero .eyebrow,
.hero-subtitle,
.hero h1 {
  color: var(--surface);
}

.hero .eyebrow {
  color: #e9c99a;
}

.hero-subtitle {
  color: rgba(255, 253, 248, 0.84);
}

.hero .btn-secondary {
  border-color: rgba(255, 253, 248, 0.42);
  background: rgba(255, 253, 248, 0.12);
  color: var(--surface);
}

.hero-note,
.hero-visual,
.service-card,
.contact-card,
.contact-form,
.legal-panel,
.legal-card,
.service-map-shell,
.location-badges span,
.service-map-header,
.map-fallback {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(250,246,239,0.92)),
    var(--surface);
  border-color: rgba(34, 49, 38, 0.09);
  box-shadow: 0 20px 50px rgba(81, 63, 46, 0.10);
}

.services,
.realisations,
.about,
.service-area,
.contact,
.site-footer,
.legal-main {
  color: var(--ink);
}

.services,
.service-area,
.contact,
.legal-main {
  background:
    radial-gradient(ellipse at 14% 10%, rgba(140, 163, 146, 0.10), transparent 36%),
    radial-gradient(ellipse at 86% 16%, rgba(199, 166, 107, 0.08), transparent 38%),
    linear-gradient(180deg, #fffdf9 0%, #f8f2ea 54%, #f1e8dc 100%);
}

.realisations,
.about,
.site-footer {
  background:
    radial-gradient(ellipse at 84% 12%, rgba(199, 166, 107, 0.10), transparent 38%),
    radial-gradient(ellipse at 18% 78%, rgba(140, 163, 146, 0.11), transparent 42%),
    linear-gradient(180deg, #f6f0e6 0%, #efe5d8 52%, #e8dccd 100%);
}

.realisations h2,
.about h2,
.contact h2,
.site-footer,
.realisations .section-heading p:not(.eyebrow),
.about-copy,
.contact-info p:not(.eyebrow),
.site-footer p,
.footer-links a {
  color: var(--ink);
}

.gallery-item::after {
  background: linear-gradient(180deg, transparent 42%, rgba(34,49,38,0.64));
}

.site-header {
  background: rgba(255, 252, 246, 0.88);
  color: var(--charcoal);
  border-bottom: 1px solid rgba(34, 49, 38, 0.08);
}

.site-header.is-scrolled {
  background: rgba(255, 252, 246, 0.96);
}

.nav-links {
  color: rgba(34, 49, 38, 0.76);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.brand,
.footer-brand {
  color: var(--charcoal);
}

.brand-mark {
  border-color: transparent;
  background: transparent;
  color: var(--sage-dark);
}

.menu-toggle {
  border-color: rgba(34, 49, 38, 0.14);
  color: var(--charcoal);
}

.btn-primary {
  background: linear-gradient(135deg, #48644f, #c7a66b);
  color: #fffdf9;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #3d5644, #b9934f);
}

.floating-contact {
  background: #1f8f4d;
  color: #fffdf9;
}

.floating-contact-icon {
  background: rgba(255, 255, 255, 0.18);
}


/* ==============================
   LIGHT VERSION - MOBILE NAV FIX
   ============================== */
@media (max-width: 760px) {
  .site-header {
    background: rgba(255, 252, 246, 0.96);
    color: var(--charcoal);
    border-bottom: 1px solid rgba(34, 49, 38, 0.10);
  }

  .site-header::before {
    background: rgba(34, 49, 38, 0.24);
  }

  .brand {
    color: var(--charcoal);
  }

  .brand-mark {
    border-color: transparent;
    color: var(--sage-dark);
    background: transparent;
  }

  .menu-toggle {
    border-color: rgba(57, 83, 66, 0.22);
    background: rgba(255, 255, 255, 0.72);
    color: var(--sage-dark);
    box-shadow: 0 10px 24px rgba(81, 63, 46, 0.08);
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible,
  .menu-toggle.is-active {
    background: var(--sage-dark);
    color: #fffdf9;
    border-color: var(--sage-dark);
  }

  .nav-panel {
    background:
      radial-gradient(ellipse at 18% 8%, rgba(140, 163, 146, 0.18), transparent 38%),
      radial-gradient(ellipse at 82% 20%, rgba(199, 166, 107, 0.14), transparent 38%),
      linear-gradient(180deg, rgba(255, 252, 246, 0.99), rgba(246, 238, 226, 0.99));
    border-left: 1px solid rgba(34, 49, 38, 0.10);
    box-shadow: -22px 0 60px rgba(81, 63, 46, 0.18);
  }

  .nav-links a {
    color: var(--charcoal);
    border-bottom-color: rgba(34, 49, 38, 0.10);
    font-weight: 800;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    color: var(--sage-dark);
  }

  .nav-panel .btn-primary {
    background: linear-gradient(135deg, var(--sage-dark), var(--gold));
    color: #fffdf9;
  }
}
