/* ==========================================================================
   EXTRUDE — Excellent Frame | One-page site styles
   ========================================================================== */

:root {
  /* Brand colors — sampled from official logo & color palette assets */
  --ink: #4a4636;
  --ink-soft: #726c57;
  --ink-faint: #a6a189;
  --accent: #8f8763;
  --accent-dark: #6e6544;
  --sage: #c0d1ad;
  --sage-deep: #5f7d47;
  --cream: #fbf8f1;
  --beige: #f6eedb;
  --tan: #cdbfa5;
  --tan-line: #e2d8c3;
  --white: #ffffff;
  --wa-green: #0e7c3f;
  --wa-green-hover: #0a622f;
  --wa-green-bright: #25d366;

  /* Type */
  --font-display: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  /* Spacing scale (4/8pt rhythm) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* Layout */
  --container: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(74, 70, 54, 0.08);
  --shadow-md: 0 8px 24px -8px rgba(74, 70, 54, 0.22);
  --shadow-lg: 0 20px 48px -16px rgba(74, 70, 54, 0.28);

  --dur-fast: 150ms;
  --dur-base: 250ms;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------- */
/* Reset                                                                  */
/* --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { min-height: 100dvh; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea { font: inherit; }

:focus-visible {
  outline: 2.5px solid var(--accent-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  /* The product marquee is ambient brand motion, not a UI transition —
     keep it running even when reduced motion is requested (some phones/
     battery-savers report this by default, which would otherwise freeze it). */
  .marquee-track {
    animation-duration: 48s !important;
    animation-iteration-count: infinite !important;
  }
}

