:root {
  --ivory: #F7F2EC;
  --ivory-deep: #F1E9DF;
  --white: #FFFFFF;
  --ink: #2B2622;
  --ink-deep: #211D1A;
  --ink-soft: #3A332D;
  --muted: #6E655C;
  --clay: #B05C34;
  --clay-deep: #96491F;
  --clay-tint: #F3E3D8;
  --cream-text: #FFF8F2;
  --hairline: rgba(43, 38, 34, 0.12);
  --hairline-light: rgba(255, 248, 242, 0.16);
  --shadow-sm: 0 6px 18px -8px rgba(43, 38, 34, 0.18);
  --shadow-md: 0 20px 44px -20px rgba(43, 38, 34, 0.28);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --header-h: 66px;
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
}

html, body { overflow-x: clip; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(58px + env(safe-area-inset-bottom));
}

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

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

ul, ol { list-style: none; }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

address { font-style: normal; }

::selection { background: var(--clay); color: var(--cream-text); }

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

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  position: relative;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.section { padding-block: clamp(36px, 7vw, 128px); position: relative; }

.section-dark {
  background:
    radial-gradient(circle at 88% 0%, rgba(176, 92, 52, 0.16), transparent 46%),
    var(--ink);
  color: var(--cream-text);
}

.section-dark h2, .section-dark h3 { color: var(--cream-text); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--clay);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--clay);
  flex: none;
}

.section-head { max-width: 640px; margin-bottom: clamp(20px, 4vw, 64px); }

.section-head h2 {
  font-size: clamp(1.85rem, 4.2vw + 0.6rem, 3rem);
  margin-top: 16px;
}

.section-intro { margin-top: 14px; color: var(--muted); font-size: 16.5px; }

.section-dark .section-intro { color: rgba(255, 248, 242, 0.72); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 30px;
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

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

.btn svg { width: 18px; height: 18px; flex: none; }

.btn-sm { min-height: 42px; padding: 10px 22px; font-size: 12.5px; }

.btn-primary {
  background: var(--clay);
  color: var(--cream-text);
  box-shadow: 0 14px 28px -12px rgba(176, 92, 52, 0.55);
}

.btn-primary:hover { background: var(--clay-deep); box-shadow: 0 18px 32px -12px rgba(176, 92, 52, 0.65); }

.btn-ghost {
  border: 1.5px solid rgba(43, 38, 34, 0.28);
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover { border-color: var(--ink); background: var(--white); }

.btn-ghost-light {
  border: 1.5px solid var(--hairline-light);
  color: var(--cream-text);
}

.btn-ghost-light:hover { border-color: var(--cream-text); background: rgba(255, 248, 242, 0.08); }

.btn-whatsapp { border: 1.5px solid rgba(43, 38, 34, 0.28); color: var(--ink); }

.btn-whatsapp svg { color: #1E9E54; }

.btn-whatsapp:hover { border-color: #1E9E54; background: var(--white); }

.btn-dark {
  background: var(--ink);
  color: var(--cream-text);
  box-shadow: var(--shadow-md);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clay);
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s ease;
}

.link-arrow::after { content: "\2192"; transition: transform 0.25s ease; }

.link-arrow:hover { border-color: var(--clay); }
.link-arrow:hover::after { transform: translateX(5px); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(247, 242, 236, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled { box-shadow: 0 12px 32px -18px rgba(43, 38, 34, 0.35); }

.nav-row {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1320px, calc(100% - 32px));
}

.brand { display: flex; align-items: center; gap: 12px; flex: none; min-width: 0; position: relative; z-index: 110; }

.brand-mark { width: 42px; height: 42px; flex: none; }

.brand-text { display: flex; flex-direction: column; line-height: 1.05; min-width: 0; }

.brand-text strong {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-text small { font-size: 9.5px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--clay); }

.primary-nav {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: rgba(33, 29, 26, 0.98);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: grid;
  place-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

body.nav-open .primary-nav { opacity: 1; visibility: visible; }

body.nav-open { overflow: hidden; }

body.nav-open .brand-text strong,
body.nav-open .brand-text small { color: var(--cream-text); }

.primary-nav ul { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 28px; }

.primary-nav ul a {
  font-family: var(--font-display);
  font-size: clamp(23px, 6.4vw, 27px);
  font-weight: 500;
  color: var(--cream-text);
  padding: 8px 20px;
}

.primary-nav ul a:hover { color: var(--clay); }

.nav-actions { display: none; }

.nav-toggle {
  position: relative;
  z-index: 110;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  align-items: center;
  flex: none;
}

.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span { background: var(--cream-text); }

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 380px) {
  :root { --header-h: 60px; }

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

  .brand-text strong { font-size: 17px; }

  .brand-text small { font-size: 8.5px; letter-spacing: 0.2em; }
}

.hero { padding-top: calc(var(--header-h) + clamp(28px, 6vw, 84px)); padding-bottom: clamp(36px, 7vw, 110px); overflow: clip; }

.hero-grid { display: grid; gap: clamp(28px, 5vw, 80px); align-items: center; }

.hero-copy .eyebrow { margin-bottom: 20px; }

.hero-copy h1 {
  font-size: clamp(2.5rem, 6.4vw + 0.8rem, 4.4rem);
  line-height: 1.06;
  max-width: 15ch;
}

.hero-copy h1 em {
  font-style: italic;
  color: var(--clay);
}

.hero-sub {
  margin-top: 22px;
  max-width: 480px;
  font-size: clamp(15.5px, 1vw + 0.55rem, 17.5px);
  color: var(--muted);
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: clamp(22px, 4vw, 44px);
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--hairline);
}

.hero-stats li { display: flex; flex-direction: column; gap: 2px; }

.hero-stats strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw + 0.6rem, 2.1rem);
  color: var(--ink);
  line-height: 1;
}

.hero-stats span {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-visual { position: relative; width: min(100%, 40vh); margin-inline: auto; }

.hero-arch {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 400px 400px var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hero-slides { position: absolute; inset: 0; }

.hero-video-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-mini {
  display: none;
}

.hero-badge {
  position: absolute;
  top: 26px;
  left: -10px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 10px 22px 10px 14px;
  box-shadow: var(--shadow-md);
}

.hero-badge strong {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--clay-tint);
  color: var(--clay-deep);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  flex: none;
}

.hero-badge span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--ink);
}

