@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400&family=Inter:wght@400;450;500;600&display=swap');

/* ===================================
   STRAIGHT TO SOURCE — MAIN STYLESHEET
   Direction: editorial, calm, high-trust.
   A high-contrast serif for voice, a quiet grotesque for
   information. Warm paper. Ink + a single terracotta accent.
   Borderless. Hairline detail. Photography-first. Motion you
   feel rather than notice.
   =================================== */

/* ===== 1. DESIGN TOKENS ===== */
:root,
[data-theme="terracotta"] {
  /* Accent — Indian terracotta, used sparingly */
  --accent: #9c4a2e;
  --accent-strong: #7e3a23;
  --accent-tint: #f0e7df;
  --accent-ring: rgba(156, 74, 46, 0.26);
}

[data-theme="teal"] {
  /* Accent — original brand teal from the mark */
  --accent: #2b7d9e;
  --accent-strong: #1f6280;
  --accent-tint: #eef5f8;
  --accent-ring: rgba(43, 125, 158, 0.28);
}

:root {
  /* Neutrals — warm, paper-like */
  --ink: #1a1a17;        /* primary text, near-black, warm */
  --ink-soft: #57534a;   /* secondary text */
  --ink-faint: #8a857b;  /* tertiary / captions */
  --paper: #f6f3ee;      /* base surface, warm off-white */
  --surface: #efeae1;    /* alternating surface */
  --surface-2: #e7e1d6;
  --hairline: #ddd6c9;   /* borders, dividers (warm) */
  --ink-deep: #211f1a;   /* dark sections */

  /* Whisper-soft elevation (earned, not default) */
  --shadow-sm: 0 1px 2px rgba(26, 26, 23, 0.04);
  --shadow-md: 0 18px 40px -22px rgba(26, 26, 23, 0.30);
  --shadow-lg: 0 36px 80px -32px rgba(26, 26, 23, 0.40);

  /* Geometry — squared, considered */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius: 6px;
  --radius-lg: 10px;
  --radius-pill: 999px;

  /* Rhythm */
  --space-section: clamp(84px, 12vw, 168px);
  --container: 1200px;

  /* Motion — quiet, physical */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 0.5s;

  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ===== 2. RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

::selection {
  background: var(--ink);
  color: var(--paper);
}

/* ===== 3. TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--ink);
  line-height: 1.06;
  letter-spacing: -0.01em;
  font-weight: 400;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 5.6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.1rem); }
h3 { font-size: 1.45rem; font-weight: 500; }
h4 { font-size: 1.2rem; font-weight: 500; }
h5 { font-size: 1.05rem; font-weight: 500; }
h6 { font-size: 0.95rem; font-weight: 500; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--ink);
  text-decoration: none;
  transition: color var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

a:hover, a:focus { color: var(--accent); }

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

/* Eyebrow / kicker label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

/* ===== 4. LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
}

.section-head .section-title {
  margin-bottom: 0;
}

.section-head .eyebrow {
  margin-bottom: 1rem;
}

.section-title {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* Generic section + editorial prose + stat blocks */
.section { padding: var(--space-section) 32px; }

.prose {
  max-width: 64ch;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.8;
}

.prose p { margin-bottom: 1.4rem; }
.prose p:last-child { margin-bottom: 0; }

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border-top: 1px solid var(--hairline);
}

.stat {
  text-align: center;
  padding: 2.75rem 1.5rem;
  border-bottom: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
  background: transparent;
}

.stat:last-child { border-right: none; }

.stat__num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.stat__label {
  display: block;
  color: var(--ink-faint);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.5;
}

