/* ==========================================================================
   FABLOON — design system
   Palette sourced from the real logo (gold) and garment photography
   (deep emerald), not invented.
   ========================================================================== */

:root {
  /* Brand palette */
  --emerald-950: #0a2019;
  --emerald-900: #0d2b20;
  --emerald-800: #123524;
  --emerald-700: #1b4332;
  --emerald-600: #245943;
  --gold-700: #9c7a1f;
  --gold-600: #b8860b;
  --gold-500: #c9a227;
  --gold-400: #d4af5a;
  --gold-200: #ecd9a6;
  --ivory-100: #faf6ef;
  --ivory-50: #fffdf8;
  --ink-900: #201b16;
  --ink-700: #453e35;
  --ink-500: #6b6259;
  --line: #e7ddc9;

  /* Semantic */
  --bg: var(--ivory-100);
  --bg-card: var(--ivory-50);
  --text: var(--ink-900);
  --text-muted: var(--ink-500);
  --brand: var(--emerald-800);
  --brand-dark: var(--emerald-900);
  --accent: var(--gold-600);
  --accent-light: var(--gold-400);

  /* Type */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(32, 27, 22, 0.08);
  --shadow-md: 0 8px 24px rgba(32, 27, 22, 0.1);
  --shadow-lg: 0 20px 48px rgba(10, 32, 25, 0.18);
  --header-h: 76px;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
  color: var(--emerald-900);
}

p {
  margin: 0 0 1em;
}

button {
  font-family: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold-600);
  outline-offset: 2px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  background: var(--emerald-900);
  color: var(--ivory-100);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 12px;
}

section {
  padding: 64px 0;
}
section.tight {
  padding: 40px 0;
}
@media (max-width: 720px) {
  section {
    padding: 44px 0;
  }
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}
.section-head.left {
  text-align: left;
  margin: 0 0 32px;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 10px;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}
@media (min-width: 640px) {
  .nowrap-sm-up {
    white-space: nowrap;
  }
}
.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  min-height: 44px;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--gold-600);
  color: var(--emerald-950);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--gold-500);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--emerald-900);
}
.btn-outline:hover {
  background: var(--emerald-900);
  color: var(--ivory-50);
}
.btn-outline.on-dark {
  color: var(--ivory-100);
}
.btn-outline.on-dark:hover {
  background: var(--ivory-100);
  color: var(--emerald-900);
}
.btn-whatsapp {
  background: #25d366;
  color: #06210f;
}
.btn-whatsapp:hover {
  background: #22c15e;
}
.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
  min-height: 36px;
}
.btn-block {
  width: 100%;
}
.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Announcement strip ---------------------------------------------------- */
.announce {
  background: var(--emerald-950);
  color: var(--gold-200);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  overflow: hidden;
}
.announce-track {
  display: inline-flex;
  width: max-content;
  padding: 8px 0;
  animation: announce-scroll 32s linear infinite;
}
.announce:hover .announce-track {
  animation-play-state: paused;
}
.announce-track span {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
}
.announce-track span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-500);
  flex: none;
}
@keyframes announce-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-12.5%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .announce-track {
    animation: none;
  }
}

/* Header ------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--emerald-900);
  border-bottom: 1px solid rgba(212, 175, 90, 0.2);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.brand img {
  height: 52px;
  width: auto;
}
.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ivory-50);
  letter-spacing: 0.03em;
}
.brand-word small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: var(--ivory-100);
  font-size: 0.92rem;
  font-weight: 500;
  opacity: 0.88;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  opacity: 1;
  border-bottom-color: var(--gold-500);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--ivory-50);
  align-items: center;
  justify-content: center;
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--emerald-950);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 24px 100px;
    gap: 4px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 99;
  }
  .main-nav.open {
    transform: translateX(0);
  }
  .main-nav a {
    width: 100%;
    padding: 14px 4px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-toggle {
    display: inline-flex;
  }
  .header-actions .btn-outline.on-dark.desktop-only {
    display: none;
  }
}

/* Hero ------------------------------------------------------------- */
.hero {
  background: linear-gradient(160deg, var(--emerald-950) 0%, var(--emerald-800) 62%, var(--emerald-700) 100%);
  color: var(--ivory-100);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 85% 20%, rgba(201, 162, 39, 0.18), transparent 70%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  color: var(--gold-400);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 14px;
}
.hero h1 {
  color: var(--ivory-50);
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  margin-bottom: 18px;
}
.hero p.lead {
  font-size: 1.1rem;
  color: rgba(250, 246, 239, 0.86);
  max-width: 46ch;
  margin-bottom: 28px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.trust-chips span {
  font-size: 0.85rem;
  color: var(--gold-200);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.trust-chips span::before {
  content: "\2726";
  color: var(--gold-500);
  font-size: 0.8em;
}

.hero-media {
  position: relative;
}
.hero-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
  }
  .hero-media {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }
}

