/* ============================================================
   K&D CLEANING — DESIGN SYSTEM v2.0  (deferred / below-the-fold)
   ============================================================ */

/* ============================================================
   CONTENT WRAPPER
   ============================================================ */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 32px);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) var(--pad-x) clamp(48px, 6vw, 80px);
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  color: var(--ink-soft);
  box-shadow: var(--shadow-1);
  overflow: hidden;
}
.image-card img { width: 100%; height: auto; display: block; }
.text-card { padding: clamp(24px, 4vw, 46px); }

.pill {
  display: inline-flex;
  align-items: center;
  background: var(--green-soft);
  color: var(--green-deep);
  padding: 7px 15px;
  border-radius: var(--r-pill);
  font-family: var(--f-cond);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.card-title {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--ink);
}

.card-desc {
  color: var(--ink-soft);
  font-size: 1.08rem;
  margin-bottom: 24px;
  line-height: 1.75;
}
.card-desc strong { color: var(--ink); font-weight: 600; }

/* text-gold / .stripe → brand green */
.text-gold { color: var(--green); }
.stripe { color: var(--green); }

/* ============================================================
   FORM FIELDS
   ============================================================ */
.field { display: flex; flex-direction: column; gap: 6px; width: 100%; }
.field label {
  font-family: var(--f-cond);
  font-weight: 600;
  letter-spacing: .04em;
  font-size: 13px;
  color: var(--ink-soft);
}
.field input,
.field textarea,
.field select {
  background: var(--paper);
  border: 1.5px solid var(--line-strong);
  color: var(--ink);
  padding: 13px 15px;
  border-radius: var(--r-sm);
  font-family: var(--f-body);
  font-size: 16px;
  outline: none;
  transition: border-color .15s, box-shadow .15s, background .15s;
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-mute); }
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--green);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(31,92,70,.14);
}
.field .help { font-size: 13px; color: var(--ink-mute); }

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-cond);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 11.5px;
  padding: 6px 13px;
  border-radius: var(--r-pill);
}
.badge.red     { background: var(--green); color: #fff; }
.badge.blue    { background: var(--gold); color: #fff; }
.badge.outline { background: var(--surface); border: 1px solid var(--line-strong); color: var(--ink-soft); }
.badge.warm    { background: var(--gold-soft); color: var(--gold); border: 1px solid rgba(180,134,43,.35); }

/* ── Stat Ribbon ── */
.stat-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  position: relative;
  z-index: 10;
  max-width: var(--maxw);
  margin-inline: auto;
  box-shadow: var(--shadow-1);
}
.stat { padding: 34px 24px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat .n {
  font-family: var(--f-display);
  font-weight: 800;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1;
}
.stat .n .red { color: var(--green); }
.stat .lbl {
  font-family: var(--f-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11.5px;
  color: var(--ink-mute);
  margin-top: 12px;
}
@media (max-width: 780px) {
  .stat-ribbon { grid-template-columns: 1fr 1fr; }
  .stat { border-bottom: 1px solid var(--line); }
  .stat:nth-child(2) { border-right: 0; }
}

/* ── Service icon grid (4-up) ── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.svc { padding: 30px 22px; text-align: center; background: var(--surface); }
.svc .ico { width: 52px; height: 52px; margin: 0 auto 14px; color: var(--green); }
.svc .ico svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; }
.svc h4 {
  font-family: var(--f-head);
  font-weight: 700;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
  margin-bottom: 8px;
}
.svc p { font-size: 14px; color: var(--ink-mute); line-height: 1.55; }
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .svc-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.service-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: var(--r-md);
  display: block;
  margin: -26px -26px 20px -26px;
  width: calc(100% + 52px);
}
.service-card h3,
.service-card h4 {
  color: var(--green);
  font-family: var(--f-head);
  font-weight: 700;
  letter-spacing: -0.005em;
  margin-bottom: 10px;
  font-size: 1.3rem;
  line-height: 1.2;
}
.service-card p { color: var(--ink-mute); font-size: 1rem; line-height: 1.65; }

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-1);
}
.review::before {
  content: "\201C";
  position: absolute;
  left: 20px;
  top: 2px;
  font-family: var(--f-display);
  font-size: 72px;
  color: var(--green-soft);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.review > * { position: relative; z-index: 1; }
.review .stars { display: flex; gap: 2px; color: var(--gold); font-size: 16px; line-height: 1; margin-top: 4px; }
.review blockquote { font-family: var(--f-body); font-size: 16px; color: var(--ink-soft); line-height: 1.65; }
.review blockquote b { color: var(--green); font-weight: 600; }
.review .who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.review .who .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-soft);
  display: grid;
  place-items: center;
  font-family: var(--f-head);
  font-weight: 600;
  color: var(--green);
  font-size: 15px;
  flex: 0 0 auto;
}
.review .who .name { font-family: var(--f-head); font-weight: 600; color: var(--ink); font-size: 15px; }
.review .who .where {
  font-family: var(--f-cond);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.review.featured {
  background: linear-gradient(180deg, var(--green-soft), transparent 70%), var(--surface);
  border-color: rgba(31,92,70,.25);
}
.review.featured blockquote { font-family: var(--f-head); font-weight: 500; font-size: 21px; line-height: 1.4; color: var(--ink); }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ── Single featured review card ── */
.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--green);
  border-radius: var(--r-lg);
  padding: 30px;
  position: relative;
  box-shadow: var(--shadow-1);
}
.review-card .stars { display: flex; gap: 2px; color: var(--gold); font-size: 18px; margin-bottom: 14px; }
.review-card blockquote { font-family: var(--f-head); font-weight: 500; font-size: 19px; color: var(--ink); line-height: 1.5; margin-bottom: 16px; }
.review-card .reviewer-name { font-family: var(--f-head); font-weight: 600; color: var(--ink); font-size: 15px; }
.review-card .reviewer-meta {
  font-family: var(--f-cond);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 2px;
}

/* ============================================================
   CONTACT STRIP
   ============================================================ */
.contact-section { padding: 0 var(--pad-x) clamp(48px, 6vw, 72px); }
.contact-strip {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 32px;
  max-width: var(--maxw);
  margin-inline: auto;
  background:
    radial-gradient(600px 300px at 100% 0%, var(--green-soft), transparent 70%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(32px, 5vw, 52px) var(--pad-x);
  box-shadow: var(--shadow-2);
}
.strip-head {
  font-family: var(--f-display);
  font-weight: 800;
  color: var(--ink);
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.strip-head .red { color: var(--green); }
.strip-head .small {
  display: block;
  font-family: var(--f-cond);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--green);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.strip-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--ink);
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: color .15s;
}
.strip-phone:hover { color: var(--green); }
.strip-phone .ic {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
  transition: background .15s;
}
.strip-phone:hover .ic { background: var(--green-bright); }
.strip-url {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-cond);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink-mute);
  margin-top: 14px;
}
.strip-url .ic {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-soft);
  display: grid;
  place-items: center;
  color: var(--green);
  flex-shrink: 0;
}
@media (max-width: 780px) { .contact-strip { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER — deep green anchor
   ============================================================ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(233,238,247,.75);
  border-top: 8px solid transparent;
  border-image: repeating-linear-gradient(90deg,
    var(--flag-red) 0 46px, #fff 46px 92px) 1;
  padding: clamp(48px, 6vw, 72px) var(--pad-x) 28px;
}
.foot-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 40px;
}
.foot-brand .foot-script {
  font-family: var(--f-script);
  color: #8FD19A;
  font-weight: 600;
  font-size: 22px;
  display: inline-block;
  margin-bottom: 2px;
}
.foot-brand .foot-lockup {
  font-family: var(--f-display);
  font-weight: 800;
  color: #F4F8FB;
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.foot-brand .foot-tagline { font-size: 14px; color: rgba(244,248,251,.66); line-height: 1.7; margin-bottom: 22px; }
.foot-col h5 {
  font-family: var(--f-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11.5px;
  color: #fff;
  margin-bottom: 16px;
}
.foot-col h5::before { content: '\2605'; color: var(--flag-red); margin-right: 8px; }
.foot-col a,
.foot-col li {
  display: block;
  font-family: var(--f-body);
  font-size: 14.5px;
  color: rgba(244,248,251,.72);
  line-height: 2.1;
  transition: color .15s;
  text-decoration: none;
}
.foot-col a:hover { color: #fff; }
.site-footer .cta-button { background: var(--flag-red); }
.site-footer .cta-button:hover { background: #E01B39; box-shadow: 0 10px 24px rgba(0,0,0,.3); }
.foot-legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(244,248,251,.14);
  padding-top: 22px;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--f-cond);
  letter-spacing: .04em;
  font-size: 12.5px;
  color: rgba(244,248,251,.55);
}
.foot-credit { color: rgba(244,248,251,.55); text-decoration: none; transition: color .15s; }
.foot-credit:hover { color: rgba(244,248,251,.9); }
@media (max-width: 900px) { .foot-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) {
  .foot-inner { grid-template-columns: 1fr; }
  .foot-legal { flex-direction: column; }
}

/* ── Legacy footer classes (backward compat) ── */
.footer-logo    { font-family: var(--f-head); font-weight: 700; font-size: 1.1rem; color: #F4F8FB; margin-bottom: 8px; }
.footer-tagline { color: rgba(244,248,251,.66); font-size: 0.95rem; line-height: 1.7; margin-bottom: 16px; }
.footer-section-heading { color: var(--gold); font-size: 0.8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.footer-cluster-heading { color: var(--gold); font-size: 0.72rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 10px; }
.footer-city-list    { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-city-list a  { color: var(--ink-soft); text-decoration: none; font-size: 0.95rem; transition: color .2s; }
.footer-city-list a:hover { color: var(--green); }
.footer-legal        { border-top: 1px solid var(--line); padding-top: 24px; }
.footer-legal p      { color: var(--ink-mute); font-size: 0.85rem; margin-bottom: 4px; }

/* ============================================================
   BLOG POST CONTENT TYPOGRAPHY
   ============================================================ */
.post-content p,
.post-content li { color: var(--ink-soft); font-size: 1.1rem; line-height: 1.8; margin-bottom: 1.25rem; }
.post-content h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); color: var(--ink); margin-top: 2.2rem; margin-bottom: 0.8rem; }
.post-content h3 { font-size: 1.25rem; color: var(--ink); margin-top: 1.6rem; margin-bottom: 0.5rem; }
.post-content ul,
.post-content ol { padding-left: 1.4rem; margin-bottom: 1.25rem; }
.post-content li { margin-bottom: 0.4rem; }
.post-content strong { color: var(--ink); font-weight: 600; }
.post-content em { color: var(--ink-mute); }
.post-content hr { margin: 2rem 0; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-card-date { font-size: 0.85rem; color: var(--ink-mute); }
.blog-post-byline { font-size: 0.85rem; color: var(--ink-mute); margin-top: 8px; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { padding: 4px 0; }
.breadcrumb-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.breadcrumb-item { font-size: 0.85rem; color: var(--ink-mute); font-family: var(--f-cond); }
.breadcrumb-item a { color: var(--green); text-decoration: none; }
.breadcrumb-item a:hover { color: var(--green-bright); text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb-item[aria-current="page"] { color: var(--ink-soft); }

/* ============================================================
   LINKS & INLINE ELEMENTS
   ============================================================ */
.logo-link  { text-decoration: none; color: inherit; }
.inline-link { color: var(--green); text-decoration: underline; text-underline-offset: 3px; font-weight: 500; }
.inline-link:hover { color: var(--green-bright); }
.area-link  { color: var(--ink); text-decoration: none; font-weight: 400; }
.area-link:hover { color: var(--green); }

.service-card-link   { text-decoration: none; color: var(--ink); display: block; }
.service-card-link:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: var(--shadow-2); }
.service-card-cta    { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font-family: var(--f-cond); font-weight: 600; font-size: 0.92rem; margin-top: 16px; }

/* ============================================================
   NEARBY AREAS WIDGET
   ============================================================ */
.nearby-areas-heading { font-size: 1.2rem; margin-bottom: 10px; }
.nearby-areas-list    { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.nearby-area-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  text-decoration: none;
  color: var(--ink);
  transition: background .2s, border-color .2s;
}
.nearby-area-link:hover { background: var(--green-soft); border-color: transparent; }
.nearby-area-name  { font-weight: 600; font-size: 0.98rem; }
.nearby-area-meta  { color: var(--ink-mute); font-size: 0.82rem; margin-left: auto; margin-right: 12px; }
.nearby-arrow      { color: var(--green); flex-shrink: 0; }

/* ============================================================
   AREAS
   ============================================================ */
.areas-list       { color: var(--green); font-weight: 600; line-height: 1.9; }
.areas-list span  { color: var(--ink); font-weight: 400; }

.areas-cities { display: grid; grid-template-columns: 1fr; gap: 14px; }
.area-city {
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  border-left: 3px solid var(--line-strong);
  transition: border-color .2s, background .2s;
}
.area-city:hover { border-left-color: var(--green); background: var(--surface); }
.area-city-link { text-decoration: none; display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 10px; }
.area-city-name {
  color: var(--ink);
  font-family: var(--f-head);
  font-weight: 600;
  letter-spacing: -0.005em;
  font-size: 1.15rem;
}
.area-city-link:hover .area-city-name { color: var(--green); }
.area-city-county { color: var(--ink-mute); font-size: 0.8rem; font-family: var(--f-cond); text-transform: uppercase; letter-spacing: .05em; }
.area-city-hoods { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; margin-top: 8px; }
@media (min-width: 768px) { .areas-cities { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   LOGO / HEADER LEGACY
   ============================================================ */
.logo-text { font-family: var(--f-head); font-size: 1.1rem; font-weight: 600; color: var(--ink); }
.logo-subtext { color: var(--green); font-family: var(--f-cond); font-size: 9px; font-weight: 700; letter-spacing: .12em; margin-top: 2px; text-transform: uppercase; }

/* ============================================================
   DESKTOP BREAKPOINTS
   ============================================================ */
@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   BEFORE & AFTER GALLERY
   ============================================================ */
.before-after-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 22px; }
.before-after-item { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-1); }
.before-after-item img { width: 100%; height: auto; display: block; }
.before-after-label {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 14px;
  font-family: var(--f-cond);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
}
.before-label { background: rgba(255,255,255,.92); color: var(--ink-soft); border: 1px solid var(--line); }
.after-label  { background: var(--green); color: #fff; }

/* ============================================================
   MEET THE OWNERS
   ============================================================ */
.meet-owners-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(24px, 4vw, 44px); align-items: center; }
.meet-owners-img { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-2); }
.meet-owners-img img { width: 100%; height: 100%; max-height: 440px; object-fit: cover; object-position: center center; display: block; }
@media (max-width: 760px) {
  .before-after-grid { grid-template-columns: 1fr; }
  .meet-owners-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   UNDER THE SURFACE GRID
   ============================================================ */
.under-surface-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 22px; }
.under-surface-grid .surface-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--green);
  margin-bottom: 6px;
  text-transform: uppercase;
}
@media (max-width: 768px) { .under-surface-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ACCORDION (FAQ)
   ============================================================ */
.accordion { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.accordion-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
}
.accordion-btn:hover { background: var(--green-tint); }
.myth-label {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--green);
  background: var(--green-soft);
  padding: 3px 9px;
  border-radius: var(--r-xs);
  text-transform: uppercase;
}
.myth-text { flex: 1; font-size: 1.05rem; }
.accordion-icon { flex-shrink: 0; font-size: 1.4rem; color: var(--green); transition: transform 0.2s; line-height: 1; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { display: none; padding: 0 22px 20px; color: var(--ink-soft); line-height: 1.7; font-size: 1rem; }
.accordion-body strong { color: var(--green); font-family: var(--f-cond); font-weight: 700; font-size: 0.78rem; letter-spacing: .06em; text-transform: uppercase; }
.accordion-item.open .accordion-body { display: block; }

/* ============================================================
   HERITAGE ZONES — sections that FEEL Brazilian or American
   ============================================================ */

/* Brazil zone: flag green, yellow diamond motif, yellow accents */
.zone-brazil {
  position: relative;
  background: var(--flag-green);
  border-color: transparent;
  color: #EFFAF2;
  overflow: hidden;
}
.zone-brazil::before {
  content: '';
  position: absolute;
  right: -110px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 300px;
  height: 300px;
  background: var(--flag-yellow);
  opacity: .16;
  border-radius: 28px;
  pointer-events: none;
}
.zone-brazil::after {
  content: '';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 46px;
  height: 46px;
  background: var(--flag-yellow);
  border-radius: 8px;
  pointer-events: none;
}
.zone-brazil > * { position: relative; z-index: 1; }
.zone-brazil h1, .zone-brazil h2, .zone-brazil h3,
.zone-brazil .card-title { color: #fff; }
.zone-brazil .card-desc, .zone-brazil p { color: #EFFAF2; }
.zone-brazil .section-heading { color: var(--flag-yellow); }
.zone-brazil .section-heading::before { background: var(--flag-yellow); }
.zone-brazil .stripe { color: var(--flag-yellow); }
.zone-brazil .cta-button,
.zone-brazil .btn-primary {
  background: var(--flag-yellow);
  color: var(--yellow-ink);
}
.zone-brazil .cta-button:hover,
.zone-brazil .btn-primary:hover { background: #FFE84D; box-shadow: 0 10px 24px rgba(0,0,0,.22); }
.zone-brazil .btn-ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.zone-brazil .btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }
.zone-brazil .meet-owners-img,
.zone-brazil .heritage-photo { border-color: rgba(255,255,255,.35); }

/* USA zone: flag navy, star bullets, red/white stripes accent */
.zone-usa {
  position: relative;
  background: var(--navy-deep);
  border-color: transparent;
  color: #E9EEF7;
  overflow: hidden;
}
.zone-usa::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(90deg,
    var(--flag-red) 0 46px, #fff 46px 92px);
}
.zone-usa > * { position: relative; z-index: 1; }
.zone-usa h1, .zone-usa h2, .zone-usa h3,
.zone-usa .card-title { color: #fff; }
.zone-usa .card-desc, .zone-usa p { color: #E9EEF7; }
.zone-usa .section-heading { color: #FFD9DD; }
.zone-usa .section-heading::before { background: var(--flag-red); }
.zone-usa .stripe { color: #FFD9DD; }
.zone-usa .star { color: var(--flag-yellow); }
.zone-usa .cta-button,
.zone-usa .btn-primary { background: var(--flag-red); color: #fff; }
.zone-usa .cta-button:hover,
.zone-usa .btn-primary:hover { background: #E01B39; box-shadow: 0 10px 24px rgba(0,0,0,.28); }
.zone-usa .service-card {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.16);
}
.zone-usa .service-card h3 { color: #fff; }
.zone-usa .service-card h3::before { content: '\2605\00a0'; color: var(--flag-yellow); }
.zone-usa .service-card p { color: #C9D4E6; }

/* ============================================================
   FLAG FEATURE TILES — loud green / yellow / blue / red row
   ============================================================ */
.flag-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.flag-tile {
  border-radius: var(--r-lg);
  padding: 26px 22px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 158px;
  box-shadow: var(--shadow-1);
}
.flag-tile .ft-ico { width: 30px; height: 30px; }
.flag-tile .ft-ico svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.75; }
.flag-tile h3 { color: inherit; font-family: var(--f-head); font-weight: 600; font-size: 1.18rem; line-height: 1.15; margin-top: auto; }
.flag-tile p { color: inherit; opacity: .95; font-size: 0.92rem; line-height: 1.5; }
.ft-green  { background: var(--flag-green); }
.ft-yellow { background: var(--flag-yellow); color: var(--yellow-ink); }
.ft-blue   { background: var(--blue-bright); }
.ft-red    { background: var(--red-bright); }
@media (max-width: 860px) { .flag-tiles { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .flag-tiles { grid-template-columns: 1fr; } }

/* ============================================================
   HERITAGE BAND (Brazilian-American story)
   ============================================================ */
.heritage {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  background:
    radial-gradient(500px 300px at 0% 0%, var(--green-soft), transparent 70%),
    var(--surface);
}
.heritage-photo { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-2); aspect-ratio: 1 / 1; }
.heritage-photo img { width: 100%; height: 100%; object-fit: cover; }
.heritage-quote {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.heritage.zone-brazil { background: var(--flag-green); }
.heritage.zone-brazil .heritage-quote { color: #fff; }
@media (max-width: 760px) { .heritage { grid-template-columns: 1fr; } }

/* Client reviews (homepage) */
.reviews-head { display: flex; align-items: center; gap: 12px; margin-top: 6px; }
.stars { color: var(--flag-yellow); letter-spacing: 3px; font-size: 1.15rem; line-height: 1; }
.reviews-rating { color: var(--ink-mute); font-size: 0.98rem; }
.review-card { display: flex; flex-direction: column; gap: 12px; }
.review-card blockquote { margin: 0; color: var(--ink); font-size: 1.02rem; line-height: 1.65; }
.review-card figcaption { color: var(--ink-mute); font-size: 0.9rem; font-weight: 600; }