/* ===== 5. BUTTONS ===== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.8rem;
  font-size: 0.92rem;
  font-weight: 500;
  font-family: var(--font-sans);
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  border-radius: var(--radius-xs);
  cursor: pointer;
  text-align: center;
  transition: transform var(--dur) var(--ease),
              background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.button--primary {
  background-color: var(--ink);
  color: var(--paper);
}

.button--primary:hover {
  background-color: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.button--secondary {
  background-color: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.button--secondary:hover {
  background-color: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.button--large {
  padding: 1.1rem 2.3rem;
  font-size: 1rem;
}

.button svg { width: 1.15em; height: 1.15em; flex-shrink: 0; }

/* WhatsApp — a quiet secondary channel, not a brand colour */
.button--whatsapp {
  background-color: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.button--whatsapp:hover {
  background-color: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* ===== 6. SKIP LINK ===== */
.skip-to-main {
  position: absolute;
  top: -48px;
  left: 12px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 200;
  transition: top var(--dur) var(--ease);
}

.skip-to-main:focus { top: 12px; color: var(--paper); }

/* ===== 7. HEADER & NAV ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(246, 243, 238, 0.78);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-bottom: 1px solid var(--hairline);
}

.navbar { padding: 0.7rem 0; }

.navbar__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.navbar__logo {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  transition: opacity var(--dur) var(--ease);
}

.navbar__logo:hover { opacity: 0.65; }

.navbar__logo img {
  width: auto;
  height: 50px;
}

/* Logo image already contains the wordmark — hide redundant text */
.navbar__brand {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.navbar__menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2.5rem;
}

.navbar__link {
  font-weight: 450;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  position: relative;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: width var(--dur) var(--ease);
}

.navbar__link:hover, .navbar__link:focus { color: var(--ink); }
.navbar__link:hover::after, .navbar__link:focus::after,
.navbar__link[aria-current="page"]::after { width: 100%; }
.navbar__link[aria-current="page"] { color: var(--ink); }

.navbar__toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 6px;
}

.navbar__toggle span {
  width: 24px;
  height: 1.5px;
  background-color: var(--ink);
  transition: all var(--dur) var(--ease);
}

.navbar__toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.navbar__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navbar__toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ===== 8. HERO (inner pages — calm, editorial, centered) ===== */
.hero {
  position: relative;
  padding: clamp(96px, 15vw, 184px) 32px clamp(72px, 11vw, 128px);
  text-align: center;
  overflow: hidden;
  background: var(--paper);
}

.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--hairline);
}

.hero__content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.hero__title {
  font-size: clamp(2.9rem, 7vw, 5.5rem);
  letter-spacing: -0.018em;
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero__description {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.hero__cta {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== 8b. HOME HERO (full-bleed, graded image, bottom-left voice) ===== */
.hero-home {
  position: relative;
  min-height: min(92vh, 880px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink-deep);
}

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

.hero-home__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.22) contrast(1.02) brightness(0.92) saturate(0.92);
  transform: scale(1.06);
  animation: hero-settle 1.4s var(--ease) forwards;
}

@keyframes hero-settle {
  to { transform: scale(1); }
}

.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(20, 19, 16, 0.78) 0%, rgba(20, 19, 16, 0.30) 48%, rgba(20, 19, 16, 0) 78%),
    linear-gradient(0deg, rgba(20, 19, 16, 0.65) 0%, rgba(20, 19, 16, 0) 45%);
}

.hero-home__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px clamp(56px, 8vw, 104px);
}

.hero-home__content { max-width: 36rem; }

