:root {
  --bg-main: #fffdfa;
  --bg-soft: #fffaf6;
  --bg-card: rgba(255, 255, 255, 0.78);
  --primary: #5f0d07;
  --primary-2: #73170f;
  --accent: #d9b184;
  --teal: #ba8444;
  --olive: #a7703c;
  --amber: #d08b33;
  --rose: #8f3f38;
  --ink: #24180f;
  --ink-soft: #5f4a37;
  --line: rgba(120, 91, 58, 0.2);
  --shadow-soft: 0 18px 45px rgba(57, 47, 33, 0.09);
  --shadow-strong: 0 30px 70px rgba(57, 47, 33, 0.15);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at -8% -22%, rgba(125, 29, 20, 0.28), transparent 46%),
    radial-gradient(circle at 106% -12%, rgba(186, 132, 68, 0.34), transparent 44%),
    radial-gradient(circle at 18% 112%, rgba(208, 139, 51, 0.24), transparent 44%),
    radial-gradient(circle at 86% 88%, rgba(167, 112, 60, 0.28), transparent 42%),
    radial-gradient(circle at 56% 42%, rgba(192, 93, 82, 0.1), transparent 52%),
    linear-gradient(185deg, #fffcfa 0%, #fff6ed 46%, #f9f2e9 100%);
  min-height: 100vh;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: "Noto Serif", serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
  line-height: 1.75;
}

.page-wrap {
  position: relative;
  overflow-x: clip;
}

.texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(0, 0, 0, 0.1) 0.34px, transparent 0.34px);
  background-size: 4px 4px;
  opacity: 0.04;
  z-index: 0;
}

.container {
  width: min(1140px, 94vw);
  margin-inline: auto;
}

.site-header,
main,
.site-footer,
.fab {
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(95, 13, 7, 0.98), rgba(84, 10, 6, 0.98));
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.58rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.brand img {
  object-fit: contain;
}

.brand .brand-logo {
  width: auto;
  height: clamp(42px, 4.5vw, 56px);
  max-width: 74px;
  object-fit: contain;
}

.brand .brand-name {
  width: auto;
  height: clamp(30px, 3.8vw, 45px);
  max-width: min(68vw, 320px);
  object-fit: contain;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #fff;
  transition: transform 260ms ease;
}

.site-nav {
  position: fixed;
  right: 3vw;
  top: 74px;
  width: min(310px, 88vw);
  background: linear-gradient(155deg, rgba(255, 248, 239, 0.95), rgba(247, 242, 234, 0.92));
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 0.7rem;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease;
}

.site-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.site-nav a {
  display: block;
  padding: 0.72rem 0.82rem;
  border-radius: 12px;
  font-weight: 700;
  color: var(--ink-soft);
}

.site-nav a:hover,
.site-nav a.active {
  background: linear-gradient(135deg, rgba(94, 14, 8, 0.92), rgba(125, 29, 20, 0.9));
  color: #fff;
}

.desktop-nav {
  display: none;
}

.desktop-nav a {
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.82rem;
  position: relative;
}

.desktop-nav a.active,
.desktop-nav a:hover {
  color: #fff;
  background: linear-gradient(135deg, rgba(94, 14, 8, 0.92), rgba(125, 29, 20, 0.9), rgba(208, 139, 51, 0.88));
  box-shadow: 0 10px 20px rgba(94, 14, 8, 0.24);
}

.section {
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  padding: 0.95rem;
  background: linear-gradient(145deg, rgba(255, 250, 244, 0.54), rgba(247, 242, 234, 0.46));
  border: 1px solid rgba(120, 91, 58, 0.16);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 8%, rgba(125, 29, 20, 0.3), transparent 42%),
    radial-gradient(circle at 92% 16%, rgba(186, 132, 68, 0.3), transparent 42%),
    radial-gradient(circle at 82% 90%, rgba(217, 177, 132, 0.32), transparent 45%),
    linear-gradient(145deg, rgba(255, 251, 245, 0.88), rgba(246, 240, 230, 0.72));
}

