/* =========================================================
   Miya B Bookkeeping - Honeycomb Professional Theme
   Brevard County, Florida
   ========================================================= */

:root {
  --honey-deep: #C58A1B;
  --honey: #E5A623;
  --honey-light: #F2C45A;
  --honey-pale: #FBE7A1;
  --cream: #FFF8E7;
  --cream-soft: #FFFDF5;
  --charcoal: #1F1B16;
  --charcoal-soft: #2E2A24;
  --slate: #5B554B;
  --warm-gray: #8C8678;
  --line: #EADFC2;
  --shadow-sm: 0 2px 8px rgba(31, 27, 22, 0.06);
  --shadow-md: 0 10px 30px rgba(31, 27, 22, 0.08);
  --shadow-lg: 0 20px 50px rgba(31, 27, 22, 0.12);
  --radius: 10px;
  --maxw: 1180px;
  --header-h: 76px;
  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--cream-soft);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--honey-deep); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--charcoal); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  color: var(--charcoal);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: .55em;
}
h1 { font-size: clamp(2.3rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.85rem, 3vw, 2.55rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1em; color: var(--charcoal-soft); }
.lead { font-size: 1.15rem; color: var(--slate); }

ul, ol { margin: 0 0 1em 1.2em; color: var(--charcoal-soft); }
li { margin-bottom: .35em; }

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

section { padding: 84px 0; }
section.tight { padding: 56px 0; }
section.alt { background: var(--cream); }
section.dark { background: var(--charcoal); color: var(--cream); }
section.dark h1, section.dark h2, section.dark h3 { color: var(--cream); }
section.dark p { color: rgba(255, 248, 231, 0.85); }
section.honey { background: linear-gradient(135deg, var(--honey-pale) 0%, var(--cream) 100%); }

/* Reset a few WP defaults that may leak in via wp_head */
.miyab-body #wpadminbar { z-index: 2000; }

/* ============= HEADER & NAV ============= */
header.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 253, 245, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
}
.nav-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--charcoal);
  font-weight: 600;
}
.brand:hover { color: var(--honey-deep); }
.brand-mark {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 52px; height: 52px; display: block; }
@media (max-width: 600px) {
  .brand-mark { width: 44px; height: 44px; }
  .brand-mark svg { width: 44px; height: 44px; }
}
.brand-name small { display: block; font-family: var(--font-sans); font-size: .68rem; color: var(--warm-gray); letter-spacing: .15em; text-transform: uppercase; font-weight: 500; margin-top: -2px;}

.nav-menu {
  display: flex; align-items: center; gap: 28px;
  list-style: none; margin: 0;
}
.nav-menu a {
  color: var(--charcoal-soft);
  font-size: .94rem;
  font-weight: 500;
  position: relative;
}
.nav-menu a:hover { color: var(--honey-deep); }
.nav-menu a.btn-cta { color: var(--cream); }

.mobile-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--charcoal); margin: 5px 0;
  transition: all .3s;
}

@media (max-width: 940px) {
  .nav-menu {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--cream-soft);
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav-menu.open { max-height: 100vh; padding: 12px 0; }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: 14px 24px; width: 100%; }
  .mobile-toggle { display: block; }
}

/* ============= BUTTONS ============= */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s ease;
  text-align: center;
}
.btn-primary {
  background: var(--honey-deep);
  color: var(--cream);
  border-color: var(--honey-deep);
}
.btn-primary:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--cream);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--cream);
}
.btn-light {
  background: var(--cream);
  color: var(--charcoal);
  border-color: var(--cream);
}
.btn-light:hover { background: var(--honey-light); border-color: var(--honey-light); }
.btn-cta {
  background: var(--honey-deep); color: var(--cream);
  padding: 10px 20px; border-radius: 6px;
}
.btn-cta:hover { background: var(--charcoal); color: var(--cream); }

