/*
Theme Name: Mouchak Family Care
Theme URI: https://mouchakfamilycare.com
Author: Mouchak Family Care
Author URI: https://mouchakfamilycare.com
Description: Custom theme for Mouchak Family Care — a warm, honeycomb-themed design for a family of businesses spanning food, retail, wholesale, travel, crafts, digital commerce and agriculture. Built for the block editor (Gutenberg) with ready-made patterns for every section.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mouchak-family-care
*/

/* ===========================================================
   Mouchak Family Care — Design tokens
   Palette pulled from the brand's own logos (peach / plum / honey)
   =========================================================== */

:root{
  --peach:        #f9dfce;
  --peach-soft:   #fdeee4;
  --cream:        #fffaf4;
  --plum:         #3d2b3b;
  --plum-2:       #55394f;
  --plum-tint:    #6d4a66;
  --honey:        #e8a33d;
  --honey-deep:   #c97f1f;
  --honey-light:  #f6c877;
  --charcoal:     #362e2a;
  --charcoal-soft:#6b5f59;
  --rose:         #e8a9a0;
  --line:         rgba(61,43,59,0.12);

  --display: 'Fraunces', Georgia, serif;
  --body: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max: 1180px;
  --radius: 18px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--body);
  color:var(--charcoal);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{
  font-family:var(--display);
  color:var(--plum);
  margin:0 0 .5em;
  font-weight:600;
  line-height:1.15;
  letter-spacing:-0.01em;
}
p{ margin:0 0 1em; }
.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 28px;
}
:focus-visible{
  outline:3px solid var(--honey-deep);
  outline-offset:3px;
}

