/* Craftworker — public site stylesheet.
   Design tokens sampled from the approved profile-page mockup (2026-07-14).
   Type: Playfair Display (display serif) + Inter (UI/body sans). */

:root {
  --paper: #F8F5F2;        /* page + header background */
  --ink: #1D1A16;          /* headings, primary text */
  --body-c: #46423B;       /* body copy */
  --muted: #7C766B;        /* secondary text */
  --hairline: #E7E2D9;     /* rules, card borders */
  --card: #EDEAE5;         /* review cards */
  --card-deep: #E5E1DA;    /* contact/location cards, media fallback */
  --green: #2B3520;        /* primary buttons (olive) */
  --green-d: #222A19;
  --gold: #BD7E2A;         /* stars, focus ring */
  --tan: #C9A374;          /* accent bars, badge rings */
  --dark: #202020;         /* footer */
  --dark-text: #D8D4CE;
  --dark-muted: #A9A49C;
  --hero-base: #0D0C0A;    /* hero backdrop */
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --r-card: 10px;
  --r-btn: 6px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 15.5px;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }
a { color: inherit; }
[id] { scroll-margin-top: 78px; }

summary { cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
/* Form fields: no gold ring (browsers apply :focus-visible to text inputs
   even on mouse focus; buttons/links keep it for keyboard nav only). */
input:focus-visible, textarea:focus-visible, select:focus-visible { outline: none; }

.container {
  width: 100%;
  max-width: 1208px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: 500 14.5px/1 var(--sans);
  padding: 12px 18px;
  border-radius: var(--r-btn);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .15s, border-color .15s, opacity .15s;
}
.btn svg { width: 16px; height: 16px; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-d); }
.btn-dark { background: #1E1D1D; color: #fff; }
.btn-dark:hover { background: #000; }
.btn-outline { border-color: #4A463F; color: var(--ink); background: transparent; }
.btn-outline:hover { background: rgba(29, 26, 22, .05); }
.btn-outline-light { border-color: rgba(255, 255, 255, .55); color: #fff; background: transparent; }
.btn-outline-light:hover { background: rgba(255, 255, 255, .09); }
.btn-small { padding: 10px 14px; font-size: 13.5px; }

/* ---------- Header ---------- */

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark { width: 36px; height: 36px; flex: 0 0 36px; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; gap: 3px; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.brand-tagline {
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.site-nav { display: flex; gap: 32px; }
.site-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.site-nav a:hover { opacity: .65; }
.nav-chevron { margin-left: 5px; display: inline-flex; }
.nav-chevron svg { width: 13px; height: 13px; }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 20px; }
.nav-search { position: relative; }
.nav-search input {
  width: 215px;
  font: inherit;
  font-size: 14px;
  padding: 10px 38px 10px 14px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  color: var(--ink);
}
.nav-search input::placeholder { color: var(--muted); }
.nav-search button {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  padding: 6px;
  color: var(--muted);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.nav-search button svg { width: 17px; height: 17px; }
.login-link {
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  padding: 10px 18px;
  border: 1px solid #D9D4CB;
  border-radius: 8px;
  transition: border-color .15s;
}
.login-link:hover { border-color: #A9A296; }

/* ---------- Artisan hero ---------- */

.artisan-hero { background-color: var(--hero-base); color: #fff; }
.artisan-hero.has-image {
  background-image:
    linear-gradient(90deg, rgba(13,12,10,.97) 0%, rgba(13,12,10,.88) 34%, rgba(13,12,10,.42) 68%, rgba(13,12,10,.55) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center right;
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-top: 58px;
  padding-bottom: 54px;
}
.hero-badge {
  flex: 0 0 200px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid var(--tan);
  padding: 7px;
  background: rgba(10, 9, 8, .5);
}
.hero-badge img,
.hero-badge .badge-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(201, 163, 116, .6);
}
.hero-badge img { object-fit: cover; display: block; }
.hero-badge .badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--tan);
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: .26em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 10px;
}
.hero-info h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(34px, 4.4vw, 50px);
  line-height: 1.08;
  margin: 0 0 14px;
}
.hero-tagline {
  font-size: 19px;
  color: rgba(255, 255, 255, .92);
  margin: 0 0 14px;
}
.hero-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, .9);
  margin: 0 0 22px;
}
.hero-location svg { width: 17px; height: 17px; }
.hero-socials { display: flex; gap: 12px; margin-bottom: 26px; }
.hero-socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  transition: border-color .15s;
}
.hero-socials a:hover { border-color: #fff; }
.hero-socials svg { width: 17px; height: 17px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Tabs ---------- */

.page-tabs {
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
  position: sticky;
  top: 0;
  z-index: 40;
}
.tabs-inner { display: flex; justify-content: center; gap: 64px; }
.page-tabs a {
  padding: 17px 2px 15px;
  font-size: 15px;
  font-weight: 500;
  color: var(--body-c);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
}
.page-tabs a:hover { color: var(--ink); }
.page-tabs a.active { color: var(--ink); border-color: var(--ink); }

/* ---------- Section titles ---------- */

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  color: var(--ink);
  margin: 0 0 20px;
}
.section-title::after {
  content: '';
  display: block;
  width: 38px;
  height: 3px;
  background: var(--tan);
  margin-top: 12px;
}

/* ---------- Overview: about + gallery ---------- */

.overview-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 2.4fr;
  gap: 56px;
  padding-top: 56px;
  padding-bottom: 64px;
}
.about-col p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--body-c);
  margin: 0 0 18px;
}
.highlights {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 15px;
}
.highlights li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 15px;
  color: var(--ink);
}
.hl-icon { width: 22px; height: 22px; flex: 0 0 22px; }
.hl-icon svg { width: 100%; height: 100%; }

