/* ========================================
   Elite Bathrooms & Tiling — Nature Distilled
   ======================================== */

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

:root {
  /* Palette — Nature Distilled */
  --cream: #F5F0E1;
  --cream-light: #FAF6EC;
  --cream-dark: #E8DFC8;
  --terracotta: #C67B5C;
  --terracotta-dark: #A85E3F;
  --charcoal: #2B2926;
  --charcoal-soft: #4a4642;
  --charcoal-mute: #6b665f;
  --sage: #6B7B3C;
  --sage-light: #8A9A87;
  --brass: #B08D57;
  --brass-bright: #C9A56E;
  --line: rgba(43, 41, 38, 0.12);
  --line-warm: rgba(176, 141, 87, 0.25);

  /* Typography */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "DM Sans", "SF Pro Text", -apple-system, system-ui, sans-serif;

  --fs-hero: clamp(2.5rem, 7vw, 5.5rem);
  --fs-h2: clamp(2rem, 5vw, 3.5rem);
  --fs-h3: clamp(1.25rem, 2.2vw, 1.5rem);
  --fs-lede: clamp(1.05rem, 1.6vw, 1.2rem);
  --fs-body: 1rem;

  /* Layout */
  --max: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 24px;

  /* Easing */
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.015em; line-height: 1.08; margin: 0; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.visually-hidden, .skip-link { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.skip-link:focus { position: fixed; left: 1rem; top: 1rem; width: auto; height: auto; padding: .75rem 1rem; background: var(--charcoal); color: var(--cream); z-index: 9999; border-radius: var(--radius-sm); }

.italic { font-style: italic; font-family: var(--font-display); font-weight: 400; color: var(--terracotta-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .95rem;
  line-height: 1;
  border-radius: 999px;
  transition: all .25s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
}
.btn-primary:hover { background: var(--sage); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: rgba(43, 41, 38, 0.22);
}
.btn-ghost:hover { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }
.btn-lg { padding: 1.05rem 1.85rem; font-size: 1rem; }

/* ---------- Eyebrow tag ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-mute);
  margin: 0 0 1.25rem;
  font-weight: 500;
}
.eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
  display: inline-block;
}

/* ==========================================================
   HEADER / NAV
   ========================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: .9rem 0;
  background: transparent;
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.is-scrolled {
  background: color-mix(in oklab, var(--cream) 94%, transparent);
  backdrop-filter: saturate(1.3) blur(14px);
  -webkit-backdrop-filter: saturate(1.3) blur(14px);
  padding: .55rem 0;
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -20px rgba(43, 41, 38, 0.25);
}
.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--charcoal);
}
.brand-mark {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--cream);
  transition: transform .3s var(--ease);
}
.brand-mark svg { width: 22px; height: 22px; }
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.05); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--font-display); font-weight: 500; font-size: 1.1rem; letter-spacing: -0.01em; }
.brand-text em { font-style: italic; font-size: .72rem; color: var(--charcoal-mute); letter-spacing: .04em; font-family: var(--font-display); }

.site-nav { display: flex; gap: 1.8rem; justify-content: center; }
.site-nav a {
  position: relative;
  font-size: .92rem;
  color: var(--charcoal-soft);
  transition: color .2s var(--ease);
  padding: .4rem 0;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.site-nav a:hover { color: var(--charcoal); }
.site-nav a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; gap: .7rem; align-items: center; }
.nav-cta .btn { padding: .7rem 1.1rem; font-size: .88rem; }
.nav-cta .btn-ghost svg { color: var(--terracotta); }

.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; flex-direction: column; justify-content: space-between; align-items: stretch; }
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--charcoal); transition: transform .3s var(--ease), opacity .2s var(--ease); transform-origin: center; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 72px 0 auto 0;
  background: var(--cream);
  padding: 1.5rem var(--gutter);
  display: flex;
  flex-direction: column;
  gap: .2rem;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 40px -20px rgba(43, 41, 38, 0.25);
  z-index: 99;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a { padding: .9rem 0; font-size: 1.1rem; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-weight: 500; }
.mobile-nav a.btn { margin-top: .8rem; justify-content: center; border-bottom: 0; font-family: var(--font-body); }

@media (max-width: 960px) {
  .site-nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 7rem 0 5rem;
  overflow: hidden;
  color: var(--cream);
  isolation: isolate;
}
.hero-image {
  position: absolute; inset: 0;
  z-index: -1;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  animation: slowZoom 18s ease-out forwards;
}
@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(43, 41, 38, 0.1) 0%, rgba(43, 41, 38, 0.35) 55%, rgba(43, 41, 38, 0.82) 100%),
    linear-gradient(90deg, rgba(43, 41, 38, 0.55) 0%, rgba(43, 41, 38, 0) 55%);
}
.hero-content { position: relative; z-index: 1; max-width: 860px; }
.hero-content .eyebrow { color: rgba(245, 240, 225, 0.82); }
.hero-content .eyebrow .dot { background: var(--brass-bright); }
.hero-title {
  font-size: var(--fs-hero);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 1.5rem;
}
.hero-title .line { display: block; }
.hero-title .italic { color: var(--brass-bright); }
.hero-lede {
  max-width: 620px;
  font-size: var(--fs-lede);
  line-height: 1.5;
  color: rgba(245, 240, 225, 0.9);
  margin: 0 0 2.2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 3rem; }
.hero-ctas .btn-primary { background: var(--cream); color: var(--charcoal); }
.hero-ctas .btn-primary:hover { background: var(--brass-bright); color: var(--charcoal); }
.hero-ctas .btn-ghost { color: var(--cream); border-color: rgba(245, 240, 225, 0.3); }
.hero-ctas .btn-ghost:hover { background: rgba(245, 240, 225, 0.12); border-color: rgba(245, 240, 225, 0.6); color: var(--cream); }
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(245, 240, 225, 0.18);
  max-width: 560px;
}
.hero-meta div { display: flex; flex-direction: column; gap: .25rem; }
.hero-meta strong { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; line-height: 1; letter-spacing: -0.02em; }
.hero-meta span { font-size: .78rem; color: rgba(245, 240, 225, 0.72); letter-spacing: .02em; }
@media (max-width: 640px) {
  .hero-meta { grid-template-columns: 1fr; gap: 1rem; }
  .hero-meta strong { font-size: 1.2rem; }
}

.hero-scroll {
  position: absolute;
  bottom: 1.6rem;
  right: var(--gutter);
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(245, 240, 225, 0.35);
  display: grid; place-items: center;
  color: var(--cream);
  animation: bob 2.2s ease-in-out infinite;
}
.hero-scroll svg { width: 18px; height: 18px; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ==========================================================
   TRUST STRIP
   ========================================================== */
.trust {
  background: var(--charcoal);
  color: var(--cream);
  padding: 3.5rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem 3rem;
  align-items: start;
}
.trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: center;
  border-left: 1px solid rgba(245, 240, 225, 0.15);
  padding-left: 1.5rem;
}
.trust-item:first-child { border-left: 0; padding-left: 0; }
.trust-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1;
  color: var(--brass-bright);
  letter-spacing: -0.04em;
}
.trust-icon {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  color: var(--brass-bright);
}
.trust-icon svg { width: 100%; height: 100%; }
.trust-item p { margin: 0; font-size: .92rem; line-height: 1.45; color: rgba(245, 240, 225, 0.78); }
.trust-item p strong { color: var(--cream); font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; display: block; margin-bottom: .2rem; letter-spacing: -0.01em; }

@media (max-width: 720px) {
  .trust-item { border-left: 0; padding-left: 0; border-top: 1px solid rgba(245, 240, 225, 0.15); padding-top: 1.2rem; }
  .trust-item:first-child { border-top: 0; padding-top: 0; }
}

/* ==========================================================
   SECTION HEAD (shared)
   ========================================================== */
.section-head { max-width: 760px; margin: 0 0 3rem; }
.section-head h2 { font-size: var(--fs-h2); margin: 0 0 1rem; font-weight: 500; }
.section-lede { font-size: var(--fs-lede); color: var(--charcoal-soft); margin: 0; max-width: 620px; line-height: 1.55; }

section { padding: clamp(4rem, 9vw, 7rem) 0; }

/* ==========================================================
   SERVICES
   ========================================================== */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -30px rgba(43, 41, 38, 0.25);
  border-color: var(--line-warm);
}
.service-card figure { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; }
.service-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.service-card:hover figure img { transform: scale(1.04); }
.service-body { padding: 1.5rem 1.6rem 1.75rem; }
.service-body h3 { font-size: var(--fs-h3); margin: 0 0 .6rem; color: var(--charcoal); }
.service-body p { margin: 0 0 1rem; color: var(--charcoal-soft); font-size: .95rem; line-height: 1.55; }
.service-meta {
  display: block;
  font-size: .75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  border-top: 1px solid var(--line);
  padding-top: .9rem;
  font-weight: 500;
}