/* ---------- eyebrow / labels ---------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.5em;
  font-family:var(--body);
  font-weight:800;
  font-size:.78rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--honey-deep);
}
.eyebrow::before{
  content:'';
  width:22px;
  height:2px;
  background:var(--honey-deep);
  display:inline-block;
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:.5em;
  padding:.85em 1.7em;
  border-radius:100px;
  font-family:var(--body);
  font-weight:700;
  font-size:.98rem;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn-primary{
  background:var(--plum);
  color:var(--peach-soft);
  box-shadow:0 6px 0 var(--honey-deep);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 8px 0 var(--honey-deep); }
.btn-primary:active{ transform:translateY(2px); box-shadow:0 3px 0 var(--honey-deep); }
.btn-ghost{
  background:transparent;
  color:var(--plum);
  border-color:var(--plum);
}
.btn-ghost:hover{ background:var(--plum); color:var(--peach-soft); }

/* ---------- header / nav ---------- */
.site-header{
  position:sticky; top:0; z-index:100;
  background:transparent;
  border-bottom:1px solid var(--line);
}
.site-header::before{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(255,250,244,0.88);
  backdrop-filter:blur(10px);
  z-index:-1;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 28px;
  max-width:var(--max);
  margin:0 auto;
}
.brand{
  display:flex;
  align-items:center;
  gap:.6em;
  font-family:var(--display);
  font-weight:600;
  font-size:1.28rem;
  color:var(--plum);
}
.brand .brand-mark{
  width:42px; height:42px;
  flex:none;
  object-fit:contain;
}
.nav-links{
  display:flex;
  gap:2.2em;
  align-items:center;
}
.nav-links a{
  font-weight:700;
  font-size:.95rem;
  color:var(--charcoal);
  position:relative;
  padding:4px 0;
}
.nav-links a::after{
  content:'';
  position:absolute; left:0; right:100%; bottom:-2px;
  height:2px; background:var(--honey-deep);
  transition:right .22s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after{ right:0; }
.nav-links a.active{ color:var(--honey-deep); }
.nav-cta{
  padding:.6em 1.4em !important;
  border-radius:100px;
  background:var(--plum);
  color:var(--peach-soft) !important;
}
.nav-cta::after{ display:none; }
/* WordPress applies a custom menu item's CSS class to the <li>, not the
   <a> inside it — so the pill styling above needs a matching version
   scoped to that structure too (the static-site markup put the class
   directly on the <a>, which the rules above still cover). */
li.nav-cta{ padding:0 !important; background:none; list-style:none; }
li.nav-cta > a{
  display:inline-flex; align-items:center;
  padding:.6em 1.4em;
  border-radius:100px;
  background:var(--plum);
  color:var(--peach-soft) !important;
  font-weight:700;
  font-size:.95rem;
}
li.nav-cta > a::after{ display:none; }
li.nav-cta > a:hover{ transform:translateY(-1px); }
.nav-toggle{
  display:none;
  background:none; border:none; cursor:pointer;
  width:40px; height:40px;
  flex-direction:column; align-items:center; justify-content:center; gap:5px;
}
.nav-toggle span{ width:22px; height:2px; background:var(--plum); display:block; }

/* ---------- hero ---------- */
.hero{
  position:relative;
  overflow:hidden;
  padding:96px 0 88px;
  background:
    radial-gradient(ellipse at 80% -10%, var(--peach) 0%, transparent 55%),
    var(--cream);
}
.hex-field{
  position:absolute; inset:0;
  pointer-events:none;
  opacity:.55;
}
.hex-field svg{ position:absolute; }
.hero-inner{
  position:relative;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:56px;
  align-items:center;
}
.hero-copy h1{
  font-size:clamp(2.4rem, 4.4vw, 3.6rem);
  margin:.3em 0 .4em;
}
.hero-copy h1 em{
  font-style:italic;
  color:var(--honey-deep);
}
.hero-copy p{
  font-size:1.12rem;
  color:var(--charcoal-soft);
  max-width:46ch;
}
.hero-actions{
  display:flex; gap:14px; flex-wrap:wrap;
  margin-top:1.6em;
}
.hero-visual{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-hex{
  position:relative;
  width:min(380px, 90%);
  aspect-ratio:1/1.02;
  clip-path:polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background:linear-gradient(155deg, var(--peach) 0%, var(--peach-soft) 60%, var(--honey-light) 130%);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 30px 60px -20px rgba(61,43,59,.35);
  animation:floaty 6s ease-in-out infinite;
}
.hero-hex img{ width:78%; }
@keyframes floaty{
  0%,100%{ transform:translateY(0px); }
  50%{ transform:translateY(-14px); }
}
.hero-stats{
  display:flex;
  gap:34px;
  margin-top:2.4em;
  flex-wrap:wrap;
}
.hero-stats div{ min-width:100px; }
.hero-stats strong{
  display:block;
  font-family:var(--display);
  font-size:1.9rem;
  color:var(--plum);
}
.hero-stats span{
  font-size:.82rem;
  color:var(--charcoal-soft);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:700;
}

/* ---------- generic sections ---------- */
section{ padding:84px 0; }
.section-head{
  max-width:640px;
  margin:0 0 3em;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(1.9rem, 3vw, 2.5rem); }
.alt{ background:var(--peach-soft); }
.plum-band{
  background:var(--plum);
  color:var(--peach-soft);
}
.plum-band h2, .plum-band h3{ color:var(--peach-soft); }

/* ---------- honeycomb venture grid ---------- */
.hive-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:26px 22px;
}
.hive-grid.offset > *:nth-child(4n+2),
.hive-grid.offset > *:nth-child(4n+4){ transform:translateY(34px); }

.hex-card{
  position:relative;
  aspect-ratio:0.92/1;
  clip-path:polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background:var(--cream);
  border:none;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  text-align:center;
  padding:16% 14%;
  transition:transform .25s ease, box-shadow .25s ease;
  cursor:default;
}
.hex-card.dark{ background:var(--plum); }
.hex-card:hover{ transform:translateY(-6px) scale(1.015); }
.hex-card .logo-wrap{
  height:44%;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:.6em;
}
.hex-card img{ max-height:100%; max-width:100%; object-fit:contain; }
.hex-card h4{
  font-size:.98rem;
  margin:0 0 .25em;
  color:var(--plum);
}
.hex-card.dark h4{ color:var(--peach-soft); }
.hex-card p{
  font-size:.78rem;
  color:var(--charcoal-soft);
  margin:0;
  line-height:1.35;
}
.hex-card.dark p{ color:var(--peach); }
.hex-card .tag{
  position:absolute;
  top:14%;
  font-size:.62rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:800;
  color:var(--honey-deep);
}
.hex-card.dark .tag{ color:var(--honey-light); }

@media (max-width:980px){
  .hive-grid{ grid-template-columns:repeat(2, 1fr); }
  .hive-grid.offset > *{ transform:none !important; }
}
@media (max-width:560px){
  .hive-grid{ grid-template-columns:repeat(2, 1fr); gap:16px; }
  .hex-card{ padding:14% 10%; }
}

/* ---------- venture list (ventures page, richer cards) ---------- */
/* NOTE: WordPress's core Group block always wraps its content in an
   extra .wp-block-group__inner-container div (confirmed across layout
   types), so the grid that lays out the emblem next to the body text
   has to target that wrapper rather than .venture-row itself — applying
   display:grid directly to .venture-row would just place its one real
   child (the wrapper) into a single grid cell instead of laying out
   the emblem/body pair. */
.venture-row{
  border-bottom:1px solid var(--line);
}
.venture-row:last-child{ border-bottom:none; }
.venture-row > .wp-block-group__inner-container{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:40px;
  align-items:center;
  padding:44px 0;
}
.venture-emblem{
  width:190px; height:190px;
  clip-path:polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background:var(--peach-soft);
  display:flex; align-items:center; justify-content:center;
  padding:20px;
  flex:none;
}
.venture-emblem.dark{ background:var(--plum); }
.venture-emblem img{ max-width:78%; max-height:78%; object-fit:contain; }
.venture-body .tag{
  font-size:.72rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase;
  color:var(--honey-deep);
}
.venture-body h3{ font-size:1.5rem; margin:.25em 0 .3em; }
.venture-body .strap{
  font-style:italic;
  color:var(--charcoal-soft);
  margin-bottom:.5em;
  font-family:var(--display);
}
@media (max-width:720px){
  .venture-row > .wp-block-group__inner-container{ grid-template-columns:1fr; text-align:center; }
  .venture-emblem{ margin:0 auto; }
}

/* ---------- cards (mission/vision, values) ---------- */
.pair-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
}
.info-card{
  background:var(--cream);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:38px;
}
.info-card .glyph{
  width:46px; height:46px;
  margin-bottom:1em;
}
@media (max-width:720px){ .pair-grid{ grid-template-columns:1fr; } }