.section::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) + 3px);
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

main > .section:nth-of-type(2)::before {
  background:
    radial-gradient(circle at 90% 5%, rgba(167, 112, 60, 0.24), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(125, 29, 20, 0.22), transparent 46%),
    radial-gradient(circle at 78% 84%, rgba(186, 132, 68, 0.28), transparent 41%),
    linear-gradient(150deg, rgba(255, 252, 246, 0.9), rgba(246, 240, 230, 0.74));
}

main > .section:nth-of-type(3)::before {
  background:
    radial-gradient(circle at 15% 15%, rgba(208, 139, 51, 0.28), transparent 41%),
    radial-gradient(circle at 84% 83%, rgba(109, 69, 38, 0.2), transparent 42%),
    radial-gradient(circle at 62% 22%, rgba(192, 93, 82, 0.22), transparent 38%),
    linear-gradient(150deg, rgba(255, 250, 244, 0.9), rgba(255, 243, 233, 0.76));
}

main > .section:nth-of-type(4)::before {
  background:
    radial-gradient(circle at 75% 10%, rgba(94, 14, 8, 0.26), transparent 40%),
    radial-gradient(circle at 20% 90%, rgba(209, 165, 115, 0.28), transparent 46%),
    radial-gradient(circle at 8% 18%, rgba(186, 132, 68, 0.3), transparent 38%),
    linear-gradient(155deg, rgba(255, 250, 245, 0.88), rgba(246, 240, 230, 0.76));
}

.hero {
  display: grid;
  gap: 0.95rem;
  align-items: stretch;
}

.hero-copy {
  height: 100%;
  min-height: 320px;
  border-radius: 28px;
  padding: 0.85rem 0.9rem;
  background: linear-gradient(155deg, rgba(255, 248, 238, 0.78), rgba(246, 240, 230, 0.66));
  border: 1px solid rgba(120, 91, 58, 0.2);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.badge {
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  padding: 0.35rem 0.64rem;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.highlight-text {
  color: var(--rose);
}

.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3.15rem);
  margin-top: 0.6rem;
}

.hero p {
  margin-top: 0.85rem;
  font-size: clamp(0.95rem, 1.28vw, 1.08rem);
  color: var(--ink-soft);
  max-width: 66ch;
}

.hero-actions {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.56rem;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 15px 30px rgba(94, 14, 8, 0.26);
}

.btn-soft {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
}

.btn-icon {
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 14px;
  justify-content: center;
}

.btn-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.btn-primary.btn-icon svg {
  fill: #fff;
}

.btn-soft.btn-icon svg {
  fill: var(--primary);
}

.btn.slide-btn {
  position: relative;
  overflow: hidden;
}

.btn.slide-btn span {
  position: relative;
  z-index: 2;
}

.btn.slide-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(95deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
  transition: transform 420ms ease;
}

.btn.slide-btn:hover::before {
  transform: translateX(100%);
}

.hero-media {
  position: relative;
  display: flex;
  align-items: stretch;
  height: 100%;
  min-height: 320px;
  border-radius: 28px;
  padding: 0.8rem;
  background: linear-gradient(150deg, rgba(255, 245, 234, 0.76), rgba(233, 242, 255, 0.66));
  border: 1px solid rgba(120, 91, 58, 0.2);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-strong);
}

.hero-media img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  aspect-ratio: auto;
  min-height: 0;
  object-fit: cover;
}

.hero-media .photo-tag {
  position: absolute;
  left: 1.4rem;
  bottom: 1.5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0.44rem 0.9rem;
  font-weight: 700;
  font-size: 0.86rem;
}

.metrics {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.52rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric {
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 245, 233, 0.9), rgba(235, 243, 255, 0.72));
  border: 1px solid rgba(120, 91, 58, 0.18);
  padding: 0.55rem;
}