.gallery-main {
  position: relative;
  margin: 0;
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--card-deep);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: rgba(20, 18, 15, .72);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color .15s;
}
.gal-arrow:hover { background: rgba(20, 18, 15, .9); }
.gal-arrow svg { width: 18px; height: 18px; }
.gal-prev { left: 14px; }
.gal-next { right: 14px; }
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: var(--card-deep);
  cursor: pointer;
  aspect-ratio: 3 / 2;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb.active { border-color: var(--gold); }

/* ---------- Band: process + reviews ---------- */

.band {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 56px;
  border-top: 1px solid var(--hairline);
  padding-top: 56px;
  padding-bottom: 72px;
  align-items: start;
}
.process-media {
  position: relative;
  display: block;
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--card-deep);
  margin: 0 0 22px;
}
.process-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.play-badge {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: transform .15s;
}
.play-badge svg { width: 26px; height: 26px; margin-left: 3px; }
a.process-media:hover .play-badge { transform: scale(1.06); }
.process-col p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--body-c);
  margin: 0 0 18px;
}
.process-more summary { display: inline-flex; }
.process-more[open] summary { margin-bottom: 18px; }

.review-card {
  background: var(--card);
  border-radius: var(--r-card);
  padding: 20px 20px 17px;
  margin-bottom: 14px;
}
.stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 12px; }
.stars svg { width: 17px; height: 17px; }
.review-card blockquote {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--body-c);
}
.review-author { margin: 0; font-size: 13.5px; font-weight: 600; color: var(--ink); }
.reviews-empty { color: var(--muted); }
.reviews-more summary {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  padding: 6px 0;
}
.reviews-more summary:hover { text-decoration: underline; text-underline-offset: 4px; }
.reviews-more-body { margin-top: 12px; }
.review-form { margin-top: 16px; }
.review-form > summary {
  font-size: 13.5px;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.review-form > summary:hover { color: var(--ink); }

/* ---------- Forms ---------- */

.contact-details form,
.review-form form {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}
.contact-details label,
.review-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.contact-details input,
.contact-details textarea,
.review-form input,
.review-form textarea,
.review-form select {
  font: inherit;
  font-size: 14.5px;
  font-weight: 400;
  padding: 10px 12px;
  border: 1px solid #D5CFC4;
  border-radius: var(--r-btn);
  background: #fff;
  color: var(--ink);
}
.contact-details textarea,
.review-form textarea { resize: vertical; }
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.form-note {
  background: var(--card);
  border-left: 3px solid var(--green);
  border-radius: var(--r-btn);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--ink);
  margin: 0 0 14px;
}

/* ---------- Contact row ---------- */

.contact-row {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1.65fr;
  gap: 8px;
  padding-bottom: 84px;
  align-items: stretch;
}
.contact-card,
.location-card {
  background: var(--card-deep);
  border-radius: var(--r-card);
  padding: 30px 30px 28px;
}
.contact-row .section-title { font-size: 23px; margin-bottom: 16px; }
.contact-row .section-title::after { display: none; }
.contact-card > p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--body-c);
  margin: 0 0 20px;
}
.contact-details > summary { display: inline-flex; }
.location-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 15px;
}
.location-rows li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink);
}
.location-rows svg { width: 19px; height: 19px; flex: 0 0 19px; }
.location-rows a { text-decoration: none; }
.location-rows a:hover { text-decoration: underline; text-underline-offset: 3px; }
.location-photo {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  border-radius: var(--r-card);
  display: block;
}

/* ---------- Directory ---------- */