/* ---------- timeline (about/history) ---------- */
.timeline{
  position:relative;
  padding-left:34px;
  border-left:2px solid var(--line);
}
.timeline .stop{ position:relative; padding-bottom:2.4em; }
.timeline .stop:last-child{ padding-bottom:0; }
.timeline .stop::before{
  content:'';
  position:absolute; left:-40px; top:4px;
  width:14px; height:14px;
  background:var(--honey);
  clip-path:polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.timeline .year{
  font-family:var(--display);
  color:var(--honey-deep);
  font-weight:600;
  font-size:1.1rem;
  display:block;
  margin-bottom:.15em;
}

/* ---------- founders note ---------- */
.note-card{
  position:relative;
  background:var(--peach-soft);
  border-radius:var(--radius);
  padding:56px;
  max-width:820px;
  margin:0 auto;
}
.note-card blockquote{
  font-family:var(--display);
  font-style:italic;
  font-size:1.35rem;
  color:var(--plum);
  margin:0 0 1.2em;
  line-height:1.55;
}
.note-sign{
  font-family:var(--display);
  font-weight:600;
  color:var(--plum);
}
.note-sign span{
  display:block;
  font-family:var(--body);
  font-style:normal;
  font-weight:600;
  font-size:.82rem;
  color:var(--charcoal-soft);
  margin-top:.3em;
}

/* ---------- team ---------- */
.team-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:26px;
}
.team-card{
  background:var(--cream);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:34px;
  text-align:center;
}
.team-card .avatar{
  width:78px; height:78px;
  margin:0 auto 1em;
  border-radius:50%;
  background:linear-gradient(145deg, var(--honey-light), var(--honey));
  display:flex; align-items:center; justify-content:center;
  font-family:var(--display);
  font-size:1.5rem;
  color:var(--plum);
  font-weight:600;
}
@media (max-width:720px){ .team-grid{ grid-template-columns:1fr; } }

/* ---------- CTA band ---------- */
.cta-band{
  text-align:center;
  padding:76px 0;
}
.cta-band h2{ margin-bottom:.3em; }
.cta-band p{ color:var(--charcoal-soft); max-width:50ch; margin:0 auto 1.6em; }

/* ---------- footer ---------- */
.site-footer{
  background:var(--plum);
  color:var(--peach);
  padding:56px 0 26px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:40px;
  padding-bottom:36px;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.footer-brand{
  display:flex; align-items:center; gap:.6em;
  font-family:var(--display); font-size:1.2rem; color:var(--peach-soft);
  margin-bottom:.7em;
}
.footer-brand .hex-mark{ width:30px; height:30px; }
.site-footer p{ color:rgba(249,223,206,.75); font-size:.92rem; }
.footer-col h5{
  font-family:var(--body);
  font-size:.78rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--honey-light);
  margin-bottom:1em;
}
.footer-col a{
  display:block;
  color:rgba(249,223,206,.85);
  font-size:.92rem;
  margin-bottom:.65em;
  transition:color .15s ease;
}
.footer-col a:hover{ color:var(--honey-light); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding-top:22px;
  font-size:.82rem;
  color:rgba(249,223,206,.6);
  flex-wrap:wrap;
  gap:10px;
}
@media (max-width:820px){
  .footer-grid{ grid-template-columns:1fr; gap:28px; }
}