.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============= HERO ============= */
.hero {
  position: relative;
  padding: 110px 0 100px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--honey-pale) 50%, var(--cream) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; top: -50px; right: -100px;
  width: 500px; height: 500px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='50,5 90,27 90,73 50,95 10,73 10,27' fill='none' stroke='%23E5A623' stroke-width='1' opacity='0.25'/%3E%3C/svg%3E");
  background-size: 70px 70px;
  opacity: .35;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='50,5 90,27 90,73 50,95 10,73 10,27' fill='none' stroke='%23C58A1B' stroke-width='1' opacity='0.2'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  opacity: .3;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero .eyebrow {
  display: inline-block;
  font-size: .82rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--honey-deep);
  font-weight: 600;
  margin-bottom: 18px;
  padding: 8px 16px;
  background: rgba(229, 166, 35, 0.12);
  border-radius: 30px;
}
.hero h1 { margin-bottom: 22px; }
.hero p.subhead { font-size: 1.2rem; color: var(--slate); margin-bottom: 36px; max-width: 640px; }

/* Page hero (smaller, for subpages) */
.page-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--honey-pale) 100%);
  padding: 72px 0 60px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 320px; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='50,5 90,27 90,73 50,95 10,73 10,27' fill='none' stroke='%23E5A623' stroke-width='1' opacity='0.2'/%3E%3C/svg%3E");
  background-size: 55px 55px;
  opacity: .4;
  pointer-events: none;
}
.page-hero .eyebrow {
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--honey-deep);
  font-weight: 600;
  margin-bottom: 14px;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.page-hero p { font-size: 1.12rem; color: var(--slate); max-width: 720px; }

/* ============= SECTION HEADERS ============= */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow {
  font-size: .78rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--honey-deep); font-weight: 600; margin-bottom: 12px;
  display: block;
}
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 1.08rem; color: var(--slate); }

/* ============= GRIDS ============= */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ============= HONEYCOMB CARDS ============= */
.honey-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: all .3s ease;
  box-shadow: var(--shadow-sm);
}
.honey-card:hover {
  transform: translateY(-3px);
  border-color: var(--honey);
  box-shadow: var(--shadow-md);
}
.honey-card .icon-hex {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  position: relative;
}
.honey-card .icon-hex svg { width: 56px; height: 56px; }
.honey-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.honey-card p { font-size: .96rem; color: var(--slate); margin-bottom: 14px; }
.honey-card .read-more {
  font-size: .9rem; font-weight: 600;
  color: var(--honey-deep);
  letter-spacing: .02em;
}
.honey-card .read-more::after { content: " \2192"; transition: margin .2s; }
.honey-card:hover .read-more::after { margin-left: 4px; }

