/* [project]/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  --honey-50: #fffaf0;
  --honey-100: #fdecc1;
  --honey-200: #fbdd94;
  --honey-300: #f6c452;
  --honey-400: #f0aa22;
  --honey-500: #e0940f;
  --honey-600: #c17909;
  --honey-700: #93590c;
  --ink-900: #2a1d10;
  --ink-700: #4d3a24;
  --ink-500: #6d5a42;
  --line: #ecdfc4;
  --cream: #fffaf0;
  --white: #fff;
  --leaf-600: #63813a;
  --shadow-sm: 0 1px 2px #2a1d100f;
  --shadow-md: 0 8px 24px -8px #2a1d102e;
  --shadow-lg: 0 20px 48px -16px #2a1d1047;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  min-height: 100%;
}

body {
  background: var(--cream);
  color: var(--ink-900);
  font-family: var(--font-body, Arial, Helvetica, sans-serif);
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  overflow-x: hidden;
}

img, svg {
  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(--font-display, Georgia, serif);
  color: var(--ink-900);
  margin: 0 0 .6em;
  font-weight: 600;
  line-height: 1.15;
}

h1 {
  letter-spacing: -.01em;
  font-size: clamp(2.2rem, 4.2vw + 1rem, 3.6rem);
}

h2 {
  font-size: clamp(1.6rem, 2.2vw + 1rem, 2.4rem);
}

h3 {
  font-size: clamp(1.15rem, 1vw + 1rem, 1.4rem);
}

h4 {
  font-size: 1.05rem;
}

p {
  color: var(--ink-700);
  margin: 0 0 1em;
  line-height: 1.7;
}

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

.eyebrow {
  font-family: var(--font-body, Arial, Helvetica, sans-serif);
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--honey-600);
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: .78rem;
  font-weight: 700;
  display: inline-flex;
}

.section {
  padding: clamp(48px, 7vw, 96px) 0;
}

.section--tight {
  padding: clamp(32px, 4vw, 56px) 0;
}

.section--cream {
  background: linear-gradient(180deg, var(--honey-50) 0%, var(--cream) 100%);
}

.section--ink {
  background: var(--ink-900);
  color: var(--honey-50);
}

.section--ink h2, .section--ink h3, .section--ink p {
  color: var(--honey-50);
}

.section-head {
  max-width: 46rem;
  margin: 0 0 2.5rem;
}

.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  font-family: var(--font-body, Arial, Helvetica, sans-serif);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid #0000;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: .85em 1.6em;
  font-size: .98rem;
  font-weight: 700;
  transition: transform .18s, box-shadow .18s, background-color .18s, color .18s;
  display: inline-flex;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--honey-400), var(--honey-500));
  color: var(--ink-900);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--honey-500);
  color: var(--ink-900);
  background: none;
}

.btn-outline:hover {
  background: var(--honey-100);
}

.btn-ghost {
  color: var(--honey-50);
  background: #ffffff14;
  border-color: #ffffff59;
}

.btn-ghost:hover {
  background: #ffffff29;
}

.btn-sm {
  padding: .6em 1.2em;
  font-size: .88rem;
}

.site-header {
  z-index: 40;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  background: #fffaf0e6;
  position: sticky;
  top: 0;
}

.site-header__bar {
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  display: flex;
}

.brand {
  font-family: var(--font-display, Georgia, serif);
  color: var(--ink-900);
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
}

.brand__mark {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
}

.brand__text {
  flex-direction: column;
  line-height: 1.15;
  display: flex;
}

.brand__text small {
  font-family: var(--font-body, Arial, Helvetica, sans-serif);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--honey-600);
  font-size: .68rem;
  font-weight: 500;
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  align-items: center;
  gap: 28px;
  display: flex;
}

.nav-desktop a {
  color: var(--ink-700);
  padding: 6px 0;
  font-size: .95rem;
  font-weight: 600;
  position: relative;
}

.nav-desktop a:hover, .nav-desktop a[aria-current="page"] {
  color: var(--honey-600);
}

.header-actions {
  align-items: center;
  gap: 14px;
  display: none;
}

.header-phone {
  color: var(--ink-900);
  align-items: center;
  gap: 8px;
  font-size: .92rem;
  font-weight: 700;
  display: flex;
}

.nav-toggle {
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  display: inline-flex;
}

.nav-mobile {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.nav-mobile ul {
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  display: flex;
}

.nav-mobile a {
  border-bottom: 1px solid var(--line);
  padding: 12px 4px;
  font-size: 1.02rem;
  font-weight: 600;
  display: block;
}

.nav-mobile__cta {
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
  display: flex;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: block;
  }

  .header-actions {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

.hero {
  background: radial-gradient(ellipse 70% 60% at 85% -10%, var(--honey-200) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 5% 110%, var(--honey-100) 0%, transparent 55%),
    var(--cream);
  padding: clamp(56px, 8vw, 110px) 0 clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}

.hero__grid {
  align-items: center;
  gap: 40px;
  display: grid;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
  }
}

.hero__copy p {
  max-width: 34rem;
  font-size: 1.08rem;
}

.hero__actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 1.6rem;
  display: flex;
}

.hero__stats {
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 2.4rem;
  padding-top: 1.8rem;
  display: flex;
}

.hero__stat strong {
  font-family: var(--font-display, Georgia, serif);
  color: var(--honey-700);
  font-size: 1.7rem;
  display: block;
}

.hero__stat span {
  color: var(--ink-500);
  font-size: .85rem;
}

.hero__art {
  aspect-ratio: 1;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
}

.honeycomb-bg {
  --hex-size: 46px;
  background-image: radial-gradient(circle at 50% 50%, transparent 65%, var(--honey-100) 66%),
    repeating-linear-gradient(60deg, var(--honey-100) 0 2px, transparent 2px calc(var(--hex-size) / 2)),
    repeating-linear-gradient(-60deg, var(--honey-100) 0 2px, transparent 2px calc(var(--hex-size) / 2));
}

.hex-badge {
  clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%);
  background: linear-gradient(135deg, var(--honey-300), var(--honey-500));
  width: 64px;
  height: 64px;
  color: var(--ink-900);
  flex-shrink: 0;
  place-items: center;
  display: grid;
}

.card-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  display: grid;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  flex-direction: column;
  height: 100%;
  padding: 28px;
  transition: transform .2s, box-shadow .2s;
  display: flex;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card__icon {
  margin-bottom: 16px;
}

.card__tag {
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--honey-700);
  background: var(--honey-100);
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 4px 10px;
  font-size: .72rem;
  font-weight: 700;
  display: inline-block;
}

.card__price {
  color: var(--ink-900);
  border-top: 1px dashed var(--line);
  margin-top: auto;
  padding-top: 14px;
  font-weight: 700;
}

.product-card p {
  margin-bottom: .5em;
  font-size: .95rem;
}

.value-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  display: grid;
}

.value-item__icon {
  margin-bottom: 14px;
}

.split {
  align-items: center;
  gap: 40px;
  display: grid;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .split--reverse .split__art {
    order: 2;
  }
}

.split__art {
  position: relative;
}

.art-frame {
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, var(--honey-100), var(--honey-300));
  box-shadow: var(--shadow-lg);
  place-items: center;
  display: grid;
  position: relative;
  overflow: hidden;
}

.art-frame svg {
  width: 78%;
  height: 78%;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item__q {
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-family: var(--font-body, Arial, Helvetica, sans-serif);
  color: var(--ink-900);
  background: none;
  border: none;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 4px;
  font-size: 1.02rem;
  font-weight: 700;
  display: flex;
}

.faq-item__icon {
  background: var(--honey-100);
  width: 26px;
  height: 26px;
  color: var(--honey-700);
  border-radius: 50%;
  flex-shrink: 0;
  place-items: center;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform .25s, background .25s;
  display: grid;
}

.faq-item[data-open="true"] .faq-item__icon {
  background: var(--honey-400);
  color: var(--ink-900);
  transform: rotate(45deg);
}

.faq-item__a {
  max-height: 0;
  transition: max-height .28s;
  overflow: hidden;
}

.faq-item[data-open="true"] .faq-item__a {
  max-height: 600px;
}

.faq-item__a p {
  max-width: 60ch;
  padding: 0 4px 22px;
}

.retail-list {
  gap: 16px;
  display: grid;
}

.retail-row {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  display: flex;
}

.info-strip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 28px;
  display: grid;
}

.info-strip__item {
  align-items: flex-start;
  gap: 12px;
  display: flex;
}

.info-strip__item h4 {
  margin-bottom: 4px;
}

.info-strip__item p {
  margin: 0;
  font-size: .94rem;
}

.map-frame {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.map-frame iframe {
  border: 0;
  width: 100%;
  height: 340px;
  display: block;
}

.form-grid {
  gap: 18px;
  display: grid;
}

@media (min-width: 640px) {
  .form-grid--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.field label {
  color: var(--ink-900);
  font-size: .86rem;
  font-weight: 700;
}

.field input, .field textarea {
  font-family: var(--font-body, Arial, Helvetica, sans-serif);
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink-900);
  resize: vertical;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: .98rem;
}

.field input:focus, .field textarea:focus {
  border-color: var(--honey-500);
  outline: none;
  box-shadow: 0 0 0 3px #e0940f2e;
}

.form-note {
  color: var(--ink-500);
  font-size: .82rem;
}

.form-status {
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .92rem;
  font-weight: 600;
}

.form-status--success {
  color: var(--leaf-600);
  background: #eaf3e2;
}

.form-status--error {
  color: #a4341f;
  background: #fbe8e4;
}

.cta-banner {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--ink-900), #3a2712);
  color: var(--honey-50);
  align-items: center;
  gap: 24px;
  padding: clamp(32px, 5vw, 56px);
  display: grid;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.cta-banner p {
  color: var(--honey-100);
  margin-bottom: 0;
}

.cta-banner__actions {
  flex-wrap: wrap;
  gap: 14px;
  display: flex;
}

@media (min-width: 800px) {
  .cta-banner {
    grid-template-columns: 1.3fr 1fr;
  }
}

.breadcrumb {
  color: var(--ink-500);
  padding: 18px 0 0;
  font-size: .85rem;
}

.breadcrumb a {
  color: var(--ink-500);
}

.breadcrumb a:hover {
  color: var(--honey-600);
}

.breadcrumb__sep {
  opacity: .6;
  margin: 0 8px;
}

.page-hero {
  padding: 20px 0 clamp(36px, 5vw, 60px);
}

.page-hero p {
  max-width: 42rem;
  font-size: 1.05rem;
}

.site-footer {
  background: var(--ink-900);
  color: var(--honey-100);
  padding: 56px 0 24px;
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  display: grid;
}

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

.site-footer .brand {
  color: var(--white);
}

.site-footer h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: .95rem;
}

.site-footer p, .site-footer a {
  color: var(--honey-100);
  font-size: .92rem;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-links {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.footer-bottom {
  color: var(--honey-200);
  border-top: 1px solid #ffffff1f;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 24px;
  margin-top: 40px;
  padding-top: 20px;
  font-size: .82rem;
  display: flex;
}

.footer-bottom a {
  color: var(--honey-200);
}

.cookie-banner {
  z-index: 100;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  max-width: 640px;
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  padding: 22px 24px;
  position: fixed;
  inset: auto 16px 16px;
}

.cookie-banner p {
  margin-bottom: 14px;
  font-size: .9rem;
}

.cookie-banner__actions {
  flex-wrap: wrap;
  gap: 10px;
  display: flex;
}

.cookie-modal__backdrop {
  z-index: 110;
  background: #2a1d1080;
  place-items: center;
  padding: 20px;
  display: grid;
  position: fixed;
  inset: 0;
}

.cookie-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: 85vh;
  padding: 28px;
  overflow-y: auto;
}

.cookie-cat {
  border-top: 1px solid var(--line);
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  display: flex;
}

.cookie-cat h4 {
  margin-bottom: 4px;
}

.cookie-cat p {
  margin: 0;
  font-size: .86rem;
}

.switch {
  background: var(--line);
  cursor: pointer;
  border: none;
  border-radius: 999px;
  flex-shrink: 0;
  width: 44px;
  height: 26px;
  transition: background .2s;
  position: relative;
}

.switch[data-on="true"] {
  background: var(--honey-500);
}

.switch[disabled] {
  cursor: not-allowed;
  opacity: .7;
}

.switch:after {
  content: "";
  background: var(--white);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  transition: transform .2s;
  position: absolute;
  top: 3px;
  left: 3px;
}

.switch[data-on="true"]:after {
  transform: translateX(18px);
}

.cookie-modal__actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  display: flex;
}

.prose {
  max-width: 72ch;
}

.prose h2 {
  margin-top: 2em;
}

.prose ul {
  margin: 0 0 1em;
  padding-left: 1.4em;
  list-style: outside;
}

.prose li {
  color: var(--ink-700);
  margin-bottom: .4em;
  line-height: 1.7;
}

.visually-hidden {
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.stack {
  flex-direction: column;
  gap: 14px;
  display: flex;
}

.text-center {
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/*# sourceMappingURL=app_globals_0yg4wg8.css.map*/