/* ============================================
   Meadowcraft Gardens: shared stylesheet
   "Seed packet" theme: printed, crafty, warm
   ============================================ */

:root {
  --pine: #20392b;
  --pine-deep: #16281e;
  --moss: #5a7a52;
  --sage: #9db58a;
  --sage-light: #cdd9bd;
  --cream: #f5efe0;
  --paper: #fbf7ec;
  --cream-dark: #e9e0c9;
  --clay: #b65c32;
  --clay-dark: #944824;
  --marigold: #e9a23b;
  --ink: #232b22;
  --ink-soft: #5c665a;
  --radius: 14px;
  --hard: 5px 5px 0 rgba(32, 57, 43, 0.9);
  --hard-sm: 3px 3px 0 rgba(32, 57, 43, 0.9);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E"),
    var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  color: var(--pine-deep);
  line-height: 1.2;
}

img { max-width: 100%; display: block; }

a { color: var(--clay-dark); }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header / nav ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 239, 224, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--pine);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand svg { width: 40px; height: 40px; }

.brand .name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pine-deep);
  letter-spacing: 0.01em;
}

.brand .name span { color: var(--clay); font-style: italic; }

nav.links { display: flex; gap: 6px; align-items: center; }

nav.links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.15s ease;
}

nav.links a:hover { border-color: var(--pine); color: var(--pine-deep); background: var(--paper); }

nav.links a.active { background: var(--pine); color: var(--cream); border-color: var(--pine); }

nav.links a.cta {
  background: var(--clay);
  color: #fff;
  border-color: var(--pine);
  box-shadow: var(--hard-sm);
  margin-left: 8px;
}

nav.links a.cta:hover { background: var(--clay-dark); transform: translate(-1px, -1px); box-shadow: 4px 4px 0 rgba(32,57,43,0.9); }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 26px; height: 26px; stroke: var(--pine-deep); }

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  nav.links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    border-bottom: 2px solid var(--pine);
    padding: 12px 24px 18px;
    gap: 6px;
  }
  nav.links.open { display: flex; }
  nav.links a { width: 100%; text-align: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E"),
    linear-gradient(165deg, var(--pine-deep) 0%, var(--pine) 60%, #2c4a37 100%);
  color: var(--cream);
  overflow: hidden;
}

.hero .wrap {
  position: relative;
  z-index: 2;
  padding: 72px 24px 110px;
  max-width: 1020px;
  text-align: center;
}

/* keep the slogan on a single line on larger screens */
@media (min-width: 761px) {
  .hero h1 {
    white-space: nowrap;
    font-size: clamp(1.9rem, 4vw, 3.1rem);
  }
}

/* decorative background leaves: MUST stay absolute + faint */
.hero .leaf-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.06;
  pointer-events: none;
}

.hero h1 {
  color: var(--cream);
  font-size: clamp(2.3rem, 5.2vw, 3.8rem);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero h1 em { font-style: italic; color: var(--marigold); }

.hero p.lead {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: var(--sage-light);
  margin: 0 auto 36px;
  max-width: 720px;
}

.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* sticker badge */
.sticker {
  position: absolute;
  top: 26px;
  right: 5%;
  z-index: 3;
  background: var(--marigold);
  color: var(--pine-deep);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1.25;
  text-align: center;
  padding: 16px 14px;
  border-radius: 50%;
  width: 108px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(8deg);
  border: 2px dashed rgba(32, 57, 43, 0.55);
  outline: 4px solid var(--marigold);
  box-shadow: var(--hard-sm);
  transition: transform 0.2s;
}

.sticker:hover { transform: rotate(-4deg) scale(1.06); }

@media (max-width: 700px) { .sticker { display: none; } }

/* notepad badge (top-left of hero) */
.notepad {
  position: absolute;
  top: 30px;
  left: 5%;
  z-index: 3;
  width: 138px;
  background: var(--paper);
  border: 2px solid var(--pine);
  border-radius: 6px 6px 10px 10px;
  box-shadow: var(--hard-sm);
  transform: rotate(-5deg);
  padding: 18px 12px 14px;
  text-align: center;
  transition: transform 0.2s;
}

.notepad:hover { transform: rotate(-1deg) scale(1.04); }

/* spiral binding holes */
.notepad::before {
  content: "";
  position: absolute;
  top: 6px; left: 10px; right: 10px;
  height: 7px;
  background: radial-gradient(circle at 4px 3.5px, var(--pine) 2.6px, transparent 3px) repeat-x left center / 16px 7px;
}

/* faint ruled lines */
.notepad::after {
  content: "";
  position: absolute;
  inset: 30px 10px 10px;
  background: repeating-linear-gradient(to bottom, transparent 0 14px, rgba(32,57,43,0.12) 14px 15px);
  pointer-events: none;
}

.notepad .np-title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pine-deep);
  margin-top: 6px;
  border-bottom: 2px solid var(--marigold);
  display: inline-block;
  padding-bottom: 2px;
}