/* Hexagon icon background */
.hex-bg {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='50,5 90,27 90,73 50,95 10,73 10,27' fill='%23E5A623'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.hex-emoji {
  position: relative; z-index: 2;
  color: var(--cream);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hex-emoji svg {
  width: 30px;
  height: 30px;
  display: block;
  filter: drop-shadow(0 1px 1px rgba(31, 27, 22, 0.15));
}

/* ============= STEPS ============= */
.step-grid { display: grid; gap: 24px; }
.step-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: all .3s;
}
.step-card:hover { border-color: var(--honey); box-shadow: var(--shadow-sm); }
.step-num {
  position: absolute; top: -14px; left: 28px;
  width: 36px; height: 36px;
  background: var(--honey-deep); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-weight: 700; font-size: .95rem;
  font-family: var(--font-sans);
  box-shadow: var(--shadow-sm);
}
.step-card h3 { margin-top: 14px; font-size: 1.18rem; }
.step-card p { font-size: .96rem; color: var(--slate); margin-bottom: 0; }

/* ============= PRICING ============= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  align-items: stretch;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--cream-soft);
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 44px 32px 32px;
  position: relative;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.price-card.featured {
  border-color: var(--honey-deep);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
}
.price-card .badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--honey-deep);
  color: var(--cream);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
}
.price-card h3 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 8px;
  min-height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-card .pkg-sub {
  text-align: center;
  color: var(--warm-gray);
  font-size: .92rem;
  margin-bottom: 24px;
  font-style: italic;
  min-height: 2.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}
.price-card .price-line {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  min-height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.price-card .price-line .amt {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--honey-deep);
  font-weight: 600;
  line-height: 1.1;
  display: block;
}
.price-card .price-line .term {
  display: block;
  font-size: .85rem;
  color: var(--warm-gray);
  margin-top: 6px;
}
.price-card ul {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  flex: 1;
}
.price-card li {
  padding: 10px 0 10px 30px;
  position: relative;
  font-size: .95rem;
  color: var(--charcoal-soft);
  border-bottom: 1px dashed var(--line);
  line-height: 1.5;
}
.price-card li:last-child { border-bottom: none; }
.price-card li::before {
  content: "";
  position: absolute; left: 0; top: 13px;
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='50,5 90,27 90,73 50,95 10,73 10,27' fill='%23E5A623'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.price-card .btn {
  width: 100%;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
}

/* ============= FOOTER ============= */
footer.site-footer {
  background: var(--charcoal);
  color: rgba(255, 248, 231, 0.78);
  padding: 72px 0 28px;
  margin-top: 0;
}
footer.site-footer h4 {
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
footer.site-footer p { color: rgba(255, 248, 231, 0.75); font-size: .92rem; }
footer.site-footer ul { list-style: none; margin: 0; padding: 0; }
footer.site-footer li { margin-bottom: 8px; font-size: .92rem; }
footer.site-footer a { color: rgba(255, 248, 231, 0.78); }
footer.site-footer a:hover { color: var(--honey-light); }
.footer-brand .brand { color: var(--cream); margin-bottom: 14px; }
.footer-brand .brand small { color: rgba(255, 248, 231, 0.6); }

.newsletter input {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 248, 231, 0.08);
  border: 1px solid rgba(255, 248, 231, 0.18);
  color: var(--cream);
  border-radius: 6px;
  margin-bottom: 10px;
  font-family: var(--font-sans);
  font-size: .92rem;
}
.newsletter input::placeholder { color: rgba(255, 248, 231, 0.4); }
.newsletter button {
  background: var(--honey-deep); color: var(--cream);
  border: none; padding: 11px 22px;
  border-radius: 6px; cursor: pointer;
  font-weight: 600; font-size: .9rem;
  width: 100%;
  transition: background .2s;
}
.newsletter button:hover { background: var(--honey); }

.footer-bottom {
  border-top: 1px solid rgba(255, 248, 231, 0.12);
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .85rem;
  color: rgba(255, 248, 231, 0.55);
}
.social-icons { display: flex; gap: 12px; }
.social-icons a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255, 248, 231, 0.08);
  border: 1px solid rgba(255, 248, 231, 0.15);
  color: var(--cream);
  font-size: .9rem;
}
.social-icons a:hover { background: var(--honey-deep); border-color: var(--honey-deep); }

/* ============= FORMS ============= */
form .field { margin-bottom: 18px; }
form label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 7px;
  letter-spacing: .01em;
}
form label .req { color: var(--honey-deep); }
form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="url"],
form input[type="number"],
form select,
form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: .98rem;
  color: var(--charcoal);
  background: var(--cream-soft);
  transition: border-color .2s, box-shadow .2s;
}
form input:focus, form select:focus, form textarea:focus {
  outline: none;
  border-color: var(--honey-deep);
  box-shadow: 0 0 0 3px rgba(229, 166, 35, 0.18);
}
form textarea { min-height: 130px; resize: vertical; }

form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 700px) { form .field-row { grid-template-columns: 1fr; gap: 0; } }