.announcement-bar {
  background: var(--clay);
  color: var(--cream-text);
  overflow: hidden;
}

.marquee-track { display: flex; width: max-content; animation: marquee 26s linear infinite; }

.marquee-group { display: flex; flex: none; }

.marquee-group span {
  padding: 13px 40px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.categories-grid { display: grid; gap: clamp(24px, 5vw, 56px); }

.category-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.category-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.category-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.category-video.is-playing { opacity: 1; }

.category-card:hover .category-photo img,
.category-card:hover .category-video { transform: scale(1.045); }

.category-card h3 {
  font-size: 1.55rem;
  margin-top: 22px;
}

.category-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15.5px;
  max-width: 40ch;
}

.beforeafter-section .ba-list {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 5vw, 76px);
}

.ba-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 34px 70px -30px rgba(0, 0, 0, 0.6);
  touch-action: pan-y;
  cursor: ew-resize;
}

.ba-frame picture {
  display: contents;
}

.ba-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.ba-before { clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }

.ba-frame::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos, 50%);
  width: 3px;
  background: var(--clay);
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}

.ba-frame::before {
  content: "\2194";
  position: absolute;
  top: 50%;
  left: var(--pos, 50%);
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--clay);
  color: var(--cream-text);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.ba-tag {
  position: absolute;
  top: 16px;
  z-index: 3;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(33, 29, 26, 0.78);
  color: var(--cream-text);
  backdrop-filter: blur(4px);
}

.ba-tag-before { left: 16px; }
.ba-tag-after { right: 16px; background: var(--clay); color: var(--cream-text); }

.ba-caption { margin-top: 18px; color: rgba(255, 248, 242, 0.72); }

.ba-caption strong { color: var(--cream-text); font-weight: 800; }

.about-grid { display: grid; gap: clamp(28px, 5vw, 90px); align-items: center; }

.about-collage { position: relative; padding-bottom: 0; }