.metric strong {
  display: block;
  font-size: 1.06rem;
  color: var(--primary);
}

.metric span {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.8rem;
}

.underline-title {
  font-size: clamp(1.35rem, 3.2vw, 2.1rem);
  margin-bottom: 0.7rem;
  position: relative;
  width: fit-content;
}

.underline-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='300' height='20' viewBox='0 0 300 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 10C26 3 57 0 89 5C130 11 171 18 213 14C245 11 272 7 299 10' stroke='%239a281d' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transform-origin: left;
  animation: drawUnderline 1400ms ease;
}

@keyframes drawUnderline {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}

.grid-two,
.grid-three,
.grid-four {
  display: grid;
  gap: 0.9rem;
}

.grid-two {
  grid-template-columns: 1fr;
}

.grid-three,
.grid-four {
  grid-template-columns: 1fr;
}

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(120, 91, 58, 0.16);
  background:
    radial-gradient(circle at 8% 10%, rgba(125, 29, 20, 0.14), transparent 38%),
    radial-gradient(circle at 92% 88%, rgba(186, 132, 68, 0.24), transparent 36%),
    linear-gradient(160deg, rgba(255, 249, 241, 0.84), rgba(246, 240, 230, 0.74));
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
  padding: 0.85rem;
}

.card h3 {
  font-size: 1.08rem;
}

.card p,
.card li {
  color: var(--ink-soft);
}

.card ul {
  margin: 0.55rem 0 0;
  padding-left: 1rem;
}