.dir-head { padding-top: 52px; }
.dir-head .section-title { font-size: 34px; }
.dir-sub { color: var(--muted); font-size: 15.5px; margin: -6px 0 36px; }
.dir-notice {
  margin: -22px 0 36px;
  padding: 12px 16px;
  border-left: 3px solid var(--gold);
  background: var(--card);
  border-radius: 0 var(--r-btn) var(--r-btn) 0;
  color: var(--body-c);
  font-size: 14.5px;
  max-width: 640px;
}
.dir-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  padding-bottom: 84px;
}
.dir-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  overflow: hidden;
  display: block;
  text-decoration: none;
  transition: box-shadow .15s, transform .15s;
}
.dir-card:hover { box-shadow: 0 10px 26px rgba(29, 26, 22, .09); transform: translateY(-2px); }
.dir-card-media { aspect-ratio: 16 / 10; background: var(--card-deep); }
.dir-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dir-card-body { padding: 18px 20px 20px; }
.dir-card-body h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 6px;
}
.dir-card-meta { font-size: 13px; color: var(--muted); margin: 0 0 10px; }
.dir-card-tagline { font-size: 14px; color: var(--body-c); margin: 0 0 12px; }
.dir-card-cta { font-size: 13.5px; font-weight: 600; }
.dir-empty { color: var(--muted); padding-bottom: 90px; }

/* ---------- 404 ---------- */