.collage-main {
  width: 84%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.collage-main img { width: 100%; aspect-ratio: 6 / 7; object-fit: cover; }

.collage-portrait {
  position: absolute;
  right: 0;
  top: 10%;
  width: 46%;
  border-radius: 130px 130px 12px 12px;
  overflow: hidden;
  border: 6px solid var(--ivory);
  box-shadow: var(--shadow-md);
}

.collage-portrait img { width: 100%; aspect-ratio: 5 / 6; object-fit: cover; }

.collage-accent { display: none; }

.about-copy > p { color: var(--muted); margin-bottom: 16px; max-width: 56ch; }

.stats { margin: 30px 0 36px; display: grid; gap: 24px; }

.stat-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 10px;
}

.stat-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 2.6vw + 0.8rem, 2.6rem);
  color: var(--clay);
  line-height: 1;
}

.stat-name {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.stat-bar {
  height: 7px;
  background: rgba(43, 38, 34, 0.09);
  border-radius: 99px;
  overflow: hidden;
}

.stat-bar span {
  display: block;
  height: 100%;
  width: var(--w, 100%);
  border-radius: inherit;
  background: linear-gradient(90deg, #C97A4E, var(--clay));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.reveal.in .stat-bar span { transform: scaleX(1); }

.stats .stat:nth-child(2) .stat-bar span { transition-delay: 0.35s; }
.stats .stat:nth-child(3) .stat-bar span { transition-delay: 0.55s; }

.whyus-section { background: var(--ivory-deep); }

.whyus-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 6px 2px 18px;
}

.whyus-track::-webkit-scrollbar { display: none; }

.whyus-card {
  position: relative;
  flex: 0 0 86%;
  scroll-snap-align: center;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.whyus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(176, 92, 52, 0.35);
}

.whyus-index {
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--clay-tint);
  -webkit-text-stroke: 1px rgba(176, 92, 52, 0.55);
}

.whyus-icon {
  display: inline-grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--clay-tint);
  margin-bottom: 20px;
}

.whyus-icon svg { width: 24px; height: 24px; color: var(--clay-deep); }

.whyus-card h3 { font-size: 1.4rem; margin-bottom: 10px; }

.whyus-card p { font-size: 15px; color: var(--muted); }

.whyus-card p strong { color: var(--clay-deep); }

.whyus-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 4px;
}

.slider-arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(43, 38, 34, 0.28);
  background: transparent;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.slider-arrow svg { width: 20px; height: 20px; }

.slider-arrow:hover:not(:disabled) {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--cream-text);
}

.slider-arrow:disabled { opacity: 0.32; cursor: default; }

.whyus-dots { display: flex; gap: 10px; }

.slider-dot {
  width: 9px; height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(43, 38, 34, 0.22);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.slider-dot.is-active {
  background: var(--clay);
  transform: scale(1.3);
}

.pillars-section { background: var(--clay-tint); }

.pillars-section .service-row {
  display: grid;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
}

.pillars-section .service-photo {
  border-radius: 0;
  box-shadow: none;
}

.pillars-section .service-photo img { aspect-ratio: 4 / 5; }

.pillars-section .service-copy { padding: 26px 24px 30px; }

.media-video { position: relative; }

.steps-section { background: var(--clay-tint); }

.steps-duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(8px, 1.8vw, 14px);
  background: var(--ink-deep);
  padding: clamp(8px, 1.8vw, 14px);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-md);
  max-width: 720px;
  margin-inline: auto;
}

.duo-pane {
  position: relative;
  margin: 0;
  aspect-ratio: 9 / 16;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
}

.duo-pane img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.duo-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  background: rgba(33, 29, 26, 0.72);
  color: var(--cream-text);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 999px;
  pointer-events: none;
}

.steps-points { margin-top: clamp(20px, 4vw, 48px); }

.steps-cta { display: inline-block; margin-top: 24px; }

.services-section .service-row {
  display: grid;
  gap: clamp(20px, 4vw, 72px);
  margin-bottom: clamp(36px, 6vw, 108px);
}

.service-row:last-child { margin-bottom: 0; }

.service-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-row:hover .service-photo img { transform: scale(1.03); }

.service-index {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--clay);
}

.service-copy h3 {
  font-size: clamp(1.7rem, 2.4vw + 0.8rem, 2.3rem);
  margin: 10px 0 12px;
}