.notepad .np-count {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.55rem;
  color: var(--clay-dark);
  margin-top: 6px;
  line-height: 1.1;
}

.notepad .np-sub {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-top: 2px;
}

@media (max-width: 700px) { .notepad { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border: 2px solid var(--pine);
  box-shadow: var(--hard-sm);
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s;
  font-family: inherit;
}

.btn:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 rgba(32,57,43,0.9); }

.btn:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 rgba(32,57,43,0.9); }

.btn-primary { background: var(--clay); color: #fff; }
.btn-primary:hover { background: var(--clay-dark); }

.btn-ghost { background: transparent; color: var(--cream); border-color: var(--sage); box-shadow: 3px 3px 0 rgba(157,181,138,0.55); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); box-shadow: 5px 5px 0 rgba(157,181,138,0.55); }

.btn-forest { background: var(--pine); color: var(--cream); }
.btn-forest:hover { background: var(--pine-deep); }

.btn-gold { background: var(--marigold); color: var(--pine-deep); }
.btn-gold:hover { background: #d8912b; }

/* ---------- Critters strip (interactive animals) ---------- */
.critters {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 52px;
  z-index: 4;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='20'%3E%3Cpath d='M0 20 Q4 7 7 20 Q11 3 14 20 Q18 9 21 20 Q25 4 28 20 Q32 10 35 20 Q39 5 42 20 L46 20 Z' fill='%235a7a52'/%3E%3C/svg%3E") repeat-x bottom / 46px 20px;
  pointer-events: none;
}

.critter {
  position: absolute;
  bottom: 6px;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  user-select: none;
  filter: drop-shadow(2px 2px 0 rgba(22, 40, 30, 0.35));
  transition: filter 0.15s, opacity 0.35s ease;
  will-change: transform;
}

/* Only the emoji flips/rotates, keeping speech-bubble text the right way round. */
.critter .glyph {
  display: inline-block;
  line-height: 1;
  will-change: transform;
}

.critter:hover { filter: drop-shadow(2px 2px 0 rgba(22,40,30,0.35)) brightness(1.12); }

.critter .bubble {
  position: absolute;
  bottom: 112%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--paper);
  color: var(--pine-deep);
  border: 2px solid var(--pine);
  border-radius: 10px;
  box-shadow: var(--hard-sm);
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 800;
  font-family: "Source Sans 3", sans-serif;
  white-space: nowrap;
  animation: bubblePop 0.18s ease-out;
}

@keyframes bubblePop {
  from { transform: translateX(-50%) scale(0.4); opacity: 0; }
  to   { transform: translateX(-50%) scale(1); opacity: 1; }
}

@keyframes critterHop {
  0% { transform: translateY(0); }
  40% { transform: translateY(-22px) rotate(-8deg); }
  100% { transform: translateY(0); }
}

@keyframes critterSpin {
  to { transform: rotate(360deg); }
}

.bee-hive {
  position: absolute;
  pointer-events: none;
  transform-origin: 50% 100%;
  transform: scale(0.2);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1), opacity 0.4s ease;
  filter: drop-shadow(2px 3px 0 rgba(22, 40, 30, 0.3));
}

.bee-hive.show {
  transform: scale(1);
  opacity: 1;
}

/* ---------- Sections ---------- */
section.block { padding: 76px 0; }

.kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--clay);
  margin-bottom: 12px;
  padding-bottom: 8px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='6'%3E%3Cpath d='M1 4 Q6 1 11 4 T21 4 T31 4 T41 4' stroke='%23e9a23b' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x bottom left / 42px 6px;
}

section.block h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 16px; }

section.block h2 em { font-style: italic; color: var(--clay); }

.center { text-align: center; }

.muted { color: var(--ink-soft); }

