/* ==========================================================================
   תומר פתרונות עץ — Artis Pergola | מערכת עיצוב ראשית
   כיוון: "Outdoor Living" בהיר ואוורירי · RTL · Mobile-first
   ========================================================================== */

/* ----- 1. Design tokens ------------------------------------------------- */
:root {
  /* צבעים — בסיס בהיר וחמים */
  --c-bg:        #FCFBF9;   /* לבן נקי וחמים */
  --c-surface:   #FFFFFF;   /* כרטיסים / משטחים */
  --c-surface-2: #F5F0E7;   /* קרם בהיר לסקשנים מתחלפים */
  --c-ink:       #2A2118;   /* אספרסו כהה (מהלוגו) */
  --c-ink-soft:  #6B5E50;   /* טקסט משני */
  --c-line:      #EAE2D5;   /* קווים / גבולות */

  /* אקנט — ברונזה/עץ מתוך הלוגו */
  --c-accent:      #9A6B33;
  --c-accent-dark: #6E4A21;
  --c-accent-soft: #F3E9DB;

  /* משני — עץ חם */
  --c-wood:      #B5803F;
  --c-wood-soft: #F3E7D3;

  --c-white: #fff;
  --c-shadow: 39 60 47;     /* RGB לחישוב צללים */

  /* טיפוגרפיה */
  --font-head: "Rubik", "Segoe UI", Arial, sans-serif;
  --font-body: "Heebo", "Segoe UI", Arial, sans-serif;

  --fs-900: clamp(2.4rem, 5.2vw, 4rem);
  --fs-800: clamp(2rem, 4vw, 3rem);
  --fs-700: clamp(1.6rem, 3vw, 2.25rem);
  --fs-600: clamp(1.3rem, 2.2vw, 1.6rem);
  --fs-500: 1.15rem;
  --fs-400: 1rem;
  --fs-300: 0.9rem;

  /* מרווחים ורדיוסים */
  --sp: clamp(1rem, 2.5vw, 1.5rem);
  --gutter: clamp(1.1rem, 5vw, 2rem);
  --maxw: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgb(var(--c-shadow) / .06);
  --shadow-md: 0 10px 30px rgb(var(--c-shadow) / .10);
  --shadow-lg: 0 24px 60px rgb(var(--c-shadow) / .16);

  --ease: cubic-bezier(.4, 0, .2, 1);
  --t: .28s var(--ease);

  --header-h: 76px;
}

/* ----- 2. Reset --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-400);
  line-height: 1.7;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
img { background: var(--c-surface-2); }

a { color: var(--c-accent-dark); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--c-accent); }

ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.18; font-weight: 700; color: var(--c-ink); }
h1 { font-size: var(--fs-900); }
h2 { font-size: var(--fs-800); }
h3 { font-size: var(--fs-600); }

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

/* קישור דילוג לתוכן (נגישות) */
.skip-link {
  position: absolute; right: 8px; top: -60px; z-index: 1100;
  background: var(--c-accent-dark); color: #fff; padding: .6rem 1.1rem;
  border-radius: var(--radius); transition: top var(--t);
}
.skip-link:focus { top: 8px; color: #fff; }

/* ----- 3. Layout helpers ------------------------------------------------ */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.2rem, 8vw, 6rem); }
.section--tint { background: var(--c-surface-2); }
.section--accent { background: var(--c-accent-soft); }

.section-head { max-width: 680px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 700; font-size: var(--fs-300);
  letter-spacing: .04em; color: var(--c-accent-dark);
  text-transform: none; margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--c-wood); border-radius: 2px; }
.section-head--center .eyebrow { justify-content: center; }
.lead { font-size: var(--fs-500); color: var(--c-ink-soft); margin-top: 1rem; }