html { scroll-behavior: smooth; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-7); }
}

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -60px;
  background: var(--ink);
  color: var(--white);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top var(--dur-base) var(--ease);
}
.skip-link:focus { top: var(--space-4); }

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent-dark);
  border-radius: 2px;
}

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-7);
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.5rem + 1.7vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-top: var(--space-3);
}
.section-head p {
  margin-top: var(--space-4);
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

/* --------------------------------------------------------------------- */
/* Buttons                                                                */
/* --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
  padding: 0 var(--space-5);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.btn:active { transform: scale(0.97); }
.btn svg { flex-shrink: 0; width: 20px; height: 20px; }

.btn-primary {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--wa-green-hover); box-shadow: var(--shadow-lg); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--tan);
}
.btn-outline:hover { border-color: var(--accent-dark); background: var(--beige); }

.btn-ghost {
  background: var(--beige);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--tan-line); }

.btn-sm { min-height: 40px; padding: 0 var(--space-4); font-size: 0.88rem; }

.btn-block { width: 100%; }

/* --------------------------------------------------------------------- */
/* Header                                                                 */
/* --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(251, 248, 241, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--tan-line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: var(--space-4);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.brand img { height: 48px; width: auto; }

.main-nav {
  display: none;
  margin-left: auto;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  padding: var(--space-2) 0;
  border-bottom: 2px solid transparent;
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.main-nav a:hover,
.main-nav a.active { color: var(--ink); border-color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: var(--space-3); }

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  color: var(--ink);
}
.nav-toggle:hover { background: var(--beige); }
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-nav {
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--cream);
  z-index: 490;
  padding: var(--space-6) var(--space-5);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
  overflow-y: auto;
}
.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: var(--space-2); }
.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  padding: var(--space-4) var(--space-2);
  border-bottom: 1px solid var(--tan-line);
  text-decoration: none;
  color: var(--ink);
}
.mobile-nav .header-actions { margin-top: var(--space-6); flex-direction: column; align-items: stretch; }
.mobile-nav .header-actions .btn { display: flex; }

@media (min-width: 1024px) {
  .main-nav { display: block; }
  .nav-toggle, .mobile-nav { display: none; }
  .site-header > .container > .header-actions { display: none; }
}

/* --------------------------------------------------------------------- */
/* Hero — autoplay looping video                                         */
/* --------------------------------------------------------------------- */
.hero {
  padding: 0;
}

.hero-stage {
  position: relative;
  width: 100%;
  height: min(560px, calc(100vh - 76px));
  min-height: 380px;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(160deg, #3f3c2d, var(--ink) 60%);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

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

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(30, 28, 18, 0.72) 0%, rgba(30, 28, 18, 0.28) 32%, rgba(30, 28, 18, 0) 58%);
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  top: var(--space-5);
  left: var(--space-5);
  width: 84px;
  height: 84px;
  z-index: 2;
}
.hero-badge svg { width: 100%; height: 100%; }
.hero-badge .ring-text {
  animation: spin-slow 22s linear infinite;
  transform-origin: 50% 50%;
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-badge .ring-text { animation: none; }
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: var(--space-6) var(--space-5);
  color: var(--white);
}
.hero-content .eyebrow {
  color: var(--sage);
  font-size: 0.78rem;
}
.hero-content .eyebrow::before { background: var(--sage); }

.hero-content h1 {
  margin-top: var(--space-3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 1.6rem + 2vw, 3rem);
  line-height: 1.08;
  text-wrap: balance;
  max-width: 14ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.hero-ctas {
  margin-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}
.hero-ctas .btn-outline {
  background: rgba(251, 248, 241, 0.12);
  border-color: rgba(251, 248, 241, 0.55);
  color: var(--white);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-ctas .btn-outline:hover { background: rgba(251, 248, 241, 0.22); border-color: var(--white); }

@media (max-width: 600px) {
  .hero-stage { height: min(440px, calc(100vh - 76px)); min-height: 320px; }
  .hero-content h1 { max-width: 11ch; }
}

@media (min-width: 900px) {
  .hero-content { padding: var(--space-8); }
}

/* --------------------------------------------------------------------- */
/* Quote strip                                                           */
/* --------------------------------------------------------------------- */
.quote-strip {
  background: var(--ink);
  color: var(--white);
  padding: var(--space-9) 0;
}
.quote-strip .container {
  max-width: 1040px;
  text-align: center;
}
.quote-main {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 0.9rem + 0.8vw, 1.5rem);
  line-height: 1.5;
  text-wrap: balance;
}
.quote-sub {
  margin-top: var(--space-4);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.6);
}

/* --------------------------------------------------------------------- */
/* About                                                                  */
/* --------------------------------------------------------------------- */
.about { padding: 0; }

/* Full-width photo banner, edge-to-edge like the hero — the workshop
   photo fills the card as a cropped background, with the team photos
   floating on top at the left and the copy on the right (desktop). */
.about-copy {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  width: 100%;
}
.about-copy-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 28, 18, 0.1) 0%, rgba(30, 28, 18, 0.55) 45%, rgba(30, 28, 18, 0.92) 100%);
}

.about-media {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  padding: var(--space-6) var(--space-5) 0;
}
.about-media .media-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-media .media-main img { display: block; width: 100%; height: auto; }