/* ---------- page banner (inner pages) ---------- */
.page-banner{
  padding:64px 0 56px;
  background:
    radial-gradient(ellipse at 85% 0%, var(--peach) 0%, transparent 60%),
    var(--cream);
  text-align:left;
}
.page-banner h1{ font-size:clamp(2rem, 4vw, 2.9rem); }
.breadcrumb{
  font-size:.85rem;
  font-weight:700;
  color:var(--charcoal-soft);
  margin-bottom:1em;
}
.breadcrumb a{ color:var(--honey-deep); }

/* ---------- contact ---------- */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:50px;
  align-items:start;
}
.notice-banner{
  background:var(--honey-light);
  color:var(--plum);
  border-radius:12px;
  padding:14px 20px;
  font-size:.88rem;
  font-weight:700;
  margin-bottom:2em;
  display:flex;
  gap:.6em;
  align-items:flex-start;
}
.contact-detail{
  display:flex;
  gap:16px;
  padding:20px 0;
  border-bottom:1px solid var(--line);
}
.contact-detail:first-of-type{ padding-top:0; }
.contact-detail .icon{
  width:42px; height:42px; flex:none;
  border-radius:50%;
  background:var(--peach-soft);
  display:flex; align-items:center; justify-content:center;
}
.contact-detail h4{ margin:0 0 .2em; font-size:1rem; }
.contact-detail p{ margin:0; color:var(--charcoal-soft); font-size:.94rem; }

.form-card{
  background:var(--peach-soft);
  border-radius:var(--radius);
  padding:40px;
}
.field{ margin-bottom:1.2em; }
.field label{
  display:block;
  font-weight:700;
  font-size:.86rem;
  margin-bottom:.4em;
  color:var(--plum);
}
.field input, .field textarea, .field select{
  width:100%;
  padding:.85em 1em;
  border-radius:10px;
  border:1.5px solid var(--line);
  background:var(--cream);
  font-family:var(--body);
  font-size:.96rem;
  color:var(--charcoal);
  resize:vertical;
}
.field input:focus, .field textarea:focus, .field select:focus{
  border-color:var(--honey-deep);
  outline:none;
}
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:900px){
  .contact-grid{ grid-template-columns:1fr; }
}
@media (max-width:560px){ .field-row{ grid-template-columns:1fr; } }

.map-hex{
  margin-top:2em;
  height:220px;
  border-radius:var(--radius);
  background:
    linear-gradient(155deg, var(--peach) 0%, var(--peach-soft) 100%);
  display:flex; align-items:center; justify-content:center;
  color:var(--plum);
  font-weight:700;
  text-align:center;
  padding:20px;
}


/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .hero-hex{ animation:none; }
  *{ transition-duration:.001ms !important; animation-duration:.001ms !important; }
}

/* ===========================================================
   WordPress / Gutenberg block-editor compatibility
   =========================================================== */

/* alignment classes used by core blocks */
.alignwide{ max-width:1180px; margin-left:auto; margin-right:auto; }
.alignfull{ max-width:none; width:100%; }
.aligncenter{ margin-left:auto; margin-right:auto; text-align:center; }

/* entry content wrapper (used by page.php) */
.entry-content{ padding:0; }
.entry-content > *:first-child{ margin-top:0; }

/* core/navigation menu rendered by wp_nav_menu() */
.primary-menu{
  display:flex; gap:2.2em; margin:0; padding:0; list-style:none;
}
/* align-items:center for the desktop row comes from the .nav-links base
   rule above (this <ul> always carries both classes) — not redeclared
   here, so the mobile media query's align-items:flex-start override
   further down isn't fought by a same-specificity rule later in the
   cascade. */
.primary-menu li{ position:relative; }
.primary-menu a{
  font-weight:700; font-size:.95rem; color:var(--charcoal); position:relative; padding:4px 0;
}
.primary-menu a::after{
  content:''; position:absolute; left:0; right:100%; bottom:-2px; height:2px;
  background:var(--honey-deep); transition:right .22s ease;
}
.primary-menu a:hover::after,
.primary-menu li.current-menu-item a::after{ right:0; }
.primary-menu li.current-menu-item > a{ color:var(--honey-deep); }
.primary-menu .sub-menu{
  list-style:none; margin:0; padding:14px; position:absolute; top:100%; left:0;
  background:var(--cream); border:1px solid var(--line); border-radius:12px;
  min-width:200px; box-shadow:0 14px 30px -12px rgba(61,43,59,.25);
  opacity:0; pointer-events:none; transform:translateY(6px); transition:all .18s ease;
}
.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu{ opacity:1; pointer-events:auto; transform:translateY(0); }
.primary-menu .sub-menu a{ display:block; padding:.5em 0; }