/* Philosophy / quote band ------------------------------------------------------------- */
.philosophy {
  background: var(--ivory-50);
  text-align: center;
}
.philosophy blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--emerald-900);
  max-width: 780px;
  margin: 0 auto 20px;
  line-height: 1.3;
}
.philosophy p {
  max-width: 640px;
  margin: 0 auto 20px;
  color: var(--text-muted);
}

/* Spectrum / worlds cards ------------------------------------------------------------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.spectrum-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.spectrum-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.spectrum-card .media {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.spectrum-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spectrum-card .body {
  padding: 22px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.spectrum-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.spectrum-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.spectrum-card .examples {
  font-size: 0.85rem;
  color: var(--gold-700);
  margin-bottom: 18px;
}
.spectrum-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Express band ------------------------------------------------------------- */
.band-emerald {
  background: var(--emerald-800);
  color: var(--ivory-100);
}
.band-emerald h2 {
  color: var(--ivory-50);
}
.express-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0 20px;
}
.express-features li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 90, 0.3);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.9rem;
}
.disclaimer {
  font-size: 0.82rem;
  color: rgba(250, 246, 239, 0.65);
  max-width: 60ch;
  margin-top: 18px;
}

/* USP grid ------------------------------------------------------------- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 900px) {
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.usp-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
}
.usp-card .icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--emerald-800);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.usp-card h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--emerald-900);
  margin: 0;
}

/* Process steps ------------------------------------------------------------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
.process-step {
  text-align: center;
}
.process-step .num {
  counter-increment: step;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-500);
  color: var(--gold-700);
  font-family: var(--font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.process-step .num::before {
  content: counter(step);
}
.process-step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--emerald-950);
  margin: 0;
}

/* Transformations ------------------------------------------------------------- */
.transform-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 780px) {
  .transform-list {
    grid-template-columns: 1fr 1fr;
  }
}
.transform-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px;
  font-weight: 600;
  color: var(--emerald-900);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.92rem;
}
.transform-item .arrow {
  color: var(--gold-600);
}