/* ---------- Cards (seed packets) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 48px;
}

.card {
  position: relative;
  background: var(--paper);
  border: 2px solid var(--pine);
  border-radius: var(--radius);
  padding: 34px 28px 30px;
  box-shadow: var(--hard);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card::after {
  /* seed packet inner dashed border */
  content: "";
  position: absolute;
  inset: 8px;
  border: 1.5px dashed rgba(32, 57, 43, 0.28);
  border-radius: 9px;
  pointer-events: none;
}

.cards .card:nth-child(odd) { transform: rotate(-0.8deg); }
.cards .card:nth-child(even) { transform: rotate(0.8deg); }

.card:hover { transform: rotate(0deg) translate(-3px, -3px); box-shadow: 8px 8px 0 rgba(32,57,43,0.9); }

.card .icon {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: var(--sage-light);
  border: 2px solid var(--pine);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card .icon svg { width: 30px; height: 30px; }

.card h3 { font-size: 1.3rem; margin-bottom: 10px; }

.card p { color: var(--ink-soft); font-size: 0.97rem; }

.card .more {
  display: inline-block;
  margin-top: 16px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clay-dark);
  text-decoration: none;
}

.card .more:hover { text-decoration: underline wavy var(--marigold) 2px; }

/* ---------- Badge strip ---------- */
.badge-strip {
  background: var(--pine);
  color: var(--cream);
  border: 2px solid var(--pine-deep);
  border-radius: var(--radius);
  box-shadow: var(--hard);
  padding: 34px 38px;
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 60px;
}

.badge-strip .shield { flex: 0 0 auto; width: 64px; height: 64px; }

.badge-strip h3 { color: var(--cream); font-size: 1.25rem; margin-bottom: 6px; }

.badge-strip p { color: var(--sage-light); font-size: 0.95rem; max-width: 640px; }

.badge-strip .tags { display: flex; gap: 10px; margin-left: auto; }

.tag {
  background: var(--marigold);
  color: var(--pine-deep);
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 8px;
  border: 2px solid var(--pine-deep);
  font-size: 0.9rem;
  white-space: nowrap;
  transform: rotate(-2deg);
}

.tag:nth-child(even) { transform: rotate(2deg); }

/* ---------- Designer promo ---------- */
.promo { background: var(--cream-dark); border-top: 2px solid var(--pine); border-bottom: 2px solid var(--pine); }

.promo .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 820px) { .promo .split { grid-template-columns: 1fr; } }

.promo .mock {
  background: var(--paper);
  border: 2px solid var(--pine);
  border-radius: var(--radius);
  box-shadow: var(--hard);
  padding: 14px;
  transform: rotate(1deg);
}

.promo .mock svg { width: 100%; height: auto; border-radius: 10px; }

.checklist { list-style: none; margin: 22px 0 30px; }

.checklist li {
  padding-left: 34px;
  position: relative;
  margin-bottom: 12px;
  color: var(--ink-soft);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid var(--pine);
  background: var(--marigold) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2320392b" stroke-width="3.6" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/12px no-repeat;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
  margin-top: 48px;
  counter-reset: step;
}

.step {
  background: var(--paper);
  border: 2px solid var(--pine);
  border-radius: var(--radius);
  box-shadow: var(--hard-sm);
  padding: 30px 26px;
  position: relative;
}

.steps .step:nth-child(odd) { transform: rotate(-0.6deg); }
.steps .step:nth-child(even) { transform: rotate(0.6deg); }

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--marigold);
  -webkit-text-stroke: 1px var(--pine);
  display: block;
  margin-bottom: 10px;
}

.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { font-size: 0.94rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */
footer.site {
  background: var(--pine-deep);
  color: var(--sage-light);
  border-top: 2px solid var(--pine);
  margin-top: 80px;
  padding: 56px 0 30px;
}

footer .cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 720px) { footer .cols { grid-template-columns: 1fr; } }

footer h4 { color: var(--cream); margin-bottom: 14px; font-size: 1.05rem; }

footer a { color: var(--sage-light); text-decoration: none; display: block; margin-bottom: 8px; font-size: 0.95rem; }

footer a:hover { color: var(--marigold); }

footer p { font-size: 0.95rem; }

footer .fine {
  border-top: 1px dashed rgba(255,255,255,0.25);
  padding-top: 22px;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: #7d917f;
}