/* ==========================================================
   TRANSFORMATIONS / B/A SLIDER
   ========================================================== */
.transformations { background: var(--cream-dark); }
.ba-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 900px) { .ba-wrap { grid-template-columns: 1fr; } }

.ba-slider {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--charcoal);
  cursor: ew-resize;
  user-select: none;
  box-shadow: 0 40px 80px -50px rgba(43, 41, 38, 0.4);
}
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-overlay { position: absolute; inset: 0; overflow: hidden; width: 50%; transition: width 0s; will-change: width; }
.ba-overlay .ba-img { width: max(100vw, 1200px); max-width: none; }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 44px;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}
.ba-handle-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: var(--cream);
  box-shadow: 0 0 0 1px rgba(43, 41, 38, 0.15);
}
.ba-handle-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--charcoal);
  display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(43, 41, 38, 0.35);
  border: 2px solid var(--cream);
}
.ba-handle-knob svg { width: 22px; height: 22px; }
.ba-tag {
  position: absolute;
  top: 1rem;
  padding: .35rem .85rem;
  font-size: .7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(43, 41, 38, 0.6);
  color: var(--cream);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  z-index: 2;
  pointer-events: none;
  font-weight: 500;
}
.ba-tag-before { left: 1rem; }
.ba-tag-after { right: 1rem; background: rgba(176, 141, 87, 0.85); }