.notfound { padding: 90px 28px 110px; text-align: center; }
.notfound h1 { font-family: var(--serif); font-size: 34px; font-weight: 600; margin: 0 0 12px; }
.notfound p { color: var(--body-c); margin: 0 0 26px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--dark);
  color: var(--dark-text);
  padding: 46px 0 52px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .75fr 1fr .75fr 1.4fr;
  gap: 40px;
}
.brand-light { color: #F3F0EA; }
.brand-light .brand-name { color: #F3F0EA; }
.brand-light .brand-tagline { display: none; }
.footer-brand > p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark-muted);
  margin: 16px 0 18px;
  max-width: 240px;
}
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: #CFCBC4; display: inline-flex; }
.footer-social a:hover { color: #fff; }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #F3F0EA;
  margin: 6px 0 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--dark-muted);
  text-decoration: none;
  padding: 5px 0;
}
.footer-col a:hover { color: #fff; }
.footer-newsletter p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark-muted);
  margin: 0 0 14px;
}
.newsletter-row { display: flex; }
.newsletter-row input {
  flex: 1;
  min-width: 0;
  font: inherit;
  font-size: 14px;
  padding: 11px 14px;
  background: #2A2A29;
  border: 1px solid #3A3937;
  border-right: 0;
  border-radius: var(--r-btn) 0 0 var(--r-btn);
  color: #F3F0EA;
}
.newsletter-row input::placeholder { color: #8B877F; }
.newsletter-row button {
  font: 600 14px/1 var(--sans);
  padding: 11px 18px;
  background: #ECE9E4;
  color: var(--ink);
  border: 0;
  border-radius: 0 var(--r-btn) var(--r-btn) 0;
  cursor: pointer;
}
.newsletter-row button:hover { background: #fff; }

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .site-nav { display: none; }
}
@media (max-width: 960px) {
  .overview-grid,
  .band,
  .contact-row { grid-template-columns: 1fr; }
  .contact-row { gap: 14px; }
  .location-photo { min-height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .tabs-inner { gap: 30px; overflow-x: auto; justify-content: flex-start; }
  .hero-inner { flex-direction: column; align-items: flex-start; gap: 34px; }
  .hero-badge { flex-basis: auto; width: 144px; height: 144px; }
  .hero-badge .badge-inner { font-size: 13px; }
}
@media (max-width: 700px) {
  .nav-search-btn span { display: none; }
  .nav-search-btn { padding: 10px 12px; }
  .header-inner { gap: 20px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .gallery-thumbs { grid-template-columns: repeat(3, 1fr); }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ---------- Header dropdown menus ---------- */

.nav-item { position: relative; display: inline-flex; }
.nav-menu {
  position: absolute;
  top: 100%;
  left: -18px;
  padding-top: 14px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .12s;
  z-index: 60;
}
.nav-menu-inner {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  box-shadow: 0 16px 38px rgba(29, 26, 22, .13);
  padding: 8px;
  min-width: 196px;
}
.nav-menu a {
  display: block;
  padding: 9px 14px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
}
.nav-menu a:hover { background: var(--paper); opacity: 1; }
.nav-item:hover .nav-menu,
.nav-item:focus-within .nav-menu { visibility: visible; opacity: 1; }

/* ---------- Homepage: hero ---------- */

.home-hero {
  background-color: var(--hero-base);
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(13,12,10,.97) 0%, rgba(13,12,10,.86) 36%, rgba(13,12,10,.34) 68%, rgba(13,12,10,.22) 100%),
    url('/img/home-hero.svg');
  background-size: cover;
  background-position: center right;
}
.home-hero-inner { padding-top: 92px; padding-bottom: 100px; }
.home-hero-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1.14;
  margin: 0 0 22px;
}
.home-hero-sub {
  font-size: 15.5px;
  line-height: 1.68;
  color: rgba(255, 255, 255, .88);
  max-width: 430px;
  margin: 0 0 32px;
}
.home-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background-color .15s, border-color .15s;
}
.hero-cta svg { width: 22px; height: 22px; flex: 0 0 22px; }
.hero-cta .cta-text { display: flex; flex-direction: column; gap: 4px; line-height: 1; text-align: left; }
.hero-cta strong { font-size: 15px; font-weight: 600; }
.hero-cta small { font-size: 12.5px; }
.hero-cta-dark { background: rgba(23, 21, 19, .72); border-color: rgba(255, 255, 255, .30); color: #fff; }
.hero-cta-dark:hover { border-color: rgba(255, 255, 255, .6); }
.hero-cta-dark small { color: rgba(255, 255, 255, .68); }
.hero-cta-light { background: #F2EFE9; color: var(--ink); }
.hero-cta-light:hover { background: #fff; }
.hero-cta-light small { color: var(--muted); }

/* ---------- Homepage: search band ---------- */

.home-search { padding-top: 30px; }
.search-band {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 16px 36px rgba(29, 26, 22, .07);
}
.sb-field { display: flex; align-items: center; gap: 10px; padding: 0 16px; min-width: 0; }
.sb-field > svg { width: 17px; height: 17px; flex: 0 0 17px; color: var(--muted); }
.sb-field input,
.sb-field select {
  width: 100%;
  min-width: 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 14.5px;
  color: var(--ink);
  padding: 13px 0;
}
.sb-field input::placeholder { color: var(--muted); }
.sb-query { flex: 1.7; }
.sb-cat { flex: 1; border-left: 1px solid var(--hairline); position: relative; }
.sb-caret {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted);
  display: inline-flex;
}
.sb-caret svg { width: 14px; height: 14px; }
.sb-loc { flex: 1.3; border-left: 1px solid var(--hairline); position: relative; }
/* Place-autocomplete dropdown (shared by any data-place-autocomplete field) */
.ac-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(29, 26, 22, .10);
  list-style: none;
  margin: 0;
  padding: 6px;
  z-index: 60;
  max-height: 280px;
  overflow: auto;
}
.ac-list li {
  padding: 9px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14.5px;
  color: var(--body-c);
}
.ac-list li.active,
.ac-list li:hover { background: var(--paper); color: var(--ink); }
.sb-radius { flex: 0 0 auto; border-left: 1px solid var(--hairline); gap: 6px; padding-right: 12px; }
.sb-radius input {
  width: 74px;
  -moz-appearance: textfield;
}
.sb-radius input::-webkit-outer-spin-button,
.sb-radius input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.sb-radius select {
  width: auto;
  font-size: 14px;
  color: var(--body-c);
  cursor: pointer;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 6px 8px;
  background: transparent;
}
.sb-submit { padding: 0 30px; border-radius: 8px; font-size: 15px; font-weight: 600; }

/* ---------- Homepage: category circles ---------- */

.home-cats { padding-top: 68px; }
/* Placeholder holding the old Browse-by-Category footprint:
   title (~56px incl. accent bar) + 38 + grid row (~200px) + 38 + link (~18px). */
.cats-placeholder {
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--hairline);
  border-radius: var(--r-card);
  background: var(--card);
  color: var(--muted);
  font-size: 15.5px;
  letter-spacing: .02em;
}
.section-title.center { text-align: center; font-size: 30px; }
.section-title.center::after { margin-left: auto; margin-right: auto; width: 54px; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 22px;
  margin-top: 38px;
}
.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  text-decoration: none;
}
.cat-circle {
  width: 100%;
  max-width: 150px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--card-deep);
  margin-bottom: 12px;
}
.cat-circle img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s; }
.cat-item:hover .cat-circle img { transform: scale(1.06); }
.cat-name { font-size: 15.5px; font-weight: 600; color: var(--ink); }
.cat-count { font-size: 13px; color: var(--muted); }
.cats-more { text-align: center; margin: 38px 0 0; }
.link-arrow { font-size: 14.5px; font-weight: 600; color: var(--ink); text-decoration: none; white-space: nowrap; }
.link-arrow .arrow { display: inline-block; transition: transform .15s; }
.link-arrow:hover .arrow { transform: translateX(3px); }