/* core/button block -> match .btn-primary pill style */
.wp-block-button__link,
.wp-block-button.is-style-fill .wp-block-button__link{
  display:inline-flex; align-items:center; gap:.5em;
  padding:.85em 1.7em !important; border-radius:100px !important;
  font-family:var(--body); font-weight:700; font-size:.98rem;
  background:var(--plum); color:var(--peach-soft);
  box-shadow:0 6px 0 var(--honey-deep); border:2px solid transparent;
  transition:transform .18s ease, box-shadow .18s ease;
  text-decoration:none !important;
}
.wp-block-button__link:hover{ transform:translateY(-2px); box-shadow:0 8px 0 var(--honey-deep); }
.wp-block-button.is-style-outline .wp-block-button__link{
  background:transparent !important; color:var(--plum);
  border:2px solid var(--plum); box-shadow:none;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover{
  background:var(--plum) !important; color:var(--peach-soft);
}

/* core/group used as section wrappers with our custom class names still apply:
   .alt, .plum-band, .hero, .page-banner etc. can be added via the block's
   "Additional CSS class" field in the editor sidebar. */

/* core/columns block spacing fallback */
.wp-block-columns{ gap:26px; }

/* core/quote / founders' note style hook — add class "note-card" to a Group block
   and "note-quote" to the Quote block inside it */
.note-quote blockquote{
  font-family:var(--display); font-style:italic; font-size:1.35rem;
  color:var(--plum); margin:0 0 .3em; line-height:1.55; border:none; padding:0;
}
.note-quote cite{
  font-family:var(--body); font-style:normal; font-weight:700; color:var(--plum);
}

/* editor-only: make hex-card / venture-emblem readable while editing */
.editor-styles-wrapper .hex-card,
.editor-styles-wrapper .venture-emblem{ min-height:160px; }

/* skip link (accessibility) */
.skip-link{
  position:absolute; left:-9999px; top:auto; background:var(--plum); color:var(--peach-soft);
  padding:12px 20px; z-index:999; border-radius:0 0 10px 0;
}
.skip-link:focus{ left:0; top:0; }

/* section-style wrappers when used as WordPress block-editor Groups
   (blocks don't have the bare <section>/.container tag structure the
   static site used, so these classes carry the same spacing directly) */
.wp-block-group.section-wrap{
  padding:84px 28px; max-width:1180px; margin:0 auto;
}
.wp-block-group.plum-band{
  padding:84px 28px; background:var(--plum); color:var(--peach-soft);
}
.wp-block-group.plum-band .wp-block-columns{
  max-width:1180px; margin:0 auto;
}
.wp-block-group.cta-band{
  padding:76px 28px; max-width:1180px; margin:0 auto; text-align:center;
}
.wp-block-group.cta-band .wp-block-buttons{ margin-top:1.2em; }
.wp-block-group.note-card p.eyebrow{ margin-bottom:1em; }

/* contact form: honeypot field (hidden from real visitors, catches bots) */
.mfc-hp-field{
  position:absolute !important;
  left:-9999px !important;
  top:auto;
  width:1px; height:1px;
  overflow:hidden;
}

/* contact form: success / error banners, hidden by default via [hidden] */
.form-banner{
  border-radius:12px;
  padding:14px 20px;
  font-size:.9rem;
  font-weight:700;
  margin-bottom:1.4em;
}
.form-banner-success{ background:var(--honey-light); color:var(--plum); }
.form-banner-error{ background:#f3c9c0; color:#6b2f22; }

/* map embed wrapper (replaces the static site's map-hex placeholder) */
.map-embed{
  margin-top:2em;
  border-radius:var(--radius);
  overflow:hidden;
  line-height:0;
}

/* ---------- responsive nav ----------
   Kept at the very end of the file (after the WP/Gutenberg-compat block
   above, including .primary-menu) so this mobile override reliably wins
   the cascade at equal specificity, regardless of what gets appended
   above it in future edits. */
@media (max-width:860px){
  .nav-links{
    position:fixed; inset:64px 0 0 0;
    background:var(--cream);
    flex-direction:column;
    padding:36px 28px !important;
    gap:1.6em !important;
    transform:translateY(-110%);
    transition:transform .3s ease;
    z-index:90;
    align-items:flex-start !important;
  }
  .nav-links.open{ transform:translateY(0); }
  .nav-links a{ font-size:1.1rem; }
  .nav-toggle{ display:flex; }
  .hero-inner{ grid-template-columns:1fr; }
  .hero-visual{ order:-1; }
}