.hero-home .eyebrow { color: #e7c9b8; margin-bottom: 1.5rem; }

.hero-home__title {
  color: #fdfbf7;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-home__description {
  color: rgba(253, 251, 247, 0.82);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.6;
  max-width: 46ch;
  margin-bottom: 2.5rem;
}

.hero-home .button--primary {
  background: var(--paper);
  color: var(--ink);
}

.hero-home .button--primary:hover {
  background: var(--accent);
  color: #fff;
}

.hero-home .button--whatsapp {
  color: #fdfbf7;
  border-color: rgba(253, 251, 247, 0.4);
}

.hero-home .button--whatsapp:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.hero-home__cta {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

/* ===== 9. SECTION SHELLS ===== */
.value-props,
.categories-section,
.process-section,
.testimonials-section {
  padding: var(--space-section) 32px;
}

.section--surface { background-color: var(--surface); }
.value-props { background-color: var(--surface); }
.process-section { background-color: var(--ink-deep); }

/* ===== 9b. LEDE / STATEMENT (single large editorial line) ===== */
.statement {
  padding: var(--space-section) 32px;
  text-align: center;
}

.statement__text {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 20ch;
  margin: 0 auto;
}

.statement__text em {
  font-style: italic;
  color: var(--accent);
}

/* ===== 9c. PILLARS (numbered, borderless) ===== */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.pillar {
  padding: 2.5rem 0;
  border-top: 1px solid var(--hairline);
}

.pillar:last-child { border-bottom: 1px solid var(--hairline); }

.pillar__num {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.75rem;
}

.pillar__title {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.pillar__text {
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 46ch;
}

@media (min-width: 860px) {
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .pillar {
    padding: 2.5rem 2.5rem 3rem 0;
    border-top: 1px solid var(--hairline);
    border-bottom: none;
  }
  .pillar:last-child { border-bottom: none; }
}

/* ===== 9d. THE EDIT (curated horizontal category scroll) ===== */
.edit {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 32px 1.5rem;
  margin: 0 -32px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.edit::-webkit-scrollbar { display: none; }

.edit__item {
  flex: 0 0 clamp(248px, 34vw, 400px);
  scroll-snap-align: start;
  text-decoration: none;
  color: var(--ink);
}

.edit__media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--surface-2);
  margin-bottom: 1.1rem;
}

.edit__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.02);
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.edit__item:hover .edit__media img { transform: scale(1.04); filter: none; }

.edit__name {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.edit__meta {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ===== 10. VALUE / FEATURE CARDS (borderless, hairline) ===== */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 0;
}

.value-card {
  background: transparent;
  padding: 2.5rem 2.5rem 2.5rem 0;
  border-top: 1px solid var(--hairline);
  text-align: left;
  transition: opacity var(--dur) var(--ease);
}

.value-card:hover { opacity: 1; }

.value-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.value-card__icon svg { width: 28px; height: 28px; }

.value-card__title {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.value-card__text {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}

/* ===== 11. CATEGORY CARDS (image-forward, no chrome) ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 2.5vw, 2rem);
}

.category-card {
  background: transparent;
  overflow: visible;
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

.category-card__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: var(--surface-2);
  margin-bottom: 1.25rem;
}

.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.02);
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.category-card:hover .category-card__image img { transform: scale(1.04); filter: none; }

.category-card__title {
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
}

.category-card__description {
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.category-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: auto 0 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.category-card__link::after {
  content: '\2192';
  transition: transform var(--dur) var(--ease);
}

.category-card:hover .category-card__link { color: var(--accent); }
.category-card:hover .category-card__link::after { transform: translateX(5px); }

/* ===== 12. PROCESS (on dark ground) ===== */
.process-section .section-title,
.process-section .eyebrow { color: #fdfbf7; }
.process-section .section-title { color: #fdfbf7; }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.process-step {
  text-align: left;
  padding: 0;
}

.process-step__number {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0;
  color: #e7c9b8;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(253, 251, 247, 0.16);
}

.process-step__title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: #fdfbf7;
}

.process-step__description {
  color: rgba(253, 251, 247, 0.66);
  font-size: 0.98rem;
  line-height: 1.6;
}

.process-divider { display: none; }

@media (min-width: 768px) {
  .process-timeline { grid-template-columns: repeat(4, 1fr); }
}

/* ===== 12b. REGIONS (proximity proof) ===== */
.regions {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--hairline);
}

.region {
  padding: 2rem 0;
  border-bottom: 1px solid var(--hairline);
}

.region__name {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.region__craft {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

@media (min-width: 760px) {
  .regions { grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--hairline); }
  .region {
    padding: 2.25rem 1.75rem 2.5rem 0;
    border-bottom: none;
    border-right: 1px solid var(--hairline);
  }
  .region:last-child { border-right: none; padding-right: 0; }
}

/* ===== 13. TESTIMONIALS / TRUST QUOTE ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
}

.testimonial {
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
  font-style: normal;
  display: flex;
  flex-direction: column;
}

.testimonial__quote {
  margin-bottom: 1.75rem;
  font-family: var(--font-serif);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.testimonial__footer { margin-top: auto; }

.testimonial__footer strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.15rem;
  font-size: 0.95rem;
}

.testimonial__footer em {
  color: var(--ink-faint);
  font-size: 0.85rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Single centered pull-quote */
.pullquote {
  max-width: 24ch;
  margin: 0 auto;
  text-align: center;
}

.pullquote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.4vw, 2.7rem);
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.75rem;
}

.pullquote cite {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ===== 14. FINAL CTA ===== */
.final-cta {
  background: var(--ink-deep);
  color: var(--paper);
  padding: var(--space-section) 32px;
  text-align: center;
}

.final-cta__title { color: #fdfbf7; margin-bottom: 1.25rem; }

.final-cta__description {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  margin-bottom: 2.5rem;
  color: rgba(253, 251, 247, 0.66);
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__buttons {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

.final-cta .button--primary { background: var(--paper); color: var(--ink); }
.final-cta .button--primary:hover { background: var(--accent); color: #fff; }

.final-cta .button--secondary,
.final-cta .button--whatsapp {
  border-color: rgba(253, 251, 247, 0.32);
  color: #fdfbf7;
  background: transparent;
}

.final-cta .button--secondary:hover,
.final-cta .button--whatsapp:hover {
  background-color: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

/* ===== 15. FOOTER ===== */
.footer {
  background-color: var(--paper);
  color: var(--ink-soft);
  padding: clamp(72px, 9vw, 112px) 32px 36px;
  border-top: 1px solid var(--hairline);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--hairline);
}

.footer__title {
  color: var(--ink-faint);
  margin-bottom: 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer__section:first-child .footer__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
}

.footer__text {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 36ch;
}

.footer__contact {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 2;
}

.footer__contact a { color: var(--ink); }
.footer__contact a:hover { color: var(--accent); }

.footer__list { list-style: none; }
.footer__list li { margin-bottom: 0.75rem; }

.footer__list a {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.footer__list a:hover { color: var(--ink); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--ink-faint);
}

.footer__legal {
  list-style: none;
  display: flex;
  gap: 1.75rem;
}

.footer__legal a { color: var(--ink-faint); }
.footer__legal a:hover { color: var(--ink); }

/* ===== 15b. CONTACT FORM ===== */
.contact-section { padding: var(--space-section) 32px; }

/* Contact panel (channel block) */
.whatsapp-panel {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2.5rem, 5vw, 3.75rem);
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
}

.whatsapp-panel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: var(--accent-tint);
  color: var(--accent);
  margin-bottom: 1.75rem;
}

.whatsapp-panel__icon svg { width: 32px; height: 32px; }

.whatsapp-panel__title { font-size: 1.8rem; margin-bottom: 0.9rem; }

.whatsapp-panel__text {
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 auto 2rem;
}

.whatsapp-panel__note {
  margin-top: 1.5rem;
  margin-bottom: 0;
  font-size: 0.85rem;
  color: var(--ink-faint);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  max-width: 900px;
  margin: 3.5rem auto 0;
  border-top: 1px solid var(--hairline);
}

.contact-info-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: transparent;
  border-bottom: 1px solid var(--hairline);
}

.contact-info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.contact-info-card__icon svg { width: 26px; height: 26px; }

.contact-info-card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.contact-info-card p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.8; }
.contact-info-card a { color: var(--ink); font-weight: 500; }
.contact-info-card a:hover { color: var(--accent); }

/* ===== 15c. FAQ ===== */
.faq { max-width: 760px; margin: 0 auto; }

.faq__item {
  border: none;
  border-top: 1px solid var(--hairline);
  border-radius: 0;
  background: transparent;
  padding: 1.5rem 0;
  margin-bottom: 0;
  transition: none;
}

.faq__item:last-child { border-bottom: 1px solid var(--hairline); }
.faq__item[open] { box-shadow: none; }

.faq__item summary {
  cursor: pointer;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  color: var(--accent);
  transition: transform var(--dur) var(--ease);
  flex-shrink: 0;
}

.faq__item[open] summary::after { transform: rotate(45deg); }

.faq__item p {
  margin-top: 1.1rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}

/* ===== 16. SCROLL REVEAL (purposeful motion) ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ===== 17. RESPONSIVE ===== */
@media (min-width: 980px) {
  .value-grid { grid-template-columns: repeat(4, 1fr); }
  .category-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__section:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .navbar__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background-color: rgba(246, 243, 238, 0.98);
    backdrop-filter: saturate(140%) blur(18px);
    -webkit-backdrop-filter: saturate(140%) blur(18px);
    border-bottom: 1px solid var(--hairline);
    padding: 0.5rem 0;
    gap: 0;
  }

  .navbar__menu.active { display: flex; }
  .navbar__menu li { border-bottom: 1px solid var(--hairline); }
  .navbar__menu li:last-child { border-bottom: none; }

  .navbar__link { display: block; padding: 1rem 32px; }
  .navbar__link::after { display: none; }

  .navbar__toggle { display: flex; }

  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .button { width: 100%; }

  .value-card { text-align: left; }
}

@media (max-width: 480px) {
  .container { padding: 0 22px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__legal { flex-direction: column; gap: 0.5rem; }
  .value-grid, .category-grid, .testimonials-grid { grid-template-columns: 1fr; }
}

/* ===== 18. ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-home__media img { transform: scale(1); animation: none; }
}

/* ===== 19. UTILITIES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 2rem; } .mt-4 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 2rem; } .mb-4 { margin-bottom: 3rem; }
.p-1 { padding: 0.5rem; } .p-2 { padding: 1rem; } .p-3 { padding: 2rem; }

/* ===== 20b. CATEGORY DETAIL (split media + body) ===== */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: 2; }
}