/* ---------- Homepage: featured artisans ---------- */

.home-feat { padding-top: 76px; }
.feat-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
.feat-head .section-title { margin: 0; font-size: 30px; }
.feat-head .section-title::after { display: none; }
.feat-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 72px) / 4);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.feat-track::-webkit-scrollbar { display: none; }
.feat-card {
  position: relative;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  transition: box-shadow .15s;
}
.feat-card:hover { box-shadow: 0 10px 26px rgba(29, 26, 22, .09); }
.feat-link { display: block; text-decoration: none; color: inherit; border-radius: inherit; overflow: hidden; }
.feat-media { display: block; aspect-ratio: 4 / 3; background: var(--card-deep); }
.feat-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feat-save {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
}
.feat-save svg { width: 17px; height: 17px; }
.feat-save:hover { color: var(--gold); }
.feat-body { display: block; padding: 0 18px 18px; }
.feat-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  margin: -23px 0 10px;
  border: 3px solid #fff;
  background: var(--tan);
  box-shadow: 0 1px 5px rgba(29, 26, 22, .18);
}
.feat-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feat-avatar-mono { color: #fff; font: 600 14px var(--serif); letter-spacing: .04em; }
.feat-name { display: block; font-family: var(--serif); font-weight: 600; font-size: 19px; margin: 0 0 3px; }
.feat-loc { display: block; font-size: 13px; color: var(--muted); margin: 0 0 9px; }
.feat-tagline { display: block; font-size: 13.5px; line-height: 1.5; color: var(--body-c); margin: 0 0 13px; }
.feat-chip {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--body-c);
  background: #F1EEE8;
  border-radius: 6px;
  padding: 5px 10px;
}
.feat-dots { display: flex; justify-content: center; gap: 9px; margin-top: 28px; }
.feat-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #CFCAC1;
  cursor: pointer;
}
.feat-dots button.active { background: var(--ink); }

/* ---------- Homepage: Keep Craft Alive CTA ---------- */