.service-card {
  padding: 0;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card .pad {
  padding: 0.82rem;
}

.service-card h3 {
  margin-bottom: 0.4rem;
}

.emphasis {
  outline: 2px solid rgba(94, 14, 8, 0.32);
  background:
    radial-gradient(circle at 88% 20%, rgba(125, 29, 20, 0.2), transparent 44%),
    linear-gradient(170deg, rgba(255, 248, 239, 0.92), rgba(255, 238, 223, 0.9));
}

.quick-tiles .card {
  cursor: pointer;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.quick-tiles .card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
  background: linear-gradient(155deg, rgba(255, 246, 237, 0.95), rgba(248, 242, 233, 0.78));
}

.location-meta {
  display: grid;
  gap: 0.32rem;
  margin: 0.65rem 0;
}

.rating-pill {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.5rem;
  border-radius: 999px;
  background: rgba(217, 177, 132, 0.32);
  padding: 0.24rem 0.62rem;
  font-weight: 800;
  color: #6e3f1a;
}

.map-link img,
.map-action img {
  width: 18px;
  height: 18px;
  border-radius: 999px;
}

.map-link svg,
.map-action svg {
  width: 18px;
  height: 18px;
  display: block;
}

.map-action {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  font-weight: 700;
  color: var(--primary);
}

.map-action svg {
  fill: currentColor;
}

.footer-actions {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.footer-actions .map-action {
  padding: 0.38rem 0.62rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(255, 249, 241, 0.9), rgba(246, 240, 230, 0.76));
  font-size: 0.82rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.footer-actions .map-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(94, 14, 8, 0.14);
}

.footer-actions .action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.footer-actions .action-call {
  color: #fff;
  border-color: rgba(25, 88, 182, 0.5);
  background: linear-gradient(145deg, #2f7dff, #1f58bc);
}

.footer-actions .action-call svg {
  fill: #fff;
}

.footer-actions .action-wa {
  color: #fff;
  border-color: rgba(25, 143, 68, 0.5);
  background: linear-gradient(145deg, #20b45e, #148c45);
}

.footer-actions .action-wa svg {
  fill: #fff;
}

.footer-actions .action-loc {
  width: 42px;
  min-width: 42px;
  justify-content: center;
  padding: 0.38rem 0;
}

.hero-actions a.btn-icon[href^="tel:"] {
  color: #fff;
  border-color: rgba(25, 88, 182, 0.5);
  background: linear-gradient(145deg, #2f7dff, #1f58bc);
}

.hero-actions a.btn-icon[href*="wa.me"] {
  color: #fff;
  border-color: rgba(25, 143, 68, 0.5);
  background: linear-gradient(145deg, #20b45e, #148c45);
}

.hero-actions a.btn-icon[href*="maps.app.goo.gl"] {
  color: var(--primary);
  border-color: var(--line);
  background: linear-gradient(145deg, rgba(255, 249, 241, 0.92), rgba(246, 240, 230, 0.8));
}

.hero-actions a.btn-icon[href^="tel:"] svg,
.hero-actions a.btn-icon[href*="wa.me"] svg {
  fill: #fff;
}

.hero-actions a.btn-icon[href*="maps.app.goo.gl"] svg {
  fill: var(--primary);
}

.focus-grid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.focus-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 180px;
  transition: filter 260ms ease, transform 260ms ease;
}

.focus-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.focus-card .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  padding: 0.8rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.68));
  opacity: 0;
  transition: opacity 220ms ease;
}

.focus-grid.hovering .focus-card {
  filter: none;
  transform: none;
}

.focus-grid.hovering .focus-card.active {
  filter: none;
  transform: none;
}

.focus-card.active .overlay {
  opacity: 1;
}

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

.home-focus .focus-card {
  min-height: 200px;
}

.home-focus .focus-card img {
  min-height: 200px;
}

.home-focus .focus-card.hero-tile {
  grid-column: span 2;
  min-height: 255px;
}

.home-focus .focus-card.hero-tile img {
  min-height: 255px;
}

.page-hero {
  padding: 1.05rem;
}

.page-hero h1 {
  font-size: clamp(1.7rem, 4.5vw, 2.8rem);
}

.page-hero p {
  margin-top: 0.85rem;
  color: var(--ink-soft);
  max-width: 70ch;
}

.services-hero {
  padding: 0.95rem;
}

.services-hero-grid {
  display: grid;
  gap: 0.9rem;
}

.services-hero-copy {
  border-radius: 20px;
  padding: 1rem;
  background:
    radial-gradient(circle at 10% 6%, rgba(125, 29, 20, 0.22), transparent 45%),
    linear-gradient(145deg, rgba(255, 247, 237, 0.88), rgba(246, 240, 230, 0.78));
  border: 1px solid rgba(120, 91, 58, 0.18);
}

.services-hero-copy h1 {
  font-size: clamp(1.9rem, 5.3vw, 3.6rem);
  margin-top: 0.7rem;
}

.services-hero-copy p {
  margin-top: 0.8rem;
  max-width: 54ch;
  color: var(--ink-soft);
}

.services-trust-pill {
  width: fit-content;
  margin-top: 0.85rem;
  padding: 0.42rem 0.74rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  border: 1px solid rgba(94, 14, 8, 0.22);
  background: rgba(255, 245, 234, 0.78);
}

.services-hero-media {
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid rgba(120, 91, 58, 0.18);
  box-shadow: var(--shadow-soft);
}

.services-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
}

.services-bento {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1fr;
}

.services-tile {
  min-height: 220px;
}

.services-bento > article,
.grid-two > .card {
  transition: transform 250ms ease, box-shadow 250ms ease;
  will-change: transform;
}

@media (hover: hover) {
  .services-bento > article:hover,
  .grid-two > .card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-strong);
  }
}

.services-tile h3 {
  margin-bottom: 0.45rem;
}

.services-sub {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.services-list {
  margin: 0.55rem 0 0;
  padding-left: 1rem;
}

.services-list li {
  margin-bottom: 0.26rem;
}


.services-tile-image {
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(125, 29, 20, 0.12), transparent 40%),
    linear-gradient(165deg, rgba(255, 249, 241, 0.85), rgba(143, 63, 56, 0.16));
}