/* Gallery ------------------------------------------------------------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.gallery-filters button {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s ease;
}
.gallery-filters button:hover {
  border-color: var(--gold-500);
  color: var(--emerald-900);
}
.gallery-filters button[aria-pressed="true"] {
  background: var(--emerald-800);
  border-color: var(--emerald-800);
  color: var(--ivory-50);
}

.gallery-grid {
  columns: 4 260px;
  column-gap: 18px;
}
.gallery-grid-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.gallery-grid-preview .gallery-item {
  margin-bottom: 0;
}
.gallery-grid-preview .gallery-item img {
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media (max-width: 640px) {
  .gallery-grid {
    columns: 2 160px;
    column-gap: 12px;
  }
  .gallery-grid-preview {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid var(--line);
}
.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.35s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item .cap {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(0deg, rgba(10, 32, 25, 0.85), transparent);
  color: var(--ivory-50);
  padding: 22px 12px 10px;
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.gallery-item:hover .cap,
.gallery-item:focus-within .cap {
  opacity: 1;
}
.gallery-item[hidden] {
  display: none;
}

.gallery-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 40px 0;
}

/* Lightbox ------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 32, 25, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 24px;
}
.lightbox[hidden] {
  display: none;
}
.lightbox figure {
  max-width: min(90vw, 720px);
  margin: 0;
  text-align: center;
}
.lightbox img {
  max-height: 78vh;
  width: auto;
  margin: 0 auto;
  border-radius: var(--radius-sm);
}
.lightbox figcaption {
  color: var(--ivory-100);
  margin-top: 14px;
  font-size: 0.9rem;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--ivory-50);
  font-size: 1.3rem;
  border: none;
}
.lightbox-share {
  position: absolute;
  top: 20px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--ivory-50);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-share:hover {
  background: rgba(255, 255, 255, 0.2);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--ivory-50);
  border: none;
  font-size: 1.4rem;
}
.lightbox-prev {
  left: 16px;
}
.lightbox-next {
  right: 16px;
}

/* Reviews ------------------------------------------------------------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-card .quote-mark {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-500);
  line-height: 1;
}
.review-card p.quote {
  color: var(--ink-700);
  font-size: 0.96rem;
  flex: 1;
  margin: 0;
}
.review-card .reviewer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.review-card .reviewer strong {
  color: var(--emerald-900);
}
.review-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.review-card .tags span {
  font-size: 0.72rem;
  background: var(--emerald-800);
  color: var(--gold-200);
  padding: 3px 9px;
  border-radius: 999px;
}
.source-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 24px;
}

/* Metrics strip ------------------------------------------------------------- */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
@media (max-width: 720px) {
  .metrics {
    grid-template-columns: 1fr 1fr;
  }
}
.metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold-400);
}
.metric span {
  font-size: 0.85rem;
  color: rgba(250, 246, 239, 0.75);
}