.service-copy p { color: var(--muted); max-width: 48ch; }

.service-points { margin: 20px 0 26px; display: grid; gap: 10px; }

.service-points li {
  position: relative;
  padding-left: 26px;
  font-weight: 600;
  font-size: 15px;
}

.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 3px var(--clay-tint);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(18px, 4vw, 48px);
}

.filter-btn {
  min-height: 44px;
  padding: 10px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--hairline-light);
  color: rgba(255, 248, 242, 0.85);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.filter-btn:hover { border-color: var(--clay); color: var(--cream-text); }

.filter-btn.is-active {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--cream-text);
}

.gallery-grid { columns: 1; column-gap: 20px; }

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 20px;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 14px;
}

.gallery-item.is-hidden { display: none; }

.gallery-item img {
  width: 100%;
  transition: transform 0.55s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-zoom {
  position: absolute;
  inset: auto 14px 14px auto;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--clay);
  color: var(--cream-text);
  font-size: 21px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-zoom,
.gallery-item:focus-visible .gallery-zoom { opacity: 1; transform: translateY(0); }

.areas-grid { display: grid; gap: 20px; align-items: start; }

.areas-section { padding-block: 20px 24px; }

.areas-section .section-head { margin-bottom: 12px; }

.areas-section .section-intro { font-size: 14.5px; line-height: 1.55; }

.towns-marquee {
  display: grid;
  gap: 10px;
  overflow: hidden;
  padding-block: 4px;
  padding-inline: 3%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.towns-row {
  display: flex;
  width: max-content;
  animation: towns-scroll var(--towns-duration, 38s) linear infinite;
}

.towns-row-reverse {
  --towns-duration: 47s;
  animation-direction: reverse;
}

.towns-marquee:hover .towns-row,
.towns-marquee:focus-within .towns-row { animation-play-state: paused; }

@keyframes towns-scroll {
  to { transform: translateX(-50%); }
}

.towns-group {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 12px;
}

.towns-group li { flex: none; }

.towns-group a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  white-space: nowrap;
  min-height: 40px;
  padding: 7px 16px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.towns-group a::before {
  content: "\25C8";
  color: var(--clay);
}

.towns-group strong { display: contents; }

.towns-group small {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--clay);
  white-space: nowrap;
}

.towns-group li:first-child a {
  background: var(--clay-tint);
  border-color: rgba(176, 92, 52, 0.4);
}

.towns-group a:hover {
  border-color: var(--clay);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.area-map {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 8px;
  box-shadow: var(--shadow-sm);
  max-width: 260px;
  margin-inline: auto;
}

.area-map svg { width: 100%; height: auto; display: block; }

/* Ring expansion animation */
.ring, .ring-label, .ring-towns, .ring-center {
  opacity: 0;
}

.reveal.in .ring-inner,
.reveal.in .ring-label-inner {
  animation: ring-fade 0.7s ease 0.2s forwards;
}

.reveal.in .ring-mid,
.reveal.in .ring-label-mid {
  animation: ring-fade 0.7s ease 0.6s forwards;
}

.reveal.in .ring-outer,
.reveal.in .ring-label-outer {
  animation: ring-fade 0.7s ease 1s forwards;
}

.reveal.in .ring-towns {
  animation: ring-fade 0.6s ease 1.4s forwards;
}

.reveal.in .ring-center {
  animation: ring-fade 0.5s ease 0s forwards;
}

@keyframes ring-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .ring, .ring-label, .ring-towns, .ring-center {
    opacity: 1 !important;
    animation: none !important;
  }
}

.cta-band {
  background:
    radial-gradient(circle at 50% 0%, rgba(176, 92, 52, 0.28), transparent 62%),
    var(--ink);
  color: var(--cream-text);
  padding-block: clamp(44px, 8vw, 130px);
  text-align: center;
}

.cta-inner { max-width: 680px; }

.cta-band .eyebrow { justify-content: center; }

.cta-band .eyebrow::after {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--clay);
  flex: none;
}

.cta-band h2 {
  color: var(--cream-text);
  font-size: clamp(2.1rem, 5vw + 0.6rem, 3.4rem);
  margin-top: 18px;
}