.services-tile-image img {
  width: 100%;
  height: clamp(140px, 18vw, 190px);
  max-width: 100%;
  object-fit: cover;
  object-position: center;
}

.services-tile-image .pad {
  padding: 0.85rem;
}

.services-signature {
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  border: 1px solid rgba(94, 14, 8, 0.2);
  background: linear-gradient(140deg, rgba(94, 14, 8, 0.95), rgba(125, 29, 20, 0.92));
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.services-signature-copy {
  padding: 1rem;
}

.services-signature-copy h3 {
  font-size: clamp(1.5rem, 3.6vw, 2.4rem);
  margin: 0.35rem 0 0.45rem;
}

.services-signature-copy p {
  color: rgba(255, 227, 206, 0.92);
}

.services-signature-copy .signature-label {
  width: fit-content;
  margin: 0;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--primary);
  background: rgba(255, 226, 201, 0.96);
}

.signature-points {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.44rem;
}

.signature-points span {
  padding: 0.34rem 0.58rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #fff2e7;
  border: 1px solid rgba(255, 226, 201, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.services-signature-media {
  min-height: 220px;
}

.services-signature-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.88;
}

.services-stats {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-hygiene-grid {
  display: grid;
  gap: 0.85rem;
}

.services-hygiene-copy {
  min-width: 0;
}

.services-hygiene-media {
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
  position: relative;
  border: 1px solid rgba(120, 91, 58, 0.18);
  box-shadow: var(--shadow-soft);
}

.services-hygiene-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services-stats .stat-card {
  text-align: center;
}

.services-stats .stat-card strong {
  display: block;
  font-family: "Noto Serif", serif;
  font-size: 1.15rem;
  color: var(--primary);
}

.services-stats .stat-card span {
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-weight: 700;
}

.location-showcase {
  display: grid;
  gap: 0.9rem;
}

.location-showcase .gallery {
  border-radius: 16px;
  overflow: hidden;
  min-height: 290px;
}

.location-showcase .gallery img {
  width: 100%;
  min-height: 290px;
  object-fit: cover;
}

.site-footer {
  margin-top: 0.5rem;
  border-top: 1px solid rgba(234, 198, 156, 0.2);
  background: linear-gradient(180deg, rgba(95, 13, 7, 0.98), rgba(84, 10, 6, 0.98));
  font-weight: 600;
}

.footer-inner {
  padding: 0.5rem 0;
  display: grid;
  gap: 0.4rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-brand img {
  width: 34px;
  height: 34px;
}

.footer-brand h3 {
  font-size: 1rem;
  color: #ffe4cf;
  font-weight: 800;
}

.site-footer .footer-brand .tiny {
  color: rgba(255, 222, 198, 0.86);
  font-weight: 600;
}

.footer-grid {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr;
}

.footer-grid .card {
  padding: 0.35rem 0.45rem;
  font-size: 0.85rem;
  transform: translateY(0) scale(1);
  transition: transform 250ms ease, box-shadow 250ms ease, background 250ms ease;
  will-change: transform;
  background:
    radial-gradient(circle at 8% 10%, rgba(125, 29, 20, 0.14), transparent 38%),
    radial-gradient(circle at 92% 88%, rgba(186, 132, 68, 0.24), transparent 36%),
    linear-gradient(160deg, rgb(255, 249, 241), rgb(246, 240, 230));
}
.footer-grid .card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.footer-grid .card p {
  line-height: 1.3;
}

@media (hover: hover) {
  .footer-grid .card:hover {
    transform: translateY(-5px) scale(1.015);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(155deg, rgb(255, 246, 237), rgb(248, 242, 233));
  }
}

.footer-grid .card:active {
  transform: translateY(-1px) scale(0.995);
}

.footer-glow {
  margin-top: 0.2rem;
  border-radius: 16px;
  padding: 0.4rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: linear-gradient(145deg, rgba(129, 21, 12, 0.88), rgba(108, 14, 9, 0.86));
  text-align: center;
}

.footer-glow .big {
  font-family: "Noto Serif", serif;
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  letter-spacing: -0.02em;
  color: rgba(94, 14, 8, 0.96);
  -webkit-text-stroke: 1px rgba(234, 198, 156, 0.95);
  text-shadow: 0 2px 10px rgba(94, 14, 8, 0.18);
}

.footer-glow .footer-name-mark {
  width: min(80%, 160px);
  margin-inline: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(44, 8, 5, 0.24));
}

.footer-name-text {
  font-family: "Noto Serif", serif;
  font-size: 2.2rem;
  color: #fff;
  margin: 0.5rem 0;
  text-shadow: 0 2px 10px rgba(94, 14, 8, 0.5);
}

.site-footer .footer-glow .tiny {
  color: rgba(255, 224, 201, 0.88);
}

.tiny {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
}

.fab-main {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 0;
  font-size: 1.6rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 28px rgba(94, 14, 8, 0.32);
  cursor: pointer;
}

.fab-options {
  position: absolute;
  right: 0;
  bottom: 58px;
  display: grid;
  gap: 0.45rem;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 240ms ease, transform 240ms ease;
}

.fab.open .fab-options {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fab-options a {
  background: linear-gradient(150deg, rgba(255, 249, 241, 0.95), rgba(246, 240, 230, 0.88));
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.5rem 0.72rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.99);
  transition: opacity 680ms ease, transform 680ms ease;
  transition-delay: var(--delay, 0s);
}

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

@media (min-width: 760px) {
  .brand .brand-logo {
    width: auto;
    height: clamp(50px, 3.5vw, 64px);
    max-width: 94px;
  }

  .brand .brand-name {
    width: auto;
    height: clamp(36px, 3vw, 56px);
    max-width: 420px;
  }

  .site-nav,
  .menu-toggle {
    display: none;
  }

  .desktop-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.34rem;
    border-radius: 999px;
    border: 1px solid rgba(120, 91, 58, 0.2);
    background: linear-gradient(145deg, rgba(255, 248, 238, 0.86), rgba(246, 240, 230, 0.82));
    backdrop-filter: blur(8px);
  }

  .section {
    margin-top: 1.25rem;
    padding: 1.15rem;
  }

  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
  }

  .hero-copy,
  .hero-media {
    min-height: 460px;
  }

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

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

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

  .services-hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: stretch;
  }

  .services-hero-media {
    min-height: 420px;
  }

  .services-hero-media img {
    min-height: 420px;
  }

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

  .services-bento > .services-tile:nth-child(1),
  .services-bento > .services-tile:nth-child(2),
  .services-bento > .services-tile:nth-child(3) {
    grid-column: span 4;
  }

  .services-signature {
    grid-column: span 12;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: stretch;
  }

  .services-signature-copy {
    padding: 1.2rem;
  }

  .services-signature-media {
    min-height: 100%;
  }

  .services-signature-media img {
    min-height: 100%;
  }

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

  .services-hygiene-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }

  .services-hygiene-media {
    min-height: 100%;
  }

  .services-hygiene-media img {
    min-height: 100%;
  }

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

  .home-focus .focus-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-focus .focus-card.hero-tile {
    grid-column: span 2;
    min-height: 292px;
  }

  .home-focus .focus-card.hero-tile img {
    min-height: 292px;
  }

  .home-focus .focus-card {
    min-height: 204px;
  }

  .home-focus .focus-card img {
    min-height: 204px;
  }

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

  .fab {
    right: 1.4rem;
    bottom: 1.4rem;
  }

  .hero-media img {
    min-height: 0;
  }
}

@media (min-width: 1040px) {
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

body[data-page="locations"] .grid-two .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

body[data-page="locations"] .grid-two .card .hero-actions,
body[data-page="locations"] .grid-two .card .map-action {
  margin-top: auto !important;
}






