@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --cream: #fbf5e8;
  --cream-dark: #efe3ca;
  --paper: #fffdf7;
  --pine: #063d2b;
  --forest: #075d38;
  --leaf: #0b7a4b;
  --mint: #cfe6d6;
  --sea: #b8dfd5;
  --orange: #ef8d09;
  --orange-soft: #ffc870;
  --ink: #12372b;
  --muted: #62736b;
  --line: rgba(6, 61, 43, .14);
  --shadow: 0 24px 70px rgba(6, 61, 43, .12);
  --radius: 26px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.drawer-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.08;
}
::selection { color: #fff; background: var(--forest); }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: #fff;
  background: var(--pine);
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-sm { padding: 78px 0; }
.surface { background: var(--paper); }
.dark { color: #fff; background: var(--pine); }
.muted { color: var(--muted); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { width: 22px; height: 2px; content: ""; background: var(--orange); }
.dark .eyebrow { color: var(--orange-soft); }
.section-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .62fr); gap: 64px; align-items: end; margin-bottom: 54px; }
.section-head.center { display: block; max-width: 740px; margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { max-width: 790px; margin-bottom: 0; font-size: clamp(40px, 5.2vw, 70px); }
.section-head p { margin-bottom: 4px; color: var(--muted); font-size: 17px; }
.dark .section-head p { color: rgba(255, 255, 255, .7); }
.accent { color: var(--leaf); font-style: italic; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--leaf); box-shadow: 0 12px 28px rgba(11, 122, 75, .2); }
.button-primary:hover { background: var(--pine); }
.button-orange { color: var(--pine); background: var(--orange); }
.button-orange:hover { background: var(--orange-soft); }
.button-ghost { border-color: var(--line); background: transparent; }
.button-ghost:hover { border-color: var(--forest); }
.dark .button-ghost { color: #fff; border-color: rgba(255, 255, 255, .3); }
.text-link { display: inline-flex; align-items: center; gap: 8px; padding: 0 0 4px; border: 0; border-bottom: 1px solid currentColor; color: var(--forest); background: transparent; cursor: pointer; font-weight: 700; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, -3px); }

.announcement { padding: 8px 20px; color: rgba(255,255,255,.82); background: var(--pine); text-align: center; font-size: 12px; letter-spacing: .03em; }
.site-header { position: sticky; top: 0; z-index: 70; border-bottom: 1px solid var(--line); background: rgba(251, 245, 232, .9); backdrop-filter: blur(18px); }
.nav { display: flex; height: 76px; align-items: center; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; }
.brand img { width: 48px; height: 48px; border: 1px solid rgba(6, 61, 43, .12); border-radius: 50%; object-fit: cover; }
.brand-copy { display: grid; gap: 1px; }
.brand-copy strong { color: var(--pine); font-family: "Fraunces", Georgia, serif; font-size: 20px; line-height: 1; }
.brand-copy span { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 15px; }
.desktop-nav a { position: relative; color: #315548; font-size: 11.5px; font-weight: 700; white-space: nowrap; }
.desktop-nav a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; content: ""; background: var(--orange); transform: scaleX(0); transition: transform .2s ease; }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions .button { min-height: 42px; padding: 10px 17px; font-size: 13px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 4px 0; background: var(--pine); transition: transform .2s ease; }
.mobile-menu { position: fixed; top: 108px; right: 0; bottom: 0; left: 0; z-index: 65; display: grid; align-content: start; gap: 4px; padding: 30px 24px; overflow-y: auto; background: var(--cream); transform: translateX(102%); transition: transform .22s cubic-bezier(.22,1,.36,1); }
.mobile-menu a { padding: 8px 0; font-family: "Fraunces", Georgia, serif; font-size: 36px; line-height: 1.15; }
.mobile-menu .button { width: max-content; margin-top: 22px; font-family: "Manrope", sans-serif; font-size: 15px; }
.menu-open .mobile-menu { transform: none; }

.hero { position: relative; min-height: 720px; overflow: hidden; background: var(--cream); }
.hero-grid { display: grid; min-height: 720px; grid-template-columns: .86fr 1.14fr; align-items: stretch; }
.hero-copy { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 86px 64px 86px 0; }
.hero-copy::before { position: absolute; top: 62px; left: -110px; width: 190px; height: 190px; border: 1px solid rgba(239, 141, 9, .25); border-radius: 50%; content: ""; }
.hero h1 { max-width: 660px; margin-bottom: 24px; color: var(--pine); font-size: clamp(58px, 6.3vw, 92px); }
.hero h1 em { color: var(--orange); font-weight: 500; }
.hero-copy > p { max-width: 580px; margin-bottom: 32px; color: #456258; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { display: flex; align-items: center; gap: 11px; margin-top: 32px; color: var(--muted); font-size: 12px; font-weight: 600; }
.hero-note span { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; color: #fff; background: var(--forest); font-size: 16px; }
.hero-media { position: relative; min-height: 600px; }
.hero-media::before { position: absolute; top: 7%; right: -56px; z-index: 1; width: 120px; height: 120px; border-radius: 50%; content: ""; background: var(--orange); }
.hero-media img { width: calc(100% + max(0px, (100vw - var(--max)) / 2)); height: 100%; max-width: none; object-fit: cover; object-position: center; clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%); }
.hero-stamp { position: absolute; bottom: 42px; left: 2px; z-index: 3; display: grid; width: 118px; height: 118px; place-items: center; padding: 18px; border: 8px solid var(--cream); border-radius: 50%; color: #fff; background: var(--forest); text-align: center; font-size: 11px; font-weight: 700; letter-spacing: .08em; line-height: 1.4; text-transform: uppercase; transform: rotate(-8deg); }

.trust-strip { border-block: 1px solid var(--line); background: var(--paper); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 28px 26px; border-right: 1px solid var(--line); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; margin-bottom: 2px; color: var(--pine); font-family: "Fraunces", Georgia, serif; font-size: 24px; }
.trust-item span { color: var(--muted); font-size: 12px; }

.store-focus { background: var(--pine); }
.store-focus-card { display: grid; min-height: 560px; grid-template-columns: .92fr 1.08fr; overflow: hidden; border-radius: 36px; color: #fff; background: var(--forest); }
.store-focus-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 64px; }
.store-focus-copy .eyebrow { color: var(--orange-soft); }
.store-focus-copy h2 { max-width: 630px; margin-bottom: 22px; color: #fff; font-size: clamp(42px, 5vw, 66px); }
.store-focus-copy > p { max-width: 570px; margin-bottom: 28px; color: rgba(255,255,255,.7); font-size: 16px; }
.store-focus-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.store-focus-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.store-focus-meta span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: rgba(255,255,255,.72); font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.store-focus-media { min-height: 560px; overflow: hidden; }
.store-focus-media img { width: 100%; height: 100%; object-fit: cover; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: services; }
.services-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.service-card { position: relative; min-height: 340px; overflow: hidden; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); counter-increment: services; transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.service-card::before { display: block; margin-bottom: 72px; color: var(--orange); content: "0" counter(services); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.service-card::after { position: absolute; right: -58px; bottom: -68px; width: 176px; height: 176px; border: 1px solid var(--mint); border-radius: 50%; content: ""; box-shadow: 0 0 0 22px rgba(207,230,214,.24), 0 0 0 44px rgba(207,230,214,.12); }
.service-card h3 { margin-bottom: 12px; color: var(--pine); font-size: 31px; }
.service-card p { position: relative; z-index: 1; max-width: 290px; margin-bottom: 0; color: var(--muted); }
.service-card-featured { color: #fff; border-color: transparent; background: var(--forest); }
.service-card-featured h3 { color: #fff; }
.service-card-featured p { color: rgba(255,255,255,.72); }
.service-card-featured::after { border-color: rgba(255,255,255,.3); box-shadow: 0 0 0 22px rgba(255,255,255,.07), 0 0 0 44px rgba(255,255,255,.04); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-media { position: relative; }
.split-media img { width: 100%; aspect-ratio: 5 / 4; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.split-media::after { position: absolute; right: -24px; bottom: -24px; z-index: -1; width: 62%; height: 42%; border-radius: var(--radius); content: ""; background: var(--orange); }
.split-copy h2 { margin-bottom: 24px; color: var(--pine); font-size: clamp(42px, 5vw, 66px); }
.split-copy > p { margin-bottom: 28px; color: var(--muted); font-size: 17px; }
.check-list { display: grid; gap: 14px; margin: 0 0 32px; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 30px 1fr; gap: 11px; align-items: start; font-weight: 600; }
.check-list li::before { display: grid; width: 26px; height: 26px; place-items: center; border-radius: 50%; color: var(--pine); content: "✓"; background: var(--mint); font-size: 12px; }

.partnership { background: #e7f0e8; }
.supplier { background: var(--cream-dark); }
.business-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 78px; align-items: center; }
.business-grid-reverse .business-copy { order: 1; }
.business-grid-reverse .business-media { order: 2; }
.business-media { position: relative; min-height: 500px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.business-media img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; }
.business-media > span { position: absolute; right: 18px; bottom: 18px; left: 18px; padding: 16px 18px; border-radius: 15px; color: #fff; background: rgba(6,61,43,.86); font-family: "Fraunces", Georgia, serif; font-size: 19px; text-align: center; backdrop-filter: blur(10px); }
.business-copy h2 { max-width: 650px; margin-bottom: 22px; color: var(--pine); font-size: clamp(42px, 5vw, 64px); }
.business-copy > p { margin-bottom: 28px; color: var(--muted); font-size: 17px; }

.process { overflow: hidden; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-grid::before { position: absolute; top: 27px; right: 9%; left: 9%; height: 1px; content: ""; background: rgba(255,255,255,.25); }
.process-step { position: relative; z-index: 1; }
.process-step span { display: grid; width: 54px; height: 54px; margin-bottom: 25px; place-items: center; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; color: var(--pine); background: var(--orange); font-weight: 700; }
.process-step h3 { margin-bottom: 10px; color: #fff; font-size: 24px; }
.process-step p { margin-bottom: 0; color: rgba(255,255,255,.66); font-size: 14px; }

.gallery-grid { display: grid; grid-template-columns: 1.16fr .84fr; grid-template-rows: repeat(2, 270px); gap: 18px; }
.gallery-card { position: relative; overflow: hidden; border-radius: var(--radius); }
.gallery-card:first-child { grid-row: 1 / 3; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.gallery-card:hover img { transform: scale(1.035); }
.gallery-label { position: absolute; right: 18px; bottom: 18px; left: 18px; padding: 18px 20px; border-radius: 18px; color: #fff; background: rgba(6, 61, 43, .84); backdrop-filter: blur(10px); }
.gallery-label strong { display: block; font-family: "Fraunces", Georgia, serif; font-size: 22px; }
.gallery-label span { color: rgba(255,255,255,.7); font-size: 12px; }

.testimonial { position: relative; overflow: hidden; border-radius: 36px; color: #fff; background: var(--forest); }
.testimonial::before { position: absolute; top: -120px; right: -80px; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; content: ""; box-shadow: 0 0 0 50px rgba(255,255,255,.035), 0 0 0 100px rgba(255,255,255,.025); }
.testimonial-inner { position: relative; z-index: 1; display: grid; grid-template-columns: .42fr 1fr; gap: 60px; align-items: center; padding: 72px; }
.testimonial-mark { color: var(--orange); font-family: "Fraunces", Georgia, serif; font-size: 160px; line-height: .5; }
.testimonial blockquote { margin: 0 0 24px; font-family: "Fraunces", Georgia, serif; font-size: clamp(30px, 4vw, 46px); letter-spacing: -.025em; line-height: 1.2; }
.testimonial cite { color: rgba(255,255,255,.65); font-style: normal; font-size: 13px; }

.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.team-card { display: grid; grid-template-columns: 210px 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.team-card img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; object-position: center 22%; }
.team-copy { padding: 34px; align-self: center; }
.team-copy h3 { margin-bottom: 5px; color: var(--pine); font-size: 34px; }
.team-role { margin-bottom: 18px; color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.team-copy p:last-child { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.explore-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.explore-card { position: relative; min-height: 480px; overflow: hidden; border-radius: var(--radius); color: #fff; }
.explore-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.explore-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, rgba(6,61,43,.05), rgba(6,61,43,.86)); }
.explore-card:hover img { transform: scale(1.04); }
.explore-copy { position: absolute; right: 36px; bottom: 34px; left: 36px; z-index: 1; }
.explore-copy span { color: var(--orange-soft); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.explore-copy h3 { max-width: 420px; margin: 8px 0 12px; color: #fff; font-size: 38px; }
.explore-copy p { max-width: 430px; margin: 0; color: rgba(255,255,255,.72); }

.faq-layout { display: grid; grid-template-columns: .72fr 1fr; gap: 80px; }
.faq-intro h2 { margin-bottom: 20px; font-size: clamp(44px, 5vw, 66px); }
.faq-intro p { color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 23px 48px 23px 0; cursor: pointer; list-style: none; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 22px; right: 4px; content: "+"; color: var(--forest); font-size: 25px; font-weight: 400; line-height: 1; transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { max-width: 620px; padding: 0 48px 20px 0; color: var(--muted); font-size: 14px; }

.contact-wrap { display: grid; grid-template-columns: .8fr 1fr; gap: 72px; align-items: center; }
.contact-copy h2 { margin-bottom: 22px; color: #fff; font-size: clamp(46px, 5.4vw, 72px); }
.contact-copy p { max-width: 480px; color: rgba(255,255,255,.68); }
.brief-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 28px; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); background: rgba(255,255,255,.07); }
.field { display: grid; gap: 7px; }
.field label { color: rgba(255,255,255,.76); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field select { width: 100%; min-height: 50px; padding: 11px 13px; border: 1px solid rgba(255,255,255,.17); border-radius: 12px; color: #fff; background: rgba(255,255,255,.08); outline: none; }
.field input::placeholder { color: rgba(255,255,255,.4); }
.field input:focus, .field select:focus { border-color: var(--orange); }
.brief-form .button { grid-column: 1 / -1; margin-top: 6px; }
.form-note { grid-column: 1 / -1; margin: 0; color: rgba(255,255,255,.5); text-align: center; font-size: 11px; }

.site-footer { padding: 70px 0 24px; color: rgba(255,255,255,.64); background: #032a1e; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .6fr .6fr .8fr; gap: 58px; padding-bottom: 54px; }
.footer-brand .brand-copy strong { color: #fff; }
.footer-brand .brand-copy span { color: rgba(255,255,255,.5); }
.footer-brand > p { max-width: 350px; margin-top: 18px; font-size: 13px; }
.footer-col strong { display: block; margin-bottom: 15px; color: #fff; font-family: "Fraunces", Georgia, serif; font-size: 18px; }
.footer-col a { display: block; width: max-content; margin: 7px 0; font-size: 13px; }
.footer-col a:hover { color: var(--orange-soft); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }

/* Internal page hero */
.page-hero { padding: 74px 0 46px; }
.page-hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.page-hero h1 { max-width: 670px; margin-bottom: 22px; color: var(--pine); font-size: clamp(58px, 7vw, 92px); }
.page-hero p { max-width: 570px; color: var(--muted); font-size: 18px; }
.page-hero-media { position: relative; min-height: 470px; overflow: hidden; border-radius: var(--radius); }
.page-hero-media img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; }
.page-hero-media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 55%, rgba(6,61,43,.45)); }
.page-hero-badge { position: absolute; right: 22px; bottom: 22px; z-index: 1; max-width: 230px; padding: 16px 18px; border-radius: 16px; color: #fff; background: rgba(6,61,43,.88); font-size: 12px; }

/* Store */
.store-toolbar { position: sticky; top: 76px; z-index: 20; border-block: 1px solid var(--line); background: rgba(251,245,232,.93); backdrop-filter: blur(15px); }
.toolbar-inner { display: flex; min-height: 78px; align-items: center; gap: 22px; }
.category-list { display: flex; min-width: 0; flex: 1; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.category-list::-webkit-scrollbar { display: none; }
.filter-chip { flex: none; min-height: 38px; padding: 8px 15px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); cursor: pointer; color: #456258; font-size: 12px; font-weight: 700; }
.filter-chip:hover, .filter-chip.is-active { color: #fff; border-color: var(--forest); background: var(--forest); }
.cart-button { position: relative; display: inline-flex; width: 46px; height: 46px; flex: none; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); cursor: pointer; }
.cart-button span { position: absolute; top: -4px; right: -4px; display: grid; min-width: 20px; height: 20px; place-items: center; padding-inline: 5px; border-radius: 999px; color: #fff; background: var(--orange); font-size: 10px; font-weight: 700; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--paper); transition: transform .24s ease, box-shadow .24s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-image { position: relative; height: 300px; overflow: hidden; background: var(--mint); }
.product-image img { width: 180%; height: 100%; max-width: none; object-fit: cover; filter: saturate(.9); transition: transform .5s ease; }
.product-card:hover .product-image img { transform: scale(1.04); }
.product-image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 58%, rgba(6,61,43,.5)); }
.product-image > span { position: absolute; bottom: 15px; left: 16px; z-index: 1; padding: 6px 10px; border-radius: 999px; color: #fff; background: rgba(6,61,43,.8); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-copy { padding: 23px; }
.product-category { margin-bottom: 7px; color: var(--orange); font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.product-copy h3 { min-height: 54px; margin-bottom: 18px; color: var(--pine); font-size: 24px; }
.product-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.product-bottom strong { color: var(--forest); font-size: 18px; }
.icon-add { display: grid; width: 42px; height: 42px; place-items: center; border: 0; border-radius: 50%; color: #fff; background: var(--leaf); cursor: pointer; font-size: 22px; transition: transform .2s ease, background .2s ease; }
.icon-add:hover { background: var(--pine); transform: rotate(90deg); }
.store-benefits { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.store-benefit { padding: 30px; border-right: 1px solid var(--line); }
.store-benefit:last-child { border-right: 0; }
.store-benefit span { display: block; margin-bottom: 16px; font-size: 28px; }
.store-benefit h3 { margin-bottom: 7px; font-size: 23px; }
.store-benefit p { margin: 0; color: var(--muted); font-size: 13px; }
.cart-backdrop { position: fixed; inset: 0; z-index: 80; visibility: hidden; background: rgba(3,42,30,.5); opacity: 0; transition: opacity .25s ease, visibility .25s; backdrop-filter: blur(3px); }
.cart-backdrop.is-open { visibility: visible; opacity: 1; }
.cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; z-index: 90; display: flex; width: min(440px, 94vw); flex-direction: column; background: var(--cream); box-shadow: -20px 0 60px rgba(3,42,30,.18); transform: translateX(104%); transition: transform .3s ease; }
.cart-drawer.is-open { transform: none; }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 24px; border-bottom: 1px solid var(--line); }
.cart-head h2 { margin: 0; font-size: 28px; }
.close-button { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; font-size: 22px; }
.cart-items { flex: 1; overflow-y: auto; padding: 8px 24px; }
.cart-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.cart-row p { margin: 0 0 3px; color: var(--orange); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.cart-row strong, .cart-row span { display: block; }
.cart-row strong { font-family: "Fraunces", Georgia, serif; font-size: 18px; }
.cart-row > div > span { color: var(--muted); font-size: 12px; }
.quantity { display: flex; align-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); }
.quantity button { width: 34px; height: 34px; border: 0; background: transparent; cursor: pointer; }
.quantity span { min-width: 24px; text-align: center; font-size: 12px; font-weight: 700; }
.empty-cart { padding: 90px 20px; text-align: center; }
.empty-cart > span { font-size: 42px; }
.empty-cart h3 { margin: 14px 0 8px; font-size: 26px; }
.empty-cart p { color: var(--muted); font-size: 13px; }
.cart-footer { padding: 22px 24px; border-top: 1px solid var(--line); background: var(--paper); }
.cart-total { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 15px; }
.cart-total span { color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.cart-total strong { color: var(--pine); font-family: "Fraunces", Georgia, serif; font-size: 30px; }
.cart-footer .button { width: 100%; }
.cart-footer p { margin: 11px 0 0; color: var(--muted); text-align: center; font-size: 10px; }

/* Blog */
.blog-intro { max-width: 760px; }
.topic-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.topic-row span { padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--forest); background: var(--paper); font-size: 11px; font-weight: 700; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.post-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.post-image { height: 300px; overflow: hidden; }
.post-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .post-image img { transform: scale(1.035); }
.post-copy { padding: 30px; }
.post-meta { margin-bottom: 11px; color: var(--orange); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.post-copy h2 { margin-bottom: 14px; color: var(--pine); font-size: 34px; }
.post-copy > p:not(.post-meta) { color: var(--muted); }
.post-card-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.15fr .85fr; }
.post-card-featured .post-image { height: auto; min-height: 420px; }
.post-card-featured .post-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 48px; }
.post-card-featured .post-copy h2 { font-size: 44px; }
.article-dialog { width: min(760px, calc(100% - 32px)); max-height: 90vh; padding: 0; border: 0; border-radius: 24px; color: var(--ink); background: var(--paper); box-shadow: 0 36px 90px rgba(3,42,30,.28); }
.article-dialog::backdrop { background: rgba(3,42,30,.6); backdrop-filter: blur(5px); }
.article-close { position: sticky; top: 18px; z-index: 2; display: grid; width: 44px; height: 44px; margin: 18px 18px -62px auto; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--cream); cursor: pointer; font-size: 22px; }
.article-content { padding: 76px 62px 62px; }
.article-content .post-meta { margin-bottom: 13px; }
.article-content h2 { margin-bottom: 28px; color: var(--pine); font-size: clamp(38px, 5vw, 58px); }
.article-body p { color: #526a61; font-size: 17px; line-height: 1.8; }
.article-share { margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--line); }

[data-reveal] { opacity: 0; transform: translateY(10px); transition: opacity .42s ease-out, transform .42s cubic-bezier(.22,1,.36,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .nav-actions .button { display: none; }
  .section-head, .split, .faq-layout, .contact-wrap, .page-hero-grid, .business-grid, .store-focus-card { grid-template-columns: 1fr; gap: 40px; }
  .store-focus-card { gap: 0; }
  .store-focus-media { min-height: 420px; }
  .business-grid-reverse .business-copy, .business-grid-reverse .business-media { order: initial; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { min-height: 610px; padding-right: 0; }
  .hero-media { min-height: 520px; }
  .hero-media img { width: 100%; clip-path: none; }
  .hero-stamp { left: 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:last-child { grid-column: 1 / -1; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 46px 24px; }
  .process-grid::before { display: none; }
  .team-card { grid-template-columns: 170px 1fr; }
  .testimonial-inner { grid-template-columns: 130px 1fr; padding: 60px 48px; }
  .footer-grid { grid-template-columns: 1.3fr repeat(2, .7fr); }
  .footer-col:last-child { grid-column: 1 / -1; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 981px) and (max-width: 1120px) {
  .nav-actions .button { display: none; }
  .desktop-nav { margin-left: auto; gap: 12px; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 72px; }
  .container { width: min(calc(100% - 32px), var(--max)); }
  .section { padding: 78px 0; }
  .section-sm { padding: 58px 0; }
  .announcement { display: none; }
  .nav { height: 68px; }
  .brand img { width: 42px; height: 42px; }
  .brand-copy strong { font-size: 18px; }
  .brand-copy span { display: none; }
  .mobile-menu { top: 68px; }
  .mobile-menu a { font-size: 29px; }
  .section-head { display: block; margin-bottom: 36px; }
  .section-head h2 { font-size: 42px; }
  .section-head p { margin-top: 18px; }
  .hero, .hero-grid { min-height: auto; }
  .hero-copy { min-height: 570px; padding: 64px 0; }
  .hero h1 { font-size: 54px; }
  .hero-copy > p { font-size: 16px; }
  .hero-actions { width: 100%; }
  .hero-actions .button { flex: 1; }
  .hero-media { min-height: 410px; }
  .hero-media::before { width: 86px; height: 86px; }
  .hero-stamp { bottom: 20px; width: 98px; height: 98px; border-width: 6px; font-size: 9px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 22px 12px; border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-last-child(-n+2) { border-bottom: 0; }
  .trust-item:first-child { padding-left: 12px; }
  .services-grid, .team-grid, .explore-grid, .blog-grid, .product-grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; }
  .service-card { min-height: 310px; }
  .service-card::before { margin-bottom: 55px; }
  .store-focus { padding: 16px 0; }
  .store-focus-card { border-radius: 24px; }
  .store-focus-copy { padding: 42px 24px; }
  .store-focus-copy h2 { font-size: 40px; }
  .store-focus-actions { width: 100%; }
  .store-focus-actions .button { width: 100%; }
  .store-focus-media { min-height: 330px; }
  .business-grid { gap: 38px; }
  .business-media, .business-media img { min-height: 360px; }
  .business-copy h2 { font-size: 42px; }
  .split { gap: 48px; }
  .split-media::after { right: -10px; bottom: -14px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { display: grid; grid-template-columns: 54px 1fr; column-gap: 18px; }
  .process-step span { grid-row: 1 / 3; margin: 0; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 430px 260px 260px; }
  .gallery-card:first-child { grid-row: auto; }
  .testimonial-inner { display: block; padding: 46px 28px; }
  .testimonial-mark { margin-bottom: 28px; font-size: 110px; }
  .testimonial blockquote { font-size: 29px; }
  .team-card { grid-template-columns: 1fr; }
  .team-card img { height: 390px; min-height: 0; }
  .explore-card { min-height: 420px; }
  .explore-copy { right: 24px; bottom: 24px; left: 24px; }
  .explore-copy h3 { font-size: 32px; }
  .faq-layout { gap: 30px; }
  .brief-form { grid-template-columns: 1fr; padding: 20px; }
  .brief-form .button, .form-note { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .footer-brand, .footer-col:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .page-hero { padding-top: 56px; }
  .page-hero h1 { font-size: 55px; }
  .page-hero-media, .page-hero-media img { min-height: 360px; }
  .store-toolbar { top: 68px; }
  .toolbar-inner { min-height: 68px; }
  .product-image { height: 320px; }
  .store-benefits { grid-template-columns: 1fr; }
  .store-benefit { border-right: 0; border-bottom: 1px solid var(--line); }
  .store-benefit:last-child { border-bottom: 0; }
  .post-card-featured { grid-column: auto; display: block; }
  .post-card-featured .post-image { min-height: 300px; }
  .post-card-featured .post-copy { padding: 30px; }
  .post-card-featured .post-copy h2 { font-size: 34px; }
  .article-content { padding: 70px 26px 36px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