form .checkbox-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: var(--slate);
}
form .checkbox-row input { margin-top: 4px; }

.form-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 700px) { .form-card { padding: 28px 22px; } }

/* ============= FAQ ============= */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover { border-color: var(--honey); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--charcoal);
  display: flex; justify-content: space-between; align-items: center;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 1.4rem;
  color: var(--honey-deep);
  transition: transform .2s;
  flex-shrink: 0;
  margin-left: 14px;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .faq-answer {
  padding: 0 24px 24px;
  color: var(--slate);
  font-size: .98rem;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

/* ============= CTA BANNER ============= */
.cta-banner {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2A2520 100%);
  color: var(--cream);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; right: -100px; top: -50px;
  width: 400px; height: 400px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='50,5 90,27 90,73 50,95 10,73 10,27' fill='none' stroke='%23E5A623' stroke-width='1' opacity='0.4'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  opacity: .3;
}
.cta-banner h2 { color: var(--cream); margin-bottom: 14px; }
.cta-banner p { color: rgba(255, 248, 231, 0.85); font-size: 1.1rem; margin-bottom: 28px; }
.cta-banner .container { position: relative; z-index: 2; text-align: center; max-width: 720px; }

/* ============= MISC ============= */
.divider-bee {
  text-align: center;
  margin: 40px 0;
  position: relative;
}
.divider-bee::before, .divider-bee::after {
  content: ""; position: absolute; top: 50%;
  width: 35%; height: 1px;
  background: var(--line);
}
.divider-bee::before { left: 0; }
.divider-bee::after { right: 0; }
.divider-bee span {
  background: var(--cream-soft);
  padding: 0 18px;
  color: var(--honey-deep);
  font-size: 1.5rem;
}

.tag {
  display: inline-block;
  background: rgba(229, 166, 35, 0.15);
  color: var(--honey-deep);
  padding: 4px 12px;
  border-radius: 30px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-right: 6px;
  margin-bottom: 6px;
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li {
  position: relative;
  padding: 8px 0 8px 32px;
  color: var(--charcoal-soft);
}
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 12px;
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='50,5 90,27 90,73 50,95 10,73 10,27' fill='%23E5A623'/%3E%3Cpath d='M30 50 L45 65 L70 35' stroke='%23FFF8E7' stroke-width='10' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
}
@media (max-width: 700px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat {
  text-align: center;
  padding: 24px 18px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.stat .num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--honey-deep);
  font-weight: 600;
  display: block;
}
.stat .lbl { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--warm-gray); }

.testimonial {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--honey-deep);
  border-radius: var(--radius);
  padding: 32px 28px;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  color: var(--charcoal-soft);
  font-style: italic;
  line-height: 1.6;
}
.testimonial::before { content: "\201C"; font-size: 3.5rem; line-height: 0.3; color: var(--honey-light); display: block; margin-bottom: 18px; }
.testimonial .who {
  display: block;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: .92rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-top: 18px;
}
.testimonial .where {
  display: block;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: .82rem;
  color: var(--warm-gray);
}

.honeycomb-bg {
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='50,5 90,27 90,73 50,95 10,73 10,27' fill='none' stroke='%23E5A623' stroke-width='0.8' opacity='0.18'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.breadcrumb {
  font-size: .85rem;
  color: var(--warm-gray);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--warm-gray); }
.breadcrumb a:hover { color: var(--honey-deep); }
.breadcrumb span { margin: 0 6px; }

.callout {
  background: linear-gradient(135deg, var(--honey-pale) 0%, var(--cream) 100%);
  border: 1px solid var(--honey-light);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 28px 0;
}
.callout strong { color: var(--charcoal); }
.callout p:last-child { margin-bottom: 0; }