.cta-band p:not(.eyebrow) {
  margin-top: 16px;
  color: rgba(255, 248, 242, 0.75);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}

.cta-actions .btn { width: 100%; max-width: 340px; }

.cta-actions .btn-ghost { border-color: var(--hairline-light); color: var(--cream-text); }

.cta-actions .btn-ghost:hover { border-color: var(--cream-text); background: rgba(255, 248, 242, 0.08); }

.site-footer {
  background: var(--ink-deep);
  color: rgba(255, 248, 242, 0.78);
}

.footer-grid {
  display: grid;
  gap: clamp(24px, 4vw, 56px);
  padding-block: clamp(36px, 6vw, 88px) clamp(24px, 4vw, 56px);
}

.brand-reverse .brand-text strong { color: var(--cream-text); }

.footer-tagline {
  margin: 18px 0 18px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
}

.site-footer address { line-height: 2.1; font-size: 15px; }

.site-footer address a:hover { color: var(--clay); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-text);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 2px;
  background: var(--clay);
}

.footer-col ul { display: grid; gap: 11px; }

.footer-col ul a {
  font-size: 14.5px;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-col ul a:hover { color: var(--clay); padding-left: 6px; }

.footer-quote p { font-size: 14.5px; margin-bottom: 14px; }

.footer-seo {
  border-top: 1px solid var(--hairline-light);
  padding-block: 26px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 248, 242, 0.5);
}

.footer-legal { background: rgba(0, 0, 0, 0.28); padding-block: 18px; }

.footer-legal-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  font-size: 12.5px;
  color: rgba(255, 248, 242, 0.48);
  text-align: center;
}

.mobile-callbar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  display: flex;
  box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.3);
}

.mobile-callbar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: calc(58px + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--ink-deep);
  color: var(--cream-text);
}

.mobile-callbar a.is-wa { background: #178A49; color: var(--white); }

.mobile-callbar svg { width: 19px; height: 19px; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(23, 20, 18, 0.95);
  display: grid;
  place-items: center;
  padding: clamp(14px, 4vw, 60px);
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: 100%;
  max-height: 86vh;
  border-radius: 10px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 248, 242, 0.1);
  border: 1px solid var(--hairline-light);
  color: var(--cream-text);
  font-size: 28px;
  line-height: 1;
  transition: all 0.25s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover { background: var(--clay); border-color: var(--clay); }

.lightbox-close { top: 18px; right: 18px; }

.lightbox-prev { left: 12px; top: 50%; transform: translateY(-50%); }

.lightbox-next { right: 12px; top: 50%; transform: translateY(-50%); }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .stat-bar span { transform: scaleX(1); }
}