/* FAQ accordion ------------------------------------------------------------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 4px;
  font-weight: 600;
  color: var(--emerald-900);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--gold-600);
  flex: none;
  margin-left: 16px;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item .a {
  padding: 0 28px 20px 4px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact / form ------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.info-card {
  background: var(--emerald-900);
  color: var(--ivory-100);
  border-radius: var(--radius);
  padding: 32px;
}
.info-card h3 {
  color: var(--ivory-50);
}
.info-row {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
}
.info-row:last-of-type {
  border-bottom: none;
}
.info-row .label {
  color: var(--gold-400);
  font-weight: 600;
  min-width: 90px;
  flex: none;
}
.info-card .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid var(--line);
}
.map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--emerald-900);
  margin-bottom: 6px;
}
.field .req {
  color: var(--gold-700);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--ivory-50);
  color: var(--text);
  min-height: 44px;
}
.field textarea {
  min-height: 110px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-600);
  outline: none;
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}
.field.error input,
.field.error select,
.field.error textarea {
  border-color: #b3261e;
}
.field .error-msg {
  display: none;
  color: #b3261e;
  font-size: 0.8rem;
  margin-top: 6px;
}
.field.error .error-msg {
  display: block;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.consent input {
  margin-top: 3px;
}
.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}
.form-status.success {
  display: block;
  background: #e5f4ea;
  color: #1b4332;
}
.form-status.error {
  display: block;
  background: #fbe9e7;
  color: #8c2f24;
}

/* Blog ------------------------------------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 980px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.blog-card-media {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card .body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.blog-card-meta .cat {
  color: var(--gold-700);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-card h3 {
  font-size: 1.05rem;
  line-height: 1.3;
  margin-bottom: 8px;
}
.blog-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 14px;
}
.blog-card .read-more {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gold-700);
}

.blog-post-body {
  max-width: 720px;
  margin: 0 auto;
}
.blog-post-body h2 {
  font-size: 1.5rem;
  margin-top: 1.6em;
}
.blog-post-body p,
.blog-post-body li {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.75;
}
.blog-post-body ul,
.blog-post-body ol {
  margin: 0 0 1em;
  padding-left: 1.3em;
}
.blog-post-body ul {
  list-style: disc;
}
.blog-post-body ol {
  list-style: decimal;
}
.blog-post-hero {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 8px;
}
.blog-post-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.blog-cta-band {
  background: var(--emerald-800);
  color: var(--ivory-100);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin: 40px 0;
}
.blog-cta-band h3 {
  color: var(--ivory-50);
  margin-bottom: 10px;
}
.blog-cta-band p {
  color: rgba(250, 246, 239, 0.85);
  margin-bottom: 20px;
}

/* Footer ------------------------------------------------------------- */
.site-footer {
  background: var(--emerald-950);
  color: rgba(250, 246, 239, 0.75);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-grid h4 {
  color: var(--gold-400);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-grid li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.footer-grid a:hover {
  color: var(--ivory-50);
}
.footer-brand img {
  height: 44px;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.88rem;
  max-width: 32ch;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social a:hover {
  background: var(--gold-600);
  color: var(--emerald-950);
}
.footer-bottom {
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.8rem;
}
.footer-bottom nav {
  display: flex;
  gap: 18px;
}

/* WhatsApp floating button + mobile sticky bar ------------------------ */
.wa-float {
  position: fixed;
  bottom: 88px;
  right: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  font-size: 1.6rem;
}
@media (min-width: 720px) {
  .wa-float {
    bottom: 28px;
  }
}

.mobile-actionbar {
  display: none;
}
@media (max-width: 720px) {
  .mobile-actionbar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--emerald-950);
    border-top: 1px solid rgba(212, 175, 90, 0.25);
    z-index: 95;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .mobile-actionbar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: var(--ivory-100);
    font-size: 0.68rem;
    font-weight: 600;
    padding: 10px 4px 8px;
  }
  .mobile-actionbar svg {
    width: 20px;
    height: 20px;
  }
  body {
    padding-bottom: 62px;
  }
}

/* Breadcrumbs ------------------------------------------------------------- */
.breadcrumbs {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 16px 0 0;
}
.breadcrumbs a:hover {
  color: var(--emerald-800);
}
.breadcrumbs .sep {
  margin: 0 6px;
  opacity: 0.5;
}

/* Page hero (interior pages) ------------------------------------------------------------- */
.page-hero {
  background: linear-gradient(160deg, var(--emerald-950), var(--emerald-800));
  color: var(--ivory-100);
  padding: 40px 0 52px;
}
.page-hero h1 {
  color: var(--ivory-50);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(250, 246, 239, 0.85);
  max-width: 64ch;
  font-size: 1.02rem;
}

/* Service groups (services.html) ------------------------------------------------------------- */
.service-groups {
  display: grid;
  gap: 24px;
}
.service-group {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
}
.service-group h3 {
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-group .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.service-group .tag-list span {
  background: var(--gold-600);
  border: 1px solid var(--gold-600);
  color: var(--ivory-50);
  font-weight: 500;
  font-size: 0.82rem;
  padding: 6px 12px;
  border-radius: 999px;
}

/* Steps list (online-stitching.html) ------------------------------------------------------------- */
.steps-list {
  counter-reset: st;
  display: grid;
  gap: 14px;
}
.steps-list li {
  counter-increment: st;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.steps-list li::before {
  content: counter(st);
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--emerald-800);
  color: var(--gold-300, var(--gold-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
}

/* Who-it's-for chips --------------------------------------------------- */
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip-list li {
  background: var(--emerald-800);
  color: var(--gold-200);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
}

/* Founders (about.html) ------------------------------------------------------------- */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px) {
  .founders-grid {
    grid-template-columns: 1fr;
  }
}
.founder-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
}
.founder-card .avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--emerald-800);
  color: var(--gold-400);
  font-family: var(--font-display);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.founder-card .role {
  color: var(--gold-700);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.pull-quote {
  border-left: 3px solid var(--gold-600);
  padding-left: 20px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--emerald-900);
  margin: 24px 0;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 720px) {
  .fact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.fact-grid .fact {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}
.fact-grid .fact strong {
  display: block;
  color: var(--emerald-900);
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.fact-grid .fact span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Final CTA band ------------------------------------------------------------- */
.final-cta {
  background: var(--gold-200);
  text-align: center;
}
.final-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.final-cta .cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* 404 ------------------------------------------------------------- */
.not-found {
  text-align: center;
  padding: 100px 0;
}
.not-found h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: var(--gold-600);
}

/* Prose (about/services intro copy) ------------------------------------------------------------- */
.prose {
  max-width: 760px;
}
.prose.center {
  margin: 0 auto;
  text-align: center;
}
.prose p {
  color: var(--ink-700);
}