/* ==========================================================
   GALLERY
   ========================================================== */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 1.2rem;
}
.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  box-shadow: 0 2px 0 rgba(43,41,38,0.05);
  transition: transform .4s var(--ease);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.gallery-item:hover { transform: translateY(-3px); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-wide { grid-column: span 2; }
  .gallery-tall { grid-row: auto; }
}
@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-wide { grid-column: span 1; }
}

/* ==========================================================
   PROCESS
   ========================================================== */
.process { background: var(--charcoal); color: var(--cream); }
.process .section-head h2 { color: var(--cream); }
.process .section-lede { color: rgba(245, 240, 225, 0.7); }
.process-steps {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding: 2.5rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(245, 240, 225, 0.2);
  transition: border-color .3s var(--ease);
}
.process-step:hover { border-top-color: var(--brass-bright); }
.process-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--brass-bright);
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 1rem;
}
.process-step h3 { color: var(--cream); margin: 0 0 .7rem; font-size: 1.3rem; font-weight: 500; }
.process-step p { color: rgba(245, 240, 225, 0.72); font-size: .92rem; line-height: 1.55; margin: 0; }

/* ==========================================================
   REVIEWS
   ========================================================== */
.reviews { background: var(--cream); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.3rem;
}
.review {
  margin: 0;
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.8rem 1.6rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all .3s var(--ease);
}
.review:hover { border-color: var(--brass); transform: translateY(-2px); box-shadow: 0 20px 40px -25px rgba(43,41,38,0.2); }
.review::before {
  content: "\201C";
  position: absolute;
  top: .4rem; right: 1rem;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--terracotta);
  opacity: .25;
}
.stars { color: var(--brass); letter-spacing: .2em; font-size: 1rem; }
.review p { font-family: var(--font-display); font-weight: 400; font-style: italic; font-size: 1.08rem; line-height: 1.45; margin: 0; color: var(--charcoal); }
.review cite {
  font-style: normal;
  font-size: .82rem;
  letter-spacing: .05em;
  color: var(--charcoal-mute);
  margin-top: auto;
  padding-top: .8rem;
  border-top: 1px solid var(--line);
}
.reviews-footer {
  text-align: center;
  margin: 3rem 0 0;
  font-size: .92rem;
  color: var(--charcoal-mute);
}
.reviews-footer a { color: var(--terracotta-dark); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .25em; }

/* ==========================================================
   AREAS
   ========================================================== */
.areas { background: var(--cream-dark); }
.areas-list {
  list-style: none; padding: 0; margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem .5rem;
}
.areas-list li {
  padding: .55rem 1.1rem;
  border: 1px solid var(--line-warm);
  border-radius: 999px;
  background: var(--cream-light);
  font-size: .92rem;
  color: var(--charcoal-soft);
  font-family: var(--font-display);
  font-weight: 400;
  transition: all .25s var(--ease);
}
.areas-list li:hover { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }
.areas-note {
  margin: 2rem 0 0;
  font-size: .9rem;
  color: var(--charcoal-mute);
  font-style: italic;
  font-family: var(--font-display);
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq { background: var(--cream); }
.faq-list { max-width: 780px; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 1.3rem 0;
  transition: background .2s var(--ease);
}
.faq-item:last-of-type { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--charcoal);
  padding-right: 0.5rem;
  transition: color .2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.8rem;
  line-height: 1;
  color: var(--terracotta);
  transition: transform .3s var(--ease);
  font-family: var(--font-body);
  font-weight: 300;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--terracotta-dark); }