.home-cta {
  margin-top: 88px;
  background-color: #16130F;
  color: #fff;
  background-image:
    linear-gradient(rgba(15, 13, 10, .78), rgba(15, 13, 10, .78)),
    url('/img/home-cta.svg');
  background-size: cover;
  background-position: center;
}
.cta-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr 1.1fr;
  gap: 30px;
  align-items: center;
  padding-top: 66px;
  padding-bottom: 66px;
}
.cta-copy h2 { font-family: var(--serif); font-weight: 600; font-size: 33px; margin: 0 0 14px; }
.cta-copy p { font-size: 15px; line-height: 1.66; color: rgba(255, 255, 255, .74); margin: 0; max-width: 300px; }
.cta-card {
  background: rgba(13, 11, 9, .55);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 12px;
  padding: 26px 26px 28px;
}
.cta-card h3 { font-family: var(--serif); font-weight: 600; font-size: 20px; margin: 0 0 10px; }
.cta-card p { font-size: 14px; line-height: 1.62; color: rgba(255, 255, 255, .72); margin: 0 0 20px; }
.btn-cream { background: #F0EDE7; color: var(--ink); }
.btn-cream:hover { background: #fff; }

/* ---------- Footer bottom bar ---------- */

.footer-bottom { border-top: 1px solid #35342F; margin-top: 46px; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 22px;
  font-size: 13px;
  color: var(--dark-muted);
}
.footer-legal { display: flex; gap: 26px; }
.footer-osm { margin-left: 14px; opacity: .75; }
.footer-osm a { color: inherit; }
.footer-legal a { color: var(--dark-muted); text-decoration: none; }
.footer-legal a:hover { color: #fff; }

/* ---------- Homepage responsive ---------- */

@media (max-width: 1080px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 26px; }
}
@media (max-width: 980px) {
  .feat-track { grid-auto-columns: calc((100% - 24px) / 2); }
  .cta-grid { grid-template-columns: 1fr 1fr; }
  .cta-copy { grid-column: 1 / -1; }
  .home-hero-inner { padding-top: 68px; padding-bottom: 76px; }
}
@media (max-width: 760px) {
  .search-band { flex-direction: column; padding: 6px 0; }
  .sb-field { padding: 0 18px; }
  .sb-cat, .sb-loc, .sb-radius { border-left: 0; border-top: 1px solid var(--hairline); }
  .sb-radius { padding: 10px 18px; }
  .sb-caret { right: 18px; }
  .sb-submit { margin: 8px 8px 2px; padding: 14px; }
}
@media (max-width: 640px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .feat-track { grid-auto-columns: 86%; }
  .cta-grid { grid-template-columns: 1fr; }
  .feat-head { flex-wrap: wrap; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Backend V3 — header search button, craft combobox, /search, /categories
   ========================================================================== */

/* Header: the search field became a button into /search (advanced search). */
.nav-search-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  padding: 10px 16px;
  border: 1px solid #D9D4CB;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s;
}
.nav-search-btn:hover { border-color: #A9A296; }
.nav-search-btn svg { width: 16px; height: 16px; color: var(--muted); }

/* Craft combobox: one input, typing autocompletes, the chevron opens the
   full list. The panel is the shared .ac-list overlay — nothing reflows. */
.craft-combo { position: relative; width: 100%; }
.craft-combo > input { width: 100%; padding-right: 32px; }
.combo-toggle {
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  padding: 6px;
  cursor: pointer;
  color: var(--muted);
  display: inline-flex;
}
.combo-toggle:hover { color: var(--ink); }
.combo-toggle svg { width: 14px; height: 14px; transition: transform .15s; }
.craft-combo.open .combo-toggle svg { transform: rotate(180deg); }
.ac-crafts { max-height: 300px; }

/* Advanced Search link under the homepage band. */
.adv-cta { display: flex; justify-content: flex-end; padding-top: 12px; }
.adv-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--body-c);
  text-decoration: none;
  padding: 4px 2px;
  border-bottom: 1px solid transparent;
  transition: color .15s, border-color .15s;
}
.adv-link:hover { color: var(--ink); border-color: var(--tan); }
.adv-link svg { width: 15px; height: 15px; color: var(--muted); }
.adv-link:hover svg { color: var(--gold); }

/* ---------- /search — the advanced search form ---------- */

.adv-head { padding-top: 52px; }
.adv-head .section-title { font-size: 34px; }
.adv-wrap { max-width: 820px; padding-bottom: 100px; }
.adv-form {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 30px 34px 30px;
  box-shadow: 0 16px 36px rgba(29, 26, 22, .07);
  display: grid;
  gap: 26px;
}
.adv-group { display: grid; gap: 14px; }
.adv-group + .adv-group { border-top: 1px solid var(--hairline); padding-top: 26px; }
.adv-label {
  font: 600 11.5px/1 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.adv-row { display: grid; gap: 22px; }
.adv-row.cols-2 { grid-template-columns: 1fr 1fr; }
.adv-field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.adv-name { font-size: 14px; font-weight: 500; color: var(--ink); }
.adv-form input[type="text"],
.adv-form input[type="search"],
.adv-form input[type="number"],
.adv-form select {
  width: 100%;
  border: 1px solid var(--hairline);
  border-radius: 9px;
  padding: 12px 14px;
  font: inherit;
  font-size: 14.5px;
  background: #fff;
  color: var(--ink);
}
.adv-form input::placeholder { color: var(--muted); }
.adv-form .craft-combo > input { padding-right: 36px; }
.adv-form .combo-toggle { right: 6px; }
.adv-select { position: relative; display: block; }
.adv-select select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 38px;
}
.adv-hint { font-size: 12.5px; color: var(--muted); margin: 0; }
.adv-hint a { color: var(--body-c); }
.adv-check {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--body-c);
  cursor: pointer;
}
.adv-check input { width: 16px; height: 16px; accent-color: var(--green); flex: 0 0 auto; }
.adv-loc-row {
  display: grid;
  grid-template-columns: 1fr 120px 92px;
  gap: 12px;
  align-items: end;
}
.adv-loc { position: relative; }
.adv-loc > svg {
  position: absolute;
  left: 13px;
  bottom: 14px;
  width: 16px;
  height: 16px;
  color: var(--muted);
  pointer-events: none;
}
.adv-loc input { padding-left: 38px; }
.adv-form input[type="number"] { -moz-appearance: textfield; }
.adv-form input[type="number"]::-webkit-outer-spin-button,
.adv-form input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.adv-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--hairline);
  padding-top: 26px;
  flex-wrap: wrap;
}
.adv-sort { flex: 0 0 auto; width: 230px; }
.adv-reset { font-size: 14px; color: var(--muted); margin-left: auto; }
.adv-reset:hover { color: var(--ink); }
@media (max-width: 720px) {
  .adv-form { padding: 22px 20px; }
  .adv-row.cols-2 { grid-template-columns: 1fr; }
  .adv-loc-row { grid-template-columns: 1fr; align-items: stretch; }
  .adv-sort { width: 100%; }
  .adv-reset { margin-left: 0; }
}

/* ---------- /categories — the full craft index ---------- */