/* ---------- Page head (inner pages) ---------- */
.page-head {
  position: relative;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E"),
    linear-gradient(165deg, var(--pine-deep), var(--pine));
  color: var(--cream);
  padding: 34px 0 74px;
  text-align: center;
  overflow: hidden;
}

.page-head h1 { color: var(--cream); font-size: clamp(2rem, 4.5vw, 3rem); }

.page-head h1 em { font-style: italic; color: var(--marigold); }

.page-head p { color: var(--sage-light); max-width: 620px; margin: 14px auto 0; }

/* ---------- Service detail page ---------- */
.service-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 28px;
  background: var(--paper);
  border: 2px solid var(--pine);
  border-radius: var(--radius);
  box-shadow: var(--hard);
  padding: 38px 36px;
  margin-bottom: 32px;
  position: relative;
}

.service-row::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1.5px dashed rgba(32, 57, 43, 0.22);
  border-radius: 9px;
  pointer-events: none;
}

@media (max-width: 600px) { .service-row { grid-template-columns: 1fr; } }

.service-row .icon {
  width: 88px; height: 88px;
  border-radius: 16px;
  background: var(--sage-light);
  border: 2px solid var(--pine);
  display: flex; align-items: center; justify-content: center;
}

.service-row .icon svg { width: 46px; height: 46px; }

.service-row h2 { font-size: 1.5rem; margin-bottom: 10px; }

.service-row ul { margin: 14px 0 0 20px; color: var(--ink-soft); }

.service-row li { margin-bottom: 7px; }

.note {
  background: var(--cream-dark);
  border: 2px solid var(--pine);
  border-left-width: 8px;
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  position: relative;
  z-index: 1;
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--marigold);
  color: var(--pine-deep);
  font-weight: 800;
  padding: 12px 20px;
  border: 2px solid var(--pine);
  border-radius: 0 0 10px 0;
  text-decoration: none;
}

.skip-link:focus {
  left: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--marigold);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Instant quote page ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 900px) { .quote-grid { grid-template-columns: 1fr; } }

.quote-panel {
  background: var(--paper);
  border: 2px solid var(--pine);
  border-radius: var(--radius);
  box-shadow: var(--hard);
  padding: 30px;
}

.quote-panel > h2 {
  font-size: 1.45rem;
  margin-bottom: 4px;
}

.quote-panel .qp-sub {
  color: var(--ink-soft);
  font-size: 0.93rem;
  margin-bottom: 6px;
}

.opt-label {
  display: block;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 22px 0 8px;
  color: var(--pine-deep);
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; }

.chips input {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.chips label {
  cursor: pointer;
  border: 2px solid var(--cream-dark);
  border-radius: 999px;
  padding: 7px 15px;
  background: var(--cream);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  user-select: none;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
}

.chips label:hover { border-color: var(--moss); }

.chips input:checked + label {
  background: var(--pine);
  color: var(--cream);
  border-color: var(--pine-deep);
}

.chips input:focus-visible + label {
  outline: 2px solid var(--moss);
  outline-offset: 2px;
}

.custom-size { display: none; margin-top: 10px; }

.custom-size.show { display: block; }

.custom-size input {
  width: 100%;
  max-width: 220px;
  padding: 10px 14px;
  border: 2px solid var(--cream-dark);
  border-radius: 10px;
  font: inherit;
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--ink);
}

.custom-size input:focus { outline: none; border-color: var(--moss); background: #fff; }

.quote-panel .btn { width: 100%; margin-top: 26px; }

.qr-error {
  display: none;
  margin-top: 12px;
  color: var(--clay-dark);
  font-weight: 600;
  font-size: 0.92rem;
  text-align: center;
}

.qr-error.show { display: block; }

.quote-result {
  display: none;
  margin-top: 22px;
  border: 2px dashed var(--moss);
  border-radius: var(--radius);
  background: var(--cream);
  padding: 22px;
  text-align: center;
}

.quote-result.show { display: block; }

.quote-result .qr-label {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}

.quote-result .qr-price {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--pine-deep);
  margin: 4px 0 8px;
}

.quote-result .qr-note {
  font-size: 0.84rem;
  color: var(--ink-soft);
  max-width: 420px;
  margin: 0 auto;
}

.quote-result .qr-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

.quote-result .qr-actions .btn { width: auto; margin-top: 0; }