.split__media {
  border-radius: 0;
  overflow: hidden;
  border: none;
  box-shadow: none;
  aspect-ratio: 4 / 5;
  background: var(--surface-2);
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.18) contrast(1.02);
}

.split__body { color: var(--ink-soft); font-size: 1.1rem; line-height: 1.8; }
.split__body h2 { text-align: left; margin-bottom: 1.25rem; max-width: none; margin-left: 0; margin-right: 0; }
.split__body .eyebrow { margin-bottom: 1rem; }

.tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.tag-list li {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--accent-strong);
  background: var(--accent-tint);
  border-radius: var(--radius-xs);
  padding: 0.45rem 0.95rem;
}

/* ===== 20c. SERVICE CARDS (clickable value cards) ===== */
a.value-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

a.value-card:hover { color: inherit; }

.value-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.value-card__more::after { content: '\2192'; transition: transform var(--dur) var(--ease); }
a.value-card:hover .value-card__more { color: var(--accent); }
a.value-card:hover .value-card__more::after { transform: translateX(5px); }

/* ===== 20d. PRODUCT GALLERY (masonry columns) ===== */
.gallery {
  columns: 4 240px;
  column-gap: 16px;
}

.gallery__item {
  break-inside: avoid;
  margin: 0 0 16px;
  display: block;
  border-radius: 0;
  overflow: hidden;
  border: none;
  background: var(--surface-2);
}

.gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(0.16) contrast(1.02);
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.gallery__item:hover img { transform: scale(1.04); filter: none; }

@media (max-width: 600px) {
  .gallery { columns: 2 140px; column-gap: 10px; }
  .gallery__item { margin-bottom: 10px; }
}

/* Chips to browse other categories */
.cat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.cat-chips a {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 450;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xs);
  padding: 0.5rem 1.05rem;
}

.cat-chips a:hover { color: var(--paper); background: var(--ink); border-color: var(--ink); }
.cat-chips a[aria-current="page"] { color: var(--paper); background: var(--accent); border-color: var(--accent); }

/* ===== 20e. CONTACT DETAILS + MAP ===== */
.contact-details {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  max-width: 900px;
  margin: 3rem auto 0;
  border-top: 1px solid var(--hairline);
}

.contact-details li {
  text-align: center;
  padding: 2.25rem 1.5rem;
  background: transparent;
  border-bottom: 1px solid var(--hairline);
}

.contact-details strong { display: block; font-family: var(--font-serif); color: var(--ink); margin-bottom: 0.5rem; font-size: 1.2rem; font-weight: 500; }
.contact-details span, .contact-details a { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; }
.contact-details a { color: var(--ink); font-weight: 500; }
.contact-details a:hover { color: var(--accent); }

.map-embed {
  border: 1px solid var(--hairline);
  width: 100%;
  height: 440px;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: 3.5rem;
  filter: grayscale(0.4) contrast(1.05);
}

/* ===== 20f. PROSE LISTS ===== */
.prose ul { margin: 0 0 1.4rem 1.2rem; padding: 0; }
.prose li { margin-bottom: 0.7rem; }

/* ===== 20g. WHATSAPP FLOATING BUTTON (quiet utility) ===== */
.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 80;
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

.wa-fab:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.wa-fab svg { width: 26px; height: 26px; }

/* ===== 20f. THEME PREVIEW SWITCH (client review; disable in js/theme.js) ===== */
.theme-switcher {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 85;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0.45rem;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.theme-switcher__legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.theme-switcher__option {
  appearance: none;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  padding: 0.45rem 0.8rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: transparent;
  cursor: pointer;
  transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.theme-switcher__option:hover,
.theme-switcher__option:focus-visible {
  color: var(--ink);
  border-color: var(--hairline);
  outline: none;
}

.theme-switcher__option[aria-pressed="true"] {
  color: var(--paper);
  background: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 640px) {
  .theme-switcher {
    left: 12px;
    right: 12px;
    bottom: 84px;
    justify-content: center;
  }
}

@media print { .wa-fab, .theme-switcher { display: none; } }

/* ===== 21. SERVICE INDEX + CATEGORY FAMILIES ===== */
@media (min-width: 980px) {
  .value-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.cat-family + .cat-family { margin-top: clamp(3.5rem, 7vw, 6rem); }

.cat-family__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 1.25rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
}

.cat-family__head h2 {
  text-align: left;
  margin: 0;
  max-width: none;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.cat-family__head .eyebrow { margin: 0 0 0 auto; }

/* Standards line on the Studio page */
.standards {
  max-width: 24ch;
  margin: 0 auto;
  text-align: center;
}

.standards p {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.4vw, 2.7rem);
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* ===== 20. PRINT ===== */
@media print {
  body { background-color: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
  .navbar, .footer, .hero__cta, .final-cta__buttons { display: none; }
  .container { max-width: 100%; }
}