.catsx-head { padding-top: 52px; }
.catsx-head .section-title { font-size: 34px; }
.catsx { max-width: 720px; padding-bottom: 100px; }
.catsx-meta {
  font-size: 13px;
  color: var(--muted);
  margin: -14px 0 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
}
.catsx-group { margin-top: 30px; }
.catsx-letter {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  color: var(--ink);
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.catsx-letter::after {
  content: '';
  flex: 0 0 26px;
  height: 3px;
  background: var(--tan);
}
.catsx-list { list-style: none; margin: 0; padding: 0; }
.catsx-item {
  display: block;
  padding: 8px 10px;
  margin: 0 -10px;
  border-radius: 7px;
  font-size: 15px;
  color: var(--body-c);
  text-decoration: none;
  transition: background-color .12s, color .12s;
}
.catsx-item:hover { background: #fff; color: var(--ink); }
.catsx-count { color: var(--muted); }
.catsx-zero { color: var(--muted); }

/* ---------- Directory results: active-filter chips + card ratings ---------- */

.dir-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin: -24px 0 36px;
}
.dir-chip {
  font-size: 12.5px;
  padding: 6px 12px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: #fff;
  color: var(--body-c);
}
.dir-refine {
  font-size: 13px;
  font-weight: 500;
  color: var(--body-c);
}
.dir-refine:hover { color: var(--ink); }
.dir-rate { display: inline-flex; align-items: center; gap: 4px; color: var(--body-c); white-space: nowrap; }
.dir-rate svg { width: 11.5px; height: 11.5px; color: var(--gold); }
.dir-rate-n { color: var(--muted); }
.dir-empty a { color: var(--body-c); }

/* ============ Backend V4 ============ */

/* --- Explore placeholder --- */
.xp-head { padding: 64px 0 8px; }
.xp-sub { color: var(--muted); max-width: 560px; margin-top: 14px; line-height: 1.6; }
.xp { padding: 34px 0 96px; }
.xp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.xp-card {
  display: block; background: #fff; border: 1px solid var(--hairline);
  border-radius: 12px; padding: 26px 24px 22px; text-decoration: none;
  color: var(--dark); transition: border-color .15s, transform .15s;
}
.xp-card:hover { border-color: var(--tan); transform: translateY(-2px); }
.xp-icon { color: var(--gold); display: inline-block; }
.xp-icon svg { width: 22px; height: 22px; }
.xp-card h2 { font-family: var(--serif); font-size: 19px; margin: 12px 0 8px; }
.xp-card p { color: var(--muted); font-size: 14px; line-height: 1.55; margin: 0 0 14px; }
.xp-go { font-size: 13px; font-weight: 600; color: var(--green); }
.xp-card:hover .xp-go { color: var(--gold); }

/* --- Directory tools row: filters left, view toggle right --- */
.dir-tools { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin: -24px 0 36px; }
.dir-tools .dir-filters { margin: 0; }
.view-toggle {
  display: inline-flex; border: 1px solid var(--hairline); border-radius: 9px;
  overflow: hidden; background: #fff; flex: none;
}
.vt-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 32px; color: var(--muted);
}
.vt-btn + .vt-btn { border-left: 1px solid var(--hairline); }
.vt-btn:hover { color: var(--dark); background: var(--paper); }
.vt-btn.active { color: #fff; background: var(--green); }

/* --- List view --- */
.dir-list { border: 1px solid var(--hairline); border-radius: 12px; background: #fff; overflow: hidden; margin-bottom: 48px; }
.dl-row {
  display: flex; align-items: center; gap: 18px; padding: 14px 18px 14px 14px;
  text-decoration: none; color: var(--dark); transition: background .12s;
}
.dl-row + .dl-row { border-top: 1px solid var(--hairline); }
.dl-row:hover { background: var(--paper); }
.dl-media {
  flex: none; width: 118px; height: 78px; border-radius: 8px; overflow: hidden;
  background: linear-gradient(135deg, #E9E2D8, #D9CDBC);
}
.dl-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dl-body { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.dl-name { font-family: var(--serif); font-size: 17.5px; font-weight: 700; }
.dl-meta { font-size: 12.5px; color: var(--muted); }
.dl-meta .dir-rate { font-size: 11.5px; }
.dl-tagline {
  font-size: 13.5px; color: var(--muted); overflow: hidden;
  text-overflow: ellipsis; white-space: nowrap;
}
.dl-go { margin-left: auto; flex: none; color: var(--tan); font-size: 18px; transition: transform .12s, color .12s; }
.dl-row:hover .dl-go { color: var(--gold); transform: translateX(3px); }

/* --- Pagination --- */
.dir-pages {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 6px 0 84px; flex-wrap: wrap;
}
.pg-num, .pg-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 34px; height: 34px; padding: 0 6px; border-radius: 8px;
  border: 1px solid var(--hairline); background: #fff; color: var(--dark);
  font-size: 13.5px; text-decoration: none;
}
a.pg-num:hover, a.pg-arrow:hover { border-color: var(--tan); color: var(--green); }
.pg-num.current { background: var(--green); border-color: var(--green); color: #fff; }
.pg-arrow.off { opacity: .35; }
.pg-gap { color: var(--muted); padding: 0 2px; }

@media (max-width: 700px) {
  .dir-tools { flex-wrap: wrap; }
  .dl-media { width: 88px; height: 62px; }
  .dl-tagline { display: none; }
  .dl-row { gap: 14px; }
}

/* ============ Backend V6 ============ */

/* Legal documents */
.legal-wrap { padding: 56px 0 96px; }
.legal { max-width: 720px; background: #fff; border: 1px solid var(--hairline); border-radius: 14px; padding: 44px 48px 52px; }
.legal h1 { font-family: var(--serif); font-size: 30px; margin: 0 0 4px; }
.legal h1 + p em, .legal > p:first-of-type em { color: var(--muted); font-size: 13.5px; }
.legal h2 { font-family: var(--serif); font-size: 20px; margin: 30px 0 10px; }
.legal p, .legal li { font-size: 15px; line-height: 1.65; color: var(--body-c); }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--green); }
@media (max-width: 640px) { .legal { padding: 28px 22px 36px; } }

/* AI-Free hero line + card chips */
.hero-aifree { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--tan); margin: 4px 0 0; }
.hero-aifree svg { color: var(--gold); }
.hero-aifree span { font-size: 10.5px; text-transform: uppercase; letter-spacing: .07em; opacity: .75; }
.pf-chip {
  display: inline-block; margin-left: 8px; padding: 1px 8px; border-radius: 999px;
  font-size: 10px; letter-spacing: .06em; text-transform: uppercase; vertical-align: 2px;
  font-family: var(--sans); font-weight: 600;
}
.pf-chip.aifree { background: #F3EAD8; color: #8A6A2A; }
.pf-chip.mature { background: #EFE4E1; color: #8A3A2A; }

/* Mature: blurred card media + interstitial */
.dir-card-media.is-mature img, .dl-media.is-mature img { filter: blur(14px) saturate(.85); transform: scale(1.06); }
.dir-card-media.is-mature, .dl-media.is-mature { overflow: hidden; position: relative; }
.dir-card-media.is-mature::after, .dl-media.is-mature::after {
  content: 'Mature'; position: absolute; inset: auto auto 8px 8px;
  background: rgba(32,32,32,.72); color: #fff; border-radius: 999px;
  font-size: 10px; letter-spacing: .07em; text-transform: uppercase; padding: 2px 9px;
}
.mature-gate { min-height: 62vh; display: grid; place-items: center; padding: 60px 0; }
.mature-card { max-width: 520px; background: #fff; border: 1px solid var(--hairline); border-radius: 14px; padding: 40px 42px; text-align: center; }
.mature-card h1 { font-family: var(--serif); font-size: 26px; margin: 0 0 10px; }
.mg-flag { display: inline-flex; align-items: center; gap: 8px; color: #8A3A2A; font-size: 13px; letter-spacing: .05em; text-transform: uppercase; }
.mg-text { color: var(--muted); line-height: 1.6; margin: 14px 0 24px; }
.mg-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Commission history */
.comm-section { padding: 8px 0 26px; }
.comm-grid { display: grid; grid-template-columns: 280px 1fr; gap: 34px; background: #fff; border: 1px solid var(--hairline); border-radius: 14px; padding: 30px 34px; }
.comm-range { border-right: 1px solid var(--hairline); padding-right: 34px; display: flex; flex-direction: column; gap: 6px; }
.comm-label { font-size: 11.5px; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); }
.comm-figures { font-family: var(--serif); font-size: 27px; color: var(--green); }
.comm-hint { font-size: 12px; color: var(--muted); }
.comm-proud h3 { font-family: var(--serif); font-size: 18px; margin: 0 0 8px; }
.comm-proud p { color: var(--body-c); line-height: 1.65; font-size: 14.5px; }
@media (max-width: 760px) {
  .comm-grid { grid-template-columns: 1fr; gap: 20px; }
  .comm-range { border-right: none; border-bottom: 1px solid var(--hairline); padding: 0 0 18px; }
}

/* Contact CTA replaces the anonymous form */
.contact-note { font-size: 13px; color: var(--muted); line-height: 1.6; margin-top: 14px; }
.contact-note a { color: var(--green); }
.review-cta { display: flex; align-items: center; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.review-cta-note { font-size: 12.5px; color: var(--muted); }