.faq-item p { margin: 1rem 0 0; color: var(--charcoal-soft); font-size: .98rem; line-height: 1.65; max-width: 640px; }

/* ==========================================================
   CONTACT
   ========================================================== */
.contact { background: var(--charcoal); color: var(--cream); }
.contact .eyebrow { color: rgba(245, 240, 225, 0.7); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }

.contact-intro h2 { color: var(--cream); font-size: var(--fs-h2); margin: 0 0 1rem; }
.contact-intro p { color: rgba(245, 240, 225, 0.75); font-size: var(--fs-lede); line-height: 1.55; margin: 0 0 2rem; max-width: 520px; }
.contact-channels { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .9rem; }
.contact-channels li, .contact-channels a {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.05rem 1.3rem;
  background: rgba(245, 240, 225, 0.05);
  border: 1px solid rgba(245, 240, 225, 0.12);
  border-radius: var(--radius);
  color: var(--cream);
  transition: all .25s var(--ease);
}
.contact-channels a:hover { background: rgba(245, 240, 225, 0.1); border-color: rgba(176, 141, 87, 0.5); transform: translateX(2px); }
.contact-channels svg { width: 22px; height: 22px; color: var(--brass-bright); }
.contact-channels strong { display: block; font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; letter-spacing: -0.01em; }
.contact-channels em { font-style: normal; display: block; font-size: .82rem; color: rgba(245, 240, 225, 0.6); margin-top: .15rem; }

.contact-form {
  background: var(--cream-light);
  color: var(--charcoal);
  padding: 2rem 2rem 2.2rem;
  border-radius: var(--radius-lg);
}
.contact-form h3 { font-size: 1.4rem; margin: 0 0 1.25rem; font-weight: 500; }
.contact-form label {
  display: block;
  margin-bottom: 1rem;
}
.contact-form label span {
  display: block;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--charcoal-mute);
  margin-bottom: .4rem;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: .85rem 1rem;
  font: inherit;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: var(--cream-light);
}
.contact-form button { width: 100%; justify-content: center; margin-top: .5rem; }
.contact-form button.btn-primary { background: var(--charcoal); }
.contact-form button.btn-primary:hover { background: var(--terracotta-dark); }
.form-note { font-size: .8rem; color: var(--charcoal-mute); margin: 1rem 0 0; text-align: center; }

/* ==========================================================
   STICKY MOBILE CTA
   ========================================================== */
.sticky-cta {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 80;
  display: none;
  gap: .6rem;
  padding: .5rem;
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 30px -15px rgba(43, 41, 38, 0.35);
}
.sticky-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .85rem 1rem;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 500;
}
.sticky-btn svg { width: 18px; height: 18px; }
.sticky-call { background: var(--charcoal); color: var(--cream); }
.sticky-whatsapp { background: var(--sage); color: var(--cream); }

@media (hover: none) and (pointer: coarse), (max-width: 720px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 5.5rem; }
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: var(--charcoal);
  color: rgba(245, 240, 225, 0.7);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(245, 240, 225, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand { display: flex; gap: 1rem; align-items: flex-start; }
.footer-brand .brand-mark { background: var(--brass-bright); color: var(--charcoal); }
.footer-brand p { margin: 0; color: rgba(245, 240, 225, 0.75); font-size: .92rem; line-height: 1.6; }
.footer-brand strong { color: var(--cream); font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; }
.footer-brand a { color: var(--brass-bright); }
.footer-nav { display: flex; flex-direction: column; gap: .6rem; }
.footer-nav a { font-size: .92rem; color: rgba(245, 240, 225, 0.75); transition: color .2s; }
.footer-nav a:hover { color: var(--cream); }
.footer-areas h4 { font-family: var(--font-display); font-weight: 500; font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(245, 240, 225, 0.5); margin: 0 0 .8rem; }
.footer-areas p { margin: 0; font-size: .88rem; line-height: 1.7; color: rgba(245, 240, 225, 0.75); }
.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 240, 225, 0.08);
  font-size: .82rem;
  color: rgba(245, 240, 225, 0.5);
}
.footer-base p { margin: 0; }
.footer-base .tweb a { color: var(--brass-bright); }
@media (max-width: 640px) {
  .footer-base { flex-direction: column; text-align: center; }
}

/* ==========================================================
   REVEAL ANIMATIONS
   ========================================================== */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