.service-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
@media (max-width: 800px) { .service-list-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .service-list-grid { grid-template-columns: 1fr; } }
.svc-mini {
  background: var(--cream-soft);
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: .94rem;
  font-weight: 500;
  color: var(--charcoal-soft);
  border-left: 3px solid var(--honey);
  transition: all .2s;
}
.svc-mini:hover { border-left-color: var(--honey-deep); background: var(--cream); }

.blog-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--honey); }
.blog-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--honey-pale) 0%, var(--honey-light) 100%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='50,5 90,27 90,73 50,95 10,73 10,27' fill='none' stroke='%23C58A1B' stroke-width='1' opacity='0.3'/%3E%3C/svg%3E"), linear-gradient(135deg, var(--honey-pale) 0%, var(--honey-light) 100%);
  background-size: 50px 50px, cover;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: var(--cream);
}
.blog-card .blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.blog-card p { font-size: .94rem; color: var(--slate); flex: 1; }
.blog-card .meta { font-size: .8rem; color: var(--warm-gray); margin-bottom: 8px; letter-spacing: .04em; text-transform: uppercase; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .8s ease both; }

/* BEE ILLUSTRATIONS */
.bee-svg { display: inline-block; vertical-align: middle; width: 56px; height: auto; }
.bee-svg.bee-sm { width: 36px; }
.bee-svg.bee-md { width: 72px; }
.bee-svg.bee-lg { width: 120px; }
.bee-svg.bee-xl { width: 180px; }
@keyframes beeHover {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(3deg); }
}
@keyframes beeWings {
  0%, 100% { opacity: 0.55; transform: scaleY(1); }
  50% { opacity: 0.95; transform: scaleY(1.15); }
}
.bee-float { animation: beeHover 3s ease-in-out infinite; transform-origin: center; }
.bee-float .wing { animation: beeWings .15s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }

.flight-path { position: absolute; pointer-events: none; opacity: .55; z-index: 1; }
.flight-path svg { width: 100%; height: 100%; overflow: visible; }
.flight-path .path-line { stroke: var(--honey-deep); stroke-width: 1.5; stroke-dasharray: 2 6; fill: none; opacity: .55; }

@keyframes flyAlong { 0% { offset-distance: 0%; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { offset-distance: 100%; opacity: 0; } }

.corner-bee { position: absolute; z-index: 2; pointer-events: none; }
.corner-bee.top-right { top: 30px; right: 40px; }
.corner-bee.top-left { top: 30px; left: 40px; }
.corner-bee.bottom-right { bottom: 30px; right: 40px; }
.corner-bee.bottom-left { bottom: 30px; left: 40px; }
@media (max-width: 800px) { .corner-bee { display: none; } }

.bee-divider {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  padding: 30px 0; margin: 0 auto; max-width: 600px;
}
.bee-divider::before, .bee-divider::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--honey-light), var(--honey-light), transparent);
  background-size: 8px 1px; background-repeat: repeat-x;
}
.bee-divider .bee-svg { flex: 0 0 auto; }

.honeycomb-pattern { position: relative; }
.honeycomb-pattern::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='50,5 90,27 90,73 50,95 10,73 10,27' fill='none' stroke='%23E5A623' stroke-width='1' opacity='0.25'/%3E%3C/svg%3E");
  background-size: 55px 55px; opacity: .4; pointer-events: none; z-index: 0;
}
.honeycomb-pattern > * { position: relative; z-index: 1; }

.honeycomb-cluster { display: inline-grid; grid-template-columns: repeat(3, 28px); gap: 2px; vertical-align: middle; }
.honeycomb-cluster .hex { width: 28px; height: 32px; background: var(--honey); clip-path: polygon(50% 0, 100% 27%, 100% 73%, 50% 100%, 0 73%, 0 27%); }
.honeycomb-cluster .hex.dark { background: var(--charcoal); }
.honeycomb-cluster .hex.pale { background: var(--honey-pale); }
.honeycomb-cluster .hex.light { background: var(--honey-light); }
.honeycomb-cluster .hex.deep { background: var(--honey-deep); }
.honeycomb-cluster .hex.empty { background: transparent; }