.about-copy-content {
  position: relative;
  z-index: 1;
  padding: var(--space-6) var(--space-5);
  color: var(--white);
}
.about-copy-content .eyebrow { color: var(--sage); }
.about-copy-content .eyebrow::before { background: var(--sage); }
.about-copy-content h2 {
  margin-top: var(--space-3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 1.2rem + 1.6vw, 2.5rem);
  line-height: 1.2;
  text-wrap: balance;
}
.about-copy-content .lead {
  margin-top: var(--space-3);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 42ch;
}
.about-copy-content .btn {
  margin-top: var(--space-5);
  align-self: flex-start;
  background: rgba(251, 248, 241, 0.14);
  border: 1px solid rgba(251, 248, 241, 0.55);
  color: var(--white);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.about-copy-content .btn:hover { background: rgba(251, 248, 241, 0.24); border-color: var(--white); }

@media (min-width: 960px) {
  .about-copy {
    min-height: 540px;
    display: flex;
    align-items: center;
  }
  .about-copy::after {
    background: linear-gradient(100deg, rgba(30, 28, 18, 0.08) 0%, rgba(30, 28, 18, 0.5) 40%, rgba(30, 28, 18, 0.9) 74%);
  }
  .about-media {
    position: absolute;
    left: max(var(--space-7), calc((100% - var(--container)) / 2 + var(--space-7)));
    top: 50%;
    transform: translateY(-50%);
    width: 34%;
    max-width: 380px;
    padding: 0;
  }
  .about-copy-content {
    margin-left: auto;
    width: 50%;
    padding: var(--space-8);
  }
}

/* --------------------------------------------------------------------- */
/* Products                                                               */
/* --------------------------------------------------------------------- */
.products { padding: var(--space-9) 0; background: var(--beige); }

.product-carousel {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.product-scroller {
  display: flex;
  gap: var(--space-5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: var(--space-1);
  scrollbar-width: none;
  flex: 1;
}
.product-scroller::-webkit-scrollbar { display: none; }
.product-scroller.no-snap { scroll-snap-type: none; scroll-behavior: auto; }

.product-slide {
  scroll-snap-align: start;
  flex: 0 0 min(320px, 72vw);
  display: flex;
  flex-direction: column;
}
.product-slide-img {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--tan-line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}
.product-slide-img img { width: 100%; height: 100%; object-fit: contain; }
.product-slide-img.align-bottom img { object-position: center bottom; }

.product-slide h3 {
  margin-top: var(--space-4);
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}
.product-slide h3 span {
  display: block;
  margin-top: 2px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.carousel-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--tan-line);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.carousel-arrow:hover { background: var(--white); border-color: var(--accent); }
.carousel-arrow svg { width: 22px; height: 22px; }
.carousel-arrow:disabled { opacity: 0.35; pointer-events: none; }
@media (max-width: 700px) {
  .carousel-arrow { display: none; }
}

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2) var(--space-1);
  margin-top: var(--space-5);
  max-width: 100%;
}
.carousel-dots button {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-dots button::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tan);
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.carousel-dots button.active::after { background: var(--accent-dark); transform: scale(1.3); }

/* --------------------------------------------------------------------- */
/* Marquee — "Anything can be framed"                                    */
/* --------------------------------------------------------------------- */
.marquee-section { padding: var(--space-9) 0; background: var(--cream); overflow: hidden; }
.marquee-section .container { padding-bottom: 0; }

.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: var(--space-8);
  padding: var(--space-5) var(--space-5) var(--space-6);
  animation: marquee-scroll 48s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}
.marquee.is-playing .marquee-track { animation-play-state: running; }

.marquee-item { flex: 0 0 auto; height: 190px; display: flex; }
.marquee-item img { height: 100%; width: auto; display: block; }

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

@media (min-width: 640px) {
  .marquee-item { height: 230px; }
  .marquee-track { gap: var(--space-9); }
}
@media (min-width: 1100px) {
  .marquee-item { height: 260px; }
}

/* --------------------------------------------------------------------- */
/* Process                                                                */
/* --------------------------------------------------------------------- */
.process { padding: var(--space-9) 0; }
.process-grid {
  display: grid;
  gap: var(--space-5);
  counter-reset: step;
}
.process-step {
  display: grid;
  gap: var(--space-4);
  align-items: center;
}
.process-step .step-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 3 / 2;
}
.process-step .step-media img { width: 100%; height: 100%; object-fit: cover; }
.process-step .step-copy { counter-increment: step; }
.process-step .step-copy .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent-dark);
  letter-spacing: 0.08em;
}
.process-step .step-copy h3 {
  margin-top: var(--space-2);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}
.process-step .step-copy p { margin-top: var(--space-3); color: var(--ink-soft); }