.grid { display: grid; gap: clamp(1.1rem, 2.5vw, 1.8rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ----- 4. Buttons ------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-weight: 700; font-size: var(--fs-400); line-height: 1;
  padding: .95rem 1.7rem; border-radius: var(--radius-pill);
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  white-space: nowrap; cursor: pointer; text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.1em; height: 1.1em; }

.btn--primary { background: var(--c-accent); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--c-accent-dark); color: #fff; box-shadow: var(--shadow-lg); }

.btn--wood { background: var(--c-wood); color: #2c2110; box-shadow: var(--shadow-sm); }
.btn--wood:hover { background: #b08446; color: #2c2110; }

.btn--ghost { background: transparent; color: var(--c-accent-dark); box-shadow: inset 0 0 0 2px var(--c-line); }
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--c-accent); color: var(--c-accent-dark); }

.btn--whatsapp { background: #25D366; color: #07371b; }
.btn--whatsapp:hover { background: #1eb858; color: #07371b; }

.btn--lg { padding: 1.1rem 2.1rem; font-size: var(--fs-500); }
.btn--block { width: 100%; }

/* ----- 5. Header / Nav -------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgb(251 250 247 / .88);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--c-line);
}
.nav {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--font-head); font-weight: 700; }
.brand:hover { color: var(--c-ink); }
.brand img, .brand svg { height: 42px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text b { font-size: 1.15rem; color: var(--c-ink); }
.brand-text span { font-family: var(--font-body); font-size: .72rem; font-weight: 500; color: var(--c-ink-soft); letter-spacing: .02em; }

.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a {
  display: inline-block; padding: .55rem .85rem; border-radius: var(--radius);
  font-weight: 600; color: var(--c-ink); font-size: .98rem;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { background: var(--c-accent-soft); color: var(--c-accent-dark); }
.nav-cta { display: flex; align-items: center; gap: .5rem; }

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

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: var(--c-surface);
    border-bottom: 1px solid var(--c-line);
    box-shadow: var(--shadow-md);
    padding: 1rem var(--gutter) 1.6rem;
    flex-direction: column; align-items: stretch; gap: .8rem;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform var(--t), opacity var(--t);
  }
  .nav-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links { flex-direction: column; align-items: stretch; gap: .15rem; }
  .nav-links a { padding: .85rem 1rem; font-size: 1.05rem; }
  .nav-cta { flex-direction: column; align-items: stretch; margin-top: .6rem; }
  .nav-cta .btn { width: 100%; }
}

/* הסתרת כפתורי הוואטסאפ/חיוג בהדר בדסקטופ (נשארים בתפריט המובייל) */
@media (min-width: 941px) {
  .nav-cta { display: none; }
}

/* ----- 6. Hero ---------------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--c-surface-2); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center; padding-block: clamp(2.6rem, 6vw, 5rem);
}
.hero-copy { max-width: 560px; }
.hero h1 { margin-bottom: 1.1rem; }
.hero h1 .accent { color: var(--c-accent-dark); }
.hero p.lead { margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.8rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--c-line); }
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust b { font-family: var(--font-head); font-size: 1.7rem; color: var(--c-accent-dark); line-height: 1; }
.hero-trust span { font-size: var(--fs-300); color: var(--c-ink-soft); }

.hero-media { position: relative; }
.hero-media .media-frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5; background: var(--c-surface);
}
.hero-media .media-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; inset-inline-start: -14px; bottom: 24px;
  background: var(--c-surface); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: .85rem 1.1rem;
  display: flex; align-items: center; gap: .7rem; max-width: 230px;
}
.hero-badge .stars { color: var(--c-wood); font-size: 1rem; letter-spacing: 1px; }
.hero-badge b { display: block; font-family: var(--font-head); font-size: 1.05rem; }
.hero-badge small { color: var(--c-ink-soft); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 460px; margin-inline: auto; }
  .hero-media .media-frame { aspect-ratio: 16 / 11; }
}

/* ----- 6b. Hero full-bleed (תמונת רקע אמיתית) ---------------------------- */
.hero--bg { position: relative; min-height: clamp(520px, 82vh, 760px); display: flex; align-items: center; }
.hero--bg .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero--bg .hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgb(33 24 14 / .92) 0%, rgb(42 30 17 / .55) 45%, rgb(46 34 20 / .3) 100%),
    linear-gradient(to left, rgb(33 24 14 / .6), rgb(33 24 14 / .12));
}
.hero--bg .hero-inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(2.5rem, 6vw, 4rem); }
.hero--bg .hero-copy { max-width: 620px; }
.hero--bg .eyebrow { color: #cfe9d7; }
.hero--bg .eyebrow::before { background: var(--c-wood); }
.hero--bg h1 { color: #fff; }
.hero--bg h1 .accent { color: #e7c489; }
.hero--bg p.lead { color: rgb(255 255 255 / .92); }
.hero--bg .hero-trust { border-top-color: rgb(255 255 255 / .25); }
.hero--bg .hero-trust b { color: #ffd9a3; }
.hero--bg .hero-trust span { color: rgb(255 255 255 / .8); }
.hero--bg .btn--ghost { color: #fff; box-shadow: inset 0 0 0 2px rgb(255 255 255 / .6); }
.hero--bg .btn--ghost:hover { box-shadow: inset 0 0 0 2px #fff; background: rgb(255 255 255 / .12); color: #fff; }

/* לוגו מעוגל עדין (תמונת אמת) */
.brand img, .footer-brand img { border-radius: 9px; object-fit: cover; }

/* תמונה ממלאת מסגרת מדיה (עמודי שירות/אזור/אודות) */
.media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ----- 7. Cards --------------------------------------------------------- */
.card {
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d7d0c1; }
.card-media { aspect-ratio: 3 / 2; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.card-body h3 { font-size: var(--fs-600); }
.card-body p { color: var(--c-ink-soft); }
.card-body .card-link { margin-top: auto; font-weight: 700; color: var(--c-accent-dark); display: inline-flex; align-items: center; gap: .35rem; }
.card-body .card-link::after { content: "←"; transition: transform var(--t); }
.card:hover .card-link::after { transform: translateX(-4px); }

.card-icon { width: 54px; height: 54px; border-radius: 14px; background: var(--c-accent-soft); color: var(--c-accent-dark); display: grid; place-items: center; margin-bottom: .4rem; }
.card-icon svg { width: 28px; height: 28px; }

/* רשימת יתרונות */
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature .tick { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: var(--c-accent-soft); color: var(--c-accent-dark); display: grid; place-items: center; }
.feature .tick svg { width: 18px; height: 18px; }
.feature h3 { font-size: var(--fs-500); margin-bottom: .2rem; }
.feature p { color: var(--c-ink-soft); font-size: var(--fs-400); }

/* ----- 8. Process steps ------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 1.3rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.step { position: relative; background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 1.8rem 1.5rem 1.5rem; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -18px; inset-inline-start: 22px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-accent); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem;
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.step h3 { font-size: var(--fs-500); margin: .6rem 0 .4rem; }
.step p { color: var(--c-ink-soft); font-size: var(--fs-400); }

/* ----- 9. Gallery ------------------------------------------------------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.8rem; }
.filter-btn {
  padding: .55rem 1.2rem; border-radius: var(--radius-pill);
  background: var(--c-surface); border: 1px solid var(--c-line);
  font-weight: 600; color: var(--c-ink-soft); transition: all var(--t);
}
.filter-btn:hover { border-color: var(--c-accent); color: var(--c-accent-dark); }
.filter-btn[aria-pressed="true"] { background: var(--c-accent); color: #fff; border-color: var(--c-accent); }

.gallery-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1 / 1; cursor: pointer; background: var(--c-surface-2); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.4rem .9rem .7rem;
  color: #fff; font-weight: 600; font-size: .9rem;
  background: linear-gradient(to top, rgb(20 28 22 / .8), transparent);
  opacity: 0; transition: opacity var(--t);
}
.gallery-item:hover figcaption, .gallery-item:focus-visible figcaption { opacity: 1; }
.gallery-item.is-hidden { display: none; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1200; background: rgb(18 24 20 / .92); display: none; place-items: center; padding: 1.2rem; }
.lightbox.is-open { display: grid; }
.lightbox img { max-width: min(94vw, 1100px); max-height: 86vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); object-fit: contain; }
.lightbox-close, .lightbox-nav { position: absolute; background: rgb(255 255 255 / .12); color: #fff; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; backdrop-filter: blur(4px); transition: background var(--t); }
.lightbox-close:hover, .lightbox-nav:hover { background: rgb(255 255 255 / .25); }
.lightbox-close { top: 20px; inset-inline-end: 20px; font-size: 1.6rem; }
.lightbox-nav { top: 50%; transform: translateY(-50%); font-size: 1.8rem; }
.lightbox-prev { inset-inline-start: 18px; }
.lightbox-next { inset-inline-end: 18px; }
@media (max-width: 600px) { .lightbox-nav { width: 44px; height: 44px; } }

/* ----- 10. Reviews ------------------------------------------------------ */
.review-card { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 1.7rem 1.6rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: .9rem; }
.review-card .stars { color: var(--c-wood); letter-spacing: 2px; font-size: 1.05rem; }
.review-card blockquote { font-size: var(--fs-500); line-height: 1.65; }
.review-card .reviewer { display: flex; align-items: center; gap: .7rem; margin-top: auto; }
.review-card .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--c-accent-soft); color: var(--c-accent-dark); display: grid; place-items: center; font-weight: 700; font-family: var(--font-head); }
.review-card .reviewer b { display: block; }
.review-card .reviewer small { color: var(--c-ink-soft); }

/* ----- 11. FAQ (accordion) ---------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--c-line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: start; padding: 1.25rem .25rem; font-family: var(--font-head); font-weight: 700; font-size: var(--fs-500); color: var(--c-ink); }
.faq-q:hover { color: var(--c-accent-dark); }
.faq-q .chev { flex: 0 0 auto; width: 26px; height: 26px; display: grid; place-items: center; color: var(--c-accent); transition: transform var(--t); }
.faq-q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height var(--t); }
.faq-a-inner { padding: 0 .25rem 1.3rem; color: var(--c-ink-soft); }

/* ----- 12. CTA band ----------------------------------------------------- */
.cta-band { background: linear-gradient(135deg, var(--c-accent-dark), var(--c-accent)); color: #fff; border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.4rem); text-align: center; box-shadow: var(--shadow-md); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgb(255 255 255 / .9); max-width: 560px; margin: 1rem auto 1.8rem; font-size: var(--fs-500); }
.cta-band .hero-actions { justify-content: center; }
.cta-band .btn--primary { background: #fff; color: var(--c-accent-dark); }
.cta-band .btn--primary:hover { background: var(--c-wood-soft); color: var(--c-accent-dark); }

/* ----- 13. Forms -------------------------------------------------------- */
.lead-form { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow-md); }
.form-row { margin-bottom: 1.1rem; }
.form-row label { display: block; font-weight: 600; margin-bottom: .4rem; font-size: var(--fs-400); }
.form-row .req { color: #b3471f; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--c-line);
  border-radius: var(--radius); background: var(--c-bg); transition: border-color var(--t), box-shadow var(--t);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--c-accent); box-shadow: 0 0 0 3px var(--c-accent-soft); }
.form-row textarea { resize: vertical; min-height: 110px; }
.form-row .error-msg { color: #b3471f; font-size: var(--fs-300); margin-top: .35rem; display: none; }
.form-row.has-error input, .form-row.has-error select, .form-row.has-error textarea { border-color: #d4724e; }
.form-row.has-error .error-msg { display: block; }
.form-note { font-size: var(--fs-300); color: var(--c-ink-soft); margin-top: .8rem; }
.form-success { display: none; background: var(--c-accent-soft); border: 1px solid var(--c-accent); color: var(--c-accent-dark); border-radius: var(--radius); padding: 1rem 1.2rem; font-weight: 600; margin-top: 1rem; }
.form-success.is-visible { display: block; }

/* ----- 14. Floating actions + mobile bar -------------------------------- */
.floaters { position: fixed; left: 18px; right: auto; bottom: 18px; z-index: 900; display: flex; flex-direction: column; gap: .7rem; }
.floater { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow-md); color: #fff; transition: transform var(--t); }
.floater:hover { transform: scale(1.08); color: #fff; }
.floater svg { width: 28px; height: 28px; }
.floater--wa { background: #25D366; }
.floater--tel { background: var(--c-accent); }

.mobile-bar { display: none; }
@media (max-width: 720px) {
  .floaters { bottom: 78px; }
  .mobile-bar {
    position: fixed; inset: auto 0 0 0; z-index: 950;
    display: grid; grid-template-columns: 1fr 1fr;
    background: var(--c-surface); border-top: 1px solid var(--c-line);
    box-shadow: 0 -6px 20px rgb(var(--c-shadow) / .1);
  }
  .mobile-bar a { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .9rem; font-weight: 700; }
  .mobile-bar a svg { width: 20px; height: 20px; }
  .mobile-bar .mb-wa { color: #128C3E; }
  .mobile-bar .mb-tel { color: var(--c-accent-dark); border-inline-start: 1px solid var(--c-line); }
  body { padding-bottom: 60px; }
}

/* ----- 15. Breadcrumbs -------------------------------------------------- */
.breadcrumbs { padding-block: 1rem; font-size: var(--fs-300); color: var(--c-ink-soft); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; }
.breadcrumbs li:not(:last-child)::after { content: "‹"; margin-inline-start: .4rem; color: var(--c-line); }
.breadcrumbs a { color: var(--c-ink-soft); }
.breadcrumbs a:hover { color: var(--c-accent-dark); }
.breadcrumbs [aria-current="page"] { color: var(--c-ink); font-weight: 600; }

/* ----- 16. Page hero (inner pages) -------------------------------------- */
.page-hero { background: var(--c-accent-soft); padding-block: clamp(2.4rem, 5vw, 3.6rem); }
.page-hero h1 { margin-bottom: .6rem; }
.page-hero p { color: var(--c-ink-soft); font-size: var(--fs-500); max-width: 640px; }

/* ----- 17. Footer ------------------------------------------------------- */
.site-footer { background: #271E15; color: #d8cdbd; padding-block: clamp(2.6rem, 5vw, 3.6rem) 1.4rem; }
.site-footer a { color: #cdd5cb; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; margin-bottom: 2rem; }
.footer-brand { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.footer-brand img, .footer-brand svg { height: 44px; }
.footer-brand b { font-family: var(--font-head); font-size: 1.2rem; color: #fff; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: var(--fs-400); letter-spacing: .03em; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .7rem; }
.footer-contact svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--c-wood); margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgb(255 255 255 / .12); padding-top: 1.3rem; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; font-size: var(--fs-300); color: #9aa698; }
.footer-bottom a { color: #9aa698; text-decoration: underline; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .footer-grid { grid-template-columns: 1fr; } }

/* ----- 18. Utilities ---------------------------------------------------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.placeholder-img { display: grid; place-items: center; width: 100%; height: 100%; background: repeating-linear-gradient(135deg, #efe9dd, #efe9dd 14px, #e9e2d3 14px, #e9e2d3 28px); color: #9a8f78; font-size: .85rem; font-weight: 600; text-align: center; padding: 1rem; }