/* FORM TOGGLE */
.form-toggle {
  display: inline-flex; background: var(--cream); border: 1px solid var(--line);
  border-radius: 999px; padding: 5px; margin-bottom: 28px; box-shadow: var(--shadow-sm);
}
.form-toggle .ft-btn {
  background: transparent; border: none; padding: 11px 24px;
  font-family: var(--font-sans); font-size: .9rem; font-weight: 600;
  color: var(--slate); cursor: pointer; border-radius: 999px;
  letter-spacing: .02em; display: inline-flex; align-items: center; gap: 8px;
  transition: all .25s ease;
}
.form-toggle .ft-btn:hover { color: var(--charcoal); }
.form-toggle .ft-btn.active { background: var(--honey-deep); color: var(--cream); box-shadow: var(--shadow-sm); }
.form-toggle .ft-btn .ft-hex {
  display: inline-block; width: 14px; height: 16px;
  background: currentColor; clip-path: polygon(50% 0, 100% 27%, 100% 73%, 50% 100%, 0 73%, 0 27%);
  opacity: .85;
}
@media (max-width: 600px) {
  .form-toggle { width: 100%; display: flex; }
  .form-toggle .ft-btn { flex: 1; justify-content: center; padding: 11px 12px; font-size: .85rem; }
}
.form-section[hidden] { display: none !important; }
.form-section-title { font-family: var(--font-serif); font-size: 1.35rem; color: var(--charcoal); font-weight: 600; margin-bottom: 6px; }
.form-section-sub { color: var(--slate); font-size: .95rem; margin-bottom: 22px; }
.form-intro {
  background: var(--honey-pale); border: 1px solid var(--honey-light);
  border-radius: var(--radius); padding: 18px 22px; margin-bottom: 26px;
  font-size: .96rem; color: var(--charcoal-soft);
}
.form-intro strong { color: var(--charcoal); }

/* ALIGNMENT */
.two-col { align-items: start; }
.section-head { display: flex; flex-direction: column; align-items: center; text-align: center; }
.section-head h2, .section-head p, .section-head .eyebrow { text-align: center; }
.section-head p { max-width: 640px; margin-left: auto; margin-right: auto; }
.callout h3 { margin-bottom: 8px; }
.grid { align-items: stretch; }
.grid > * { height: 100%; }
.honey-card { display: flex; flex-direction: column; height: 100%; }
.honey-card h3 { margin-bottom: 10px; }
.honey-card p { margin-bottom: 14px; }
.honey-card p:last-of-type { margin-bottom: auto; }
.honey-card ul { margin-bottom: auto; }
.honey-card .checklist { margin-bottom: 14px; }
.honey-card .read-more { margin-top: auto; padding-top: 12px; display: inline-block; align-self: flex-start; }
.honey-card .btn { margin-top: 14px; align-self: flex-start; display: inline-flex; align-items: center; justify-content: center; }
.step-grid > .step-card { height: 100%; display: flex; flex-direction: column; }
.step-card h3 { margin-bottom: 10px; }
.step-card p { margin-bottom: 0; }
.stat-row { align-items: stretch; }
.stat { display: flex; flex-direction: column; justify-content: center; text-align: center; min-height: 110px; }
.stat .num { display: block; margin-bottom: 6px; }
.stat .lbl { display: block; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; text-align: center; vertical-align: middle; }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-group .btn { flex: 0 0 auto; }
.two-col > div { display: flex; flex-direction: column; }
.two-col h2 { margin-bottom: 14px; }
.two-col .btn { align-self: flex-start; margin-top: 18px; }
.testimonial { display: flex; flex-direction: column; height: 100%; }
.testimonial .who { margin-top: auto; }
.blog-card { height: 100%; }
.blog-card .blog-body { display: flex; flex-direction: column; flex: 1; }
.blog-card h3 { margin-bottom: 10px; }
.blog-card p { margin-bottom: auto; }
.service-list-grid { align-items: stretch; }
.svc-mini { display: flex; align-items: center; min-height: 52px; }
.cta-banner .container { display: flex; flex-direction: column; align-items: center; }
.cta-banner h2, .cta-banner p { text-align: center; }
.cta-banner .btn-group { justify-content: center; }
.page-hero .breadcrumb, .page-hero .eyebrow, .page-hero h1, .page-hero p { text-align: left; }
form .field-row { align-items: start; }
form label { display: block; }
.form-card { display: flex; flex-direction: column; }
.form-card form { display: flex; flex-direction: column; }
.faq-item summary { line-height: 1.4; }
.footer-grid { align-items: start; }
footer.site-footer ul { padding-left: 0; }
.hero .btn-group { align-items: flex-start; }
.hero .btn { min-height: 50px; padding: 14px 30px; }
.checklist li { display: list-item; line-height: 1.6; }
.bee-divider { display: flex; align-items: center; justify-content: center; }
.section-head .bee-svg { margin-bottom: 10px; }