@media (min-width: 860px) {
  .process-step { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .process-step:nth-child(even) .step-media { order: 2; }
}

/* --------------------------------------------------------------------- */
/* Testimonials                                                          */
/* --------------------------------------------------------------------- */
.testimonials { padding: var(--space-9) 0; background: var(--beige); }
.testimonial-scroller {
  display: flex;
  gap: var(--space-5);
  overflow-x: auto;
  padding-bottom: var(--space-4);
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--tan) transparent;
}
.testimonial-card {
  scroll-snap-align: start;
  flex: 0 0 min(320px, 84vw);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.testimonial-card .stars { color: #e8ab1f; letter-spacing: 2px; font-size: 0.95rem; }
.testimonial-card p.quote { color: var(--ink); font-size: 0.96rem; line-height: 1.65; flex: 1; }
.testimonial-card .who {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-2);
  padding-top: var(--space-3);
  border-top: 1px solid var(--tan-line);
}
.testimonial-card .who .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--sage-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-card .who span { font-size: 0.82rem; color: var(--ink-soft); font-weight: 600; }

.rating-summary {
  margin-top: var(--space-6);
  display: flex;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-6);
  box-shadow: var(--shadow-sm);
}
.rating-summary .score { text-align: center; }
.rating-summary .score-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.rating-summary .score .stars {
  color: #e8ab1f;
  font-size: 2.4rem;
  letter-spacing: 5px;
  line-height: 1;
}
.rating-summary .score strong {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
}
.rating-summary .score strong span {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink-faint);
}
@media (max-width: 420px) {
  .rating-summary .score-row { gap: var(--space-2); }
  .rating-summary .score .stars { font-size: 1.7rem; letter-spacing: 3px; }
  .rating-summary .score strong { font-size: 2.1rem; }
  .rating-summary .score strong span { font-size: 1.05rem; }
}
.rating-summary .score p {
  margin-top: var(--space-3);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------- */
/* Contact / Footer                                                      */
/* --------------------------------------------------------------------- */
.contact { padding: var(--space-9) 0; }
.contact-grid {
  display: grid;
  gap: var(--space-5);
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.contact-card .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--sage);
  color: var(--sage-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card .icon-wrap svg { width: 24px; height: 24px; }
.contact-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
.contact-card p { color: var(--ink-soft); font-size: 0.95rem; }
.contact-card .links { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: auto; }

.mp-badge { padding: 0 var(--space-4); }
.mp-badge svg { height: 18px; width: auto; display: block; }
.mp-badge-wide svg { height: 14px; }

@media (min-width: 760px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--space-7) 0 var(--space-6);
}
.footer-top {
  display: grid;
  gap: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-logo { display: block; height: 68px; width: auto; }
.footer-brand p { margin-top: var(--space-5); max-width: 42ch; font-size: 0.92rem; line-height: 1.7; color: rgba(255, 255, 255, 0.7); }
.footer-social { display: flex; gap: var(--space-3); margin-top: var(--space-5); }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast) var(--ease);
}
.footer-social a:hover { background: var(--sage); color: var(--ink); }
.footer-social svg { width: 18px; height: 18px; }

.footer-cols { display: grid; gap: var(--space-6); grid-template-columns: repeat(2, 1fr); }
.footer-col h4 { font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55); }
.footer-col ul { margin-top: var(--space-4); display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col a { text-decoration: none; font-size: 0.92rem; color: rgba(255, 255, 255, 0.85); }
.footer-col a:hover { color: var(--sage); }

.footer-bottom {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 860px) {
  .footer-top { grid-template-columns: 1.2fr 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

/* --------------------------------------------------------------------- */
/* Floating WhatsApp button                                              */
/* --------------------------------------------------------------------- */
.wa-float {
  position: fixed;
  right: var(--space-5);
  bottom: calc(var(--space-5) + env(safe-area-inset-bottom, 0px));
  z-index: 600;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.wa-float:hover { background: var(--wa-green-hover); transform: scale(1.06); }
.wa-float svg { width: 28px; height: 28px; }

/* --------------------------------------------------------------------- */
/* Reveal-on-scroll                                                      */
/* --------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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