@media (min-width: 560px) {
  .hero-ctas { flex-direction: row; flex-wrap: wrap; }

  .cta-actions { flex-direction: row; justify-content: center; }

  .cta-actions .btn { width: auto; }

  .gallery-grid { columns: 2; }

  .steps-duo { grid-template-columns: 1fr 1fr; }

  .footer-legal-row { justify-content: space-between; }
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }

  .mobile-callbar { display: none; }

  .section { padding-block: clamp(64px, 11vw, 128px); }
  .section-head { margin-bottom: clamp(38px, 6vw, 64px); }

  .hero { padding-top: calc(var(--header-h) + clamp(40px, 8vw, 84px)); padding-bottom: clamp(56px, 9vw, 110px); }
  .hero-grid { grid-template-columns: 1.08fr 0.92fr; gap: clamp(44px, 7vw, 80px); }

  .hero-visual { width: min(100%, 44vh); }

  .categories-grid { gap: clamp(40px, 7vw, 56px); }

  .ba-frame { aspect-ratio: 3 / 2; }
  .beforeafter-section .ba-list { gap: clamp(44px, 7vw, 76px); }

  .about-grid { grid-template-columns: 1fr 1fr; gap: clamp(44px, 7vw, 90px); }

  .whyus-track { gap: 22px; padding-bottom: 26px; }

  .collage-accent {
    display: block;
    position: absolute;
    left: 6%;
    bottom: 0;
    width: 36%;
    border-radius: 12px;
    overflow: hidden;
    border: 6px solid var(--ivory);
    box-shadow: var(--shadow-md);
    transform: rotate(-3.5deg);
  }

  .collage-accent img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

  .about-collage { padding-bottom: 56px; }

  .hero-mini {
    display: block;
    position: absolute;
    left: -34px;
    bottom: -30px;
    width: 46%;
    border-radius: 14px;
    overflow: hidden;
    border: 6px solid var(--ivory);
    box-shadow: var(--shadow-md);
  }

  .hero-mini img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }

  .whyus-card { flex-basis: calc(50% - 9px); scroll-snap-align: start; }

  .services-section .service-row { gap: clamp(28px, 5vw, 72px); margin-bottom: clamp(56px, 9vw, 108px); }

  .service-row { grid-template-columns: 1fr 1fr; align-items: center; }

  .pillars-section .service-row { grid-template-columns: 1fr 1fr; align-items: stretch; }

  .pillars-section .service-photo img { aspect-ratio: auto; height: 100%; }

  .pillars-section .service-copy {
    padding: clamp(34px, 4.5vw, 60px);
    align-self: center;
  }

  .steps-points { grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: clamp(30px, 5vw, 48px); }

  .gallery-filters { margin-bottom: clamp(30px, 5vw, 48px); }

  .cta-band { padding-block: clamp(72px, 11vw, 130px); }

  .towns-marquee { gap: 12px; padding-block: 6px; padding-inline: 0; }
  .towns-group a { min-height: 48px; padding: 10px 22px; font-size: 14px; }

  .areas-grid { gap: clamp(40px, 6vw, 88px); }
  .areas-section { padding-block: clamp(64px, 11vw, 128px); }
  .areas-section .section-head { margin-bottom: clamp(38px, 6vw, 64px); }
  .areas-section .section-intro { font-size: 16.5px; }

  .area-map { max-width: 420px; }

  .footer-grid { gap: clamp(36px, 6vw, 56px); padding-block: clamp(56px, 9vw, 88px) clamp(36px, 5vw, 56px); }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .nav-phone-num { display: none; }

  .nav-actions { gap: 14px; }
}

@media (min-width: 1024px) {
  :root { --header-h: 76px; }

  .area-map { max-width: 520px; }

  .nav-toggle { display: none; }

  .primary-nav {
    position: static;
    inset: auto;
    opacity: 1;
    visibility: visible;
    background: none;
    backdrop-filter: none;
    display: block;
  }

  .primary-nav ul {
    flex-direction: row;
    justify-content: center;
    gap: clamp(16px, 2.4vw, 30px);
  }

  .primary-nav ul a {
    position: relative;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    padding-block: 6px;
  }

  .primary-nav ul a:hover { color: var(--clay-deep); }

  .primary-nav ul a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--clay);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
  }

  .primary-nav ul a:hover::after,
  .primary-nav ul a:focus-visible::after { transform: scaleX(1); }

  .nav-actions { display: flex; align-items: center; gap: 18px; }

  .nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 800;
    font-size: 14px;
    white-space: nowrap;
  }

  .nav-phone svg { width: 17px; height: 17px; color: var(--clay); }

  .nav-phone:hover { color: var(--clay-deep); }

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

  .category-card:nth-child(2) { margin-top: 54px; }

  .category-card:nth-child(3) { margin-top: 108px; }

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

  .whyus-track { gap: 22px; }

  .whyus-card { flex-basis: calc(50% - 11px); }

  .service-row.service-row-flip .service-photo { order: 2; }

  .service-row.service-row-flip .service-copy { order: 1; text-align: right; }

  .service-row.service-row-flip .service-copy p { margin-left: auto; }

  .service-row.service-row-flip .service-points li { padding-left: 0; padding-right: 26px; }

  .service-row.service-row-flip .service-points li::before { left: auto; right: 0; }

  .gallery-grid { columns: 3; }

  .areas-grid { grid-template-columns: 1.08fr 0.92fr; }

  .footer-grid { grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr; }

  .ba-item:nth-child(even) .ba-frame { margin-left: auto; }

  .ba-item:nth-child(even) .ba-caption { text-align: right; }

  .lightbox-prev { left: 22px; }

  .lightbox-next { right: 22px; }
}