/* MIYA PORTRAIT */
.miya-photo-frame { position: relative; width: 220px; height: 220px; margin: 0 auto 22px; }
.miya-photo {
  width: 100%; height: 100%; border-radius: 50%;
  object-fit: cover; object-position: center top;
  border: 5px solid var(--cream-soft);
  box-shadow: var(--shadow-lg), 0 0 0 2px var(--honey-deep);
  display: block;
}
.miya-photo-fallback {
  width: 100%; height: 100%; border-radius: 50%;
  background: var(--cream-soft); border: 5px solid var(--cream-soft);
  display: none; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 5rem; font-weight: 600;
  color: var(--honey-deep); box-shadow: var(--shadow-lg), 0 0 0 2px var(--honey-deep);
}
.miya-photo-frame::after {
  content: ""; position: absolute; bottom: 6px; right: 6px;
  width: 44px; height: 48px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='50,8 88,30 88,70 50,92 12,70 12,30' fill='%23FFF8E7' stroke='%23E5A623' stroke-width='5'/%3E%3Ccircle cx='50' cy='35' r='7' fill='%231F1B16'/%3E%3Cpath d='M50 44 Q40 47 40 60 Q40 73 50 78 Q60 73 60 60 Q60 47 50 44 Z' fill='%23E5A623' stroke='%231F1B16' stroke-width='1.5'/%3E%3Cpath d='M40 54 Q50 56 60 54 L60 60 Q50 62 40 60 Z' fill='%231F1B16'/%3E%3Cpath d='M41 66 Q50 68 59 66 L58 72 Q50 74 42 72 Z' fill='%231F1B16'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}
@media (max-width: 600px) { .miya-photo-frame { width: 180px; height: 180px; } }

.hero { position: relative; }
.hero .floating-bee { position: absolute; top: 90px; right: 8%; z-index: 2; }
.hero .floating-bee-2 { position: absolute; bottom: 70px; right: 22%; z-index: 2; }
@media (max-width: 900px) { .hero .floating-bee, .hero .floating-bee-2 { opacity: .25; right: 4%; } }

/* ------------------------------------------------------------------
   Form feedback (added v1.1.0)
   Shown inline when a submission is rejected, instead of navigating the
   visitor away to a raw JSON error page.
------------------------------------------------------------------ */
.miyab-form-error {
  margin: 14px 0;
  padding: 12px 14px;
  border-radius: 8px;
  background: #FDECEA;
  border: 1px solid #F5C6C0;
  color: #8A1F11;
  font-size: .95rem;
  line-height: 1.5;
}
.miyab-form-error[hidden] { display: none; }

form[data-miyab-form="1"] button[type="submit"][disabled] {
  opacity: .65;
  cursor: progress;
}
