:root {
  --ink: #183b2a;
  --ink-deep: #0e2a1c;
  --cream: #f6f1e7;
  --paper: #fffdf8;
  --sage: #dbe8d6;
  --lime: #c9e265;
  --coral: #e96c4b;
  --muted: #68756d;
  --line: rgba(24, 59, 42, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-deep);
  font-family: var(--font-geist), Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input { font: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.section { padding: 118px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(24, 59, 42, 0.08);
  backdrop-filter: blur(16px);
}
.header-inner { height: 84px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { position: relative; width: 34px; height: 42px; transform: rotate(-7deg); }
.brand-mark::before, .brand-mark::after, .brand-mark span {
  content: "";
  position: absolute;
  width: 15px;
  height: 27px;
  background: var(--ink);
  border-radius: 100% 0 100% 0;
  transform-origin: bottom right;
}
.brand-mark::before { left: 2px; top: 3px; transform: rotate(-26deg); }
.brand-mark::after { right: 1px; top: 2px; transform: scaleX(-1) rotate(-25deg); }
.brand-mark span { left: 11px; bottom: 0; height: 23px; transform: rotate(17deg) scale(.76); }
.brand-copy { display: flex; flex-direction: column; line-height: .82; letter-spacing: .08em; }
.brand-copy strong { font-family: Georgia, serif; font-size: 25px; letter-spacing: .04em; }
.brand-copy small { margin-top: 7px; font-size: 8px; font-weight: 800; letter-spacing: .42em; }
.desktop-nav { display: flex; align-items: center; gap: 36px; font-size: 14px; font-weight: 600; }
.desktop-nav a { position: relative; padding: 12px 0; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 5px; height: 1px; background: var(--ink); transition: .25s ease; }
.desktop-nav a:hover::after { right: 0; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 2px;
  background: var(--ink);
  color: white;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { background: #23543c; transform: translateY(-2px); }
.button span { font-size: 18px; }
.button-small { min-height: 43px; padding: 0 18px; font-size: 13px; }
.mobile-menu { display: none; position: relative; }

.hero { position: relative; overflow: hidden; background: var(--cream); border-bottom: 1px solid var(--line); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .13; background-image: radial-gradient(#183b2a 0.55px, transparent 0.55px); background-size: 10px 10px; pointer-events: none; }
.hero-grid { min-height: 706px; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 72px; padding-top: 42px; padding-bottom: 52px; }
.hero-copy { position: relative; z-index: 2; padding: 25px 0; }
.eyebrow { display: flex; align-items: center; gap: 11px; color: var(--ink); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow > span { width: 30px; height: 2px; background: var(--coral); }
h1, h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.045em; line-height: .98; }
h1 { max-width: 650px; margin-top: 26px; font-size: clamp(55px, 5.35vw, 80px); }
h1 em, h2 em { color: var(--coral); font-weight: 400; }
.hero-description { max-width: 550px; margin: 28px 0 0; color: #536158; font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 35px; }
.text-link { display: inline-flex; gap: 10px; align-items: center; border-bottom: 1px solid var(--ink); padding: 9px 0 7px; font-size: 14px; font-weight: 700; }
.text-link span { font-size: 18px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 570px; margin-top: 51px; border-top: 1px solid var(--line); padding-top: 24px; }
.hero-proof div { display: flex; flex-direction: column; padding-right: 18px; }
.hero-proof div + div { border-left: 1px solid var(--line); padding-left: 22px; }
.hero-proof strong { font-family: Georgia, serif; font-size: 17px; }
.hero-proof span { margin-top: 5px; color: var(--muted); font-size: 11px; }
.hero-visual { position: relative; min-height: 595px; }
.hero-shape { position: absolute; border-radius: 50% 48% 45% 55%; }
.hero-shape-one { width: 500px; height: 500px; right: -30px; top: 36px; background: var(--sage); transform: rotate(13deg); }
.hero-shape-two { width: 340px; height: 340px; left: -9px; bottom: 9px; border: 1px solid rgba(24, 59, 42, .22); transform: rotate(-19deg); }
.hero-image { position: absolute; overflow: hidden; margin: 0; background: white; box-shadow: 0 25px 70px rgba(18, 47, 32, .16); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-main { width: 65%; height: 510px; right: 7%; top: 16px; border-radius: 49% 49% 8px 8px; }
.hero-image-main img { object-position: center 43%; }
.hero-image-small { width: 42%; height: 234px; left: 0; bottom: 17px; border: 9px solid var(--paper); }
.hero-image-small img { object-position: 64% center; }
.availability-card { position: absolute; right: -12px; bottom: 42px; display: flex; gap: 11px; align-items: center; width: 195px; padding: 16px 18px; background: white; box-shadow: 0 12px 40px rgba(24, 59, 42, .14); }
.availability-card div { display: flex; flex-direction: column; }
.availability-card strong { font-size: 13px; }
.availability-card small { margin-top: 4px; color: var(--muted); font-size: 10px; }
.pulse { width: 10px; height: 10px; border-radius: 50%; background: #5aa568; box-shadow: 0 0 0 5px rgba(90,165,104,.15); }
.stamp { position: absolute; top: 33px; left: -28px; display: flex; width: 94px; height: 94px; align-items: center; justify-content: center; border: 1px solid var(--ink); border-radius: 50%; color: var(--ink); text-align: center; font-size: 9px; line-height: 1.45; letter-spacing: .12em; transform: rotate(-10deg); }
.stamp b { font-family: Georgia, serif; font-size: 10px; }

.trust-strip { background: var(--ink); color: white; }
.trust-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.trust-inner > span { opacity: .58; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.trust-inner div { display: flex; align-items: center; gap: 11px; font-family: Georgia, serif; font-size: 14px; }
.trust-inner b { color: var(--lime); font-size: 8px; }

.products-section { background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1fr 390px; align-items: end; gap: 80px; margin-bottom: 54px; }
h2 { margin-top: 19px; font-size: clamp(43px, 4.4vw, 64px); }
.section-heading > p, .center-heading > p { color: var(--muted); font-size: 15px; line-height: 1.75; }
.section-heading > p { margin: 0 0 5px; }
.category-row { display: flex; gap: 10px; margin-bottom: 27px; overflow-x: auto; padding-bottom: 4px; }
.category { white-space: nowrap; padding: 10px 14px; border: 1px solid var(--line); color: #647168; font-size: 12px; }
.category.active { background: var(--ink); color: white; border-color: var(--ink); }
.category small { margin-left: 5px; color: var(--coral); font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.product-card { border: 1px solid var(--line); background: white; transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 20px 55px rgba(24,59,42,.09); }
.product-image-wrap { position: relative; height: 370px; overflow: hidden; background: #eef1eb; }
.product-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 68%, rgba(10,30,20,.15)); pointer-events: none; }
.product-image-wrap img { height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-image-wrap img { transform: scale(1.025); }
.product-card:nth-child(2) img { object-position: center 48%; }
.product-card:nth-child(3) img { object-position: center 70%; }
.product-badge { position: absolute; z-index: 2; top: 18px; left: 18px; padding: 9px 12px; background: var(--ink); color: white; font-size: 12px; font-weight: 800; }
.product-badge.coral { background: var(--coral); }
.product-number { position: absolute; z-index: 2; right: 20px; bottom: 15px; color: white; font-family: Georgia, serif; font-size: 19px; }
.product-info { padding: 27px 28px 25px; }
.product-info > div:first-child { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.product-info p { margin: 0; }
.product-info > div:first-child p { color: var(--coral); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.product-info h3 { margin: 5px 0 0; font-family: Georgia, serif; font-size: 25px; font-weight: 400; }
.product-description { min-height: 49px; margin-top: 17px !important; max-width: 470px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.product-footer { display: flex; justify-content: space-between; align-items: center; gap: 15px; margin-top: 23px; border-top: 1px solid var(--line); padding-top: 18px; }
.product-footer > span { color: var(--muted); font-size: 10px; }
.product-footer a { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-size: 12px; font-weight: 800; }
.product-footer a span { font-size: 16px; }

.why-section { background: var(--ink-deep); color: white; }
.why-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 90px; align-items: center; }
.why-image { position: relative; height: 650px; }
.why-image::before { content: ""; position: absolute; width: 85%; height: 88%; left: -18px; top: -18px; border: 1px solid rgba(201,226,101,.4); }
.why-image img { position: relative; height: 100%; object-fit: cover; object-position: center; filter: saturate(.78); }
.image-caption { position: absolute; right: -26px; bottom: 27px; display: flex; flex-direction: column; width: 235px; padding: 22px; background: var(--lime); color: var(--ink-deep); }
.image-caption span { font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.image-caption strong { margin-top: 7px; font-family: Georgia, serif; font-size: 17px; font-weight: 400; line-height: 1.3; }
.eyebrow.light { color: white; }
.why-copy h2 { max-width: 620px; }
.why-copy > p { max-width: 620px; margin: 28px 0 0; color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.8; }
.benefit-list { margin-top: 40px; border-top: 1px solid rgba(255,255,255,.15); }
.benefit-list > div { display: grid; grid-template-columns: 45px 1fr; gap: 16px; padding: 23px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.benefit-list > div > span { color: var(--lime); font-family: Georgia, serif; font-size: 15px; }
.benefit-list strong { font-family: Georgia, serif; font-size: 19px; font-weight: 400; }
.benefit-list p { margin: 7px 0 0; color: rgba(255,255,255,.54); font-size: 12px; line-height: 1.55; }

.process-section { background: var(--cream); }
.center-heading { max-width: 650px; margin: 0 auto 70px; text-align: center; }
.center-heading .eyebrow { justify-content: center; }
.center-heading > p { max-width: 560px; margin: 23px auto 0; }
.process-grid { display: grid; grid-template-columns: 1fr 65px 1fr 65px 1fr; align-items: center; }
.process-grid article { position: relative; min-height: 275px; padding: 30px; background: var(--paper); border: 1px solid var(--line); }
.step-number { position: absolute; top: 20px; right: 22px; color: rgba(24,59,42,.3); font-family: Georgia, serif; font-size: 13px; }
.step-icon { display: grid; width: 50px; height: 50px; place-items: center; border-radius: 50%; background: var(--sage); color: var(--ink); font-family: Georgia, serif; font-size: 23px; }
.process-grid article:nth-of-type(2) .step-icon { background: #f4d7cd; }
.process-grid article:nth-of-type(3) .step-icon { background: var(--lime); }
.process-grid h3 { margin: 37px 0 10px; font-family: Georgia, serif; font-size: 22px; font-weight: 400; }
.process-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.step-line { height: 1px; background: repeating-linear-gradient(90deg, rgba(24,59,42,.35) 0 4px, transparent 4px 9px); }

.future-section { padding: 94px 0; background: var(--coral); color: white; overflow: hidden; }
.future-inner { display: grid; grid-template-columns: 1fr 400px; gap: 65px; align-items: end; }
.future-inner > p { margin: 0 0 5px; color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.75; }
.future-tags { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 9px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.35); }
.future-tags span { padding: 10px 15px; border: 1px solid rgba(255,255,255,.45); font-size: 11px; text-transform: uppercase; letter-spacing: .09em; }

.contact-section { padding: 110px 0; background: var(--paper); }
.contact-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr 290px; gap: 70px; align-items: center; min-height: 405px; padding: 70px 76px; background: var(--lime); }
.contact-copy { position: relative; z-index: 2; }
.contact-copy p { max-width: 580px; margin: 25px 0 0; color: rgba(14,42,28,.7); font-size: 14px; line-height: 1.7; }
.contact-action { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: stretch; }
.button-dark { background: var(--ink-deep); }
.contact-phone { margin-top: 19px; font-family: Georgia, serif; font-size: 22px; text-align: center; }
.contact-email { margin-top: 7px; font-size: 12px; text-align: center; }
.contact-decoration span { position: absolute; border: 1px solid rgba(14,42,28,.18); border-radius: 50%; }
.contact-decoration span:nth-child(1) { width: 460px; height: 460px; right: -230px; top: -170px; }
.contact-decoration span:nth-child(2) { width: 350px; height: 350px; right: -140px; top: -110px; }
.contact-decoration span:nth-child(3) { width: 260px; height: 260px; left: -180px; bottom: -145px; }

footer { background: var(--ink-deep); color: white; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding-top: 70px; padding-bottom: 55px; }
.footer-brand .brand-mark::before, .footer-brand .brand-mark::after, .footer-brand .brand-mark span { background: white; }
.footer-brand p { max-width: 340px; margin: 25px 0 0; color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: 1fr 1.5fr; gap: 45px; }
.footer-links div { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-links strong { margin-bottom: 7px; color: var(--lime); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.footer-links a { color: rgba(255,255,255,.68); font-size: 12px; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); padding-top: 21px; padding-bottom: 23px; color: rgba(255,255,255,.4); font-size: 10px; }
.floating-whatsapp { position: fixed; z-index: 45; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 9px; padding: 13px 17px; border-radius: 100px; background: #2e9f55; color: white; box-shadow: 0 12px 35px rgba(18,47,32,.24); font-size: 12px; }
.floating-whatsapp > span { font-size: 19px; transform: rotate(-20deg); }

@media (max-width: 980px) {
  .container { width: min(100% - 36px, 760px); }
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu { display: block; }
  .mobile-menu summary { display: grid; gap: 6px; width: 40px; height: 40px; padding: 12px 8px; cursor: pointer; list-style: none; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { display: block; height: 2px; background: var(--ink); }
  .mobile-menu nav { position: absolute; right: 0; top: 52px; width: 230px; display: flex; flex-direction: column; padding: 14px; background: var(--paper); border: 1px solid var(--line); box-shadow: 0 20px 50px rgba(24,59,42,.15); }
  .mobile-menu nav a { padding: 12px; font-size: 14px; font-weight: 700; }
  .hero-grid { min-height: 0; grid-template-columns: 1fr; gap: 20px; padding-top: 70px; padding-bottom: 60px; }
  .hero-copy { padding: 0; }
  .hero-description { max-width: 620px; }
  .hero-visual { width: min(100%, 620px); min-height: 590px; margin: 15px auto 0; }
  .hero-image-main { right: 4%; }
  .hero-proof { max-width: 620px; }
  .trust-inner { flex-wrap: wrap; justify-content: center; min-height: 110px; padding: 20px 0; }
  .trust-inner > span { flex-basis: 100%; text-align: center; }
  .section { padding: 90px 0; }
  .section-heading, .future-inner { grid-template-columns: 1fr; gap: 25px; }
  .section-heading > p, .future-inner > p { max-width: 620px; }
  .why-grid { grid-template-columns: 1fr; gap: 70px; }
  .why-image { width: min(100% - 28px, 570px); height: 590px; margin: 0 auto; }
  .process-grid { grid-template-columns: 1fr; gap: 14px; max-width: 620px; margin: 0 auto; }
  .step-line { width: 1px; height: 22px; margin: -14px auto; background: repeating-linear-gradient(180deg, rgba(24,59,42,.35) 0 4px, transparent 4px 9px); }
  .process-grid article { min-height: 245px; }
  .future-tags { grid-column: auto; }
  .contact-card { grid-template-columns: 1fr; padding: 60px; gap: 40px; }
  .contact-action { max-width: 320px; }
}

@media (max-width: 640px) {
  .container { width: calc(100% - 30px); }
  .header-inner { height: 72px; }
  .brand-copy strong { font-size: 22px; }
  .brand-mark { transform: scale(.86) rotate(-7deg); }
  .hero-grid { padding-top: 52px; }
  h1 { font-size: 49px; }
  h2 { font-size: 41px; }
  .hero-description { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-proof { gap: 0; }
  .hero-proof strong { font-size: 14px; }
  .hero-proof span { font-size: 9px; }
  .hero-proof div { padding-right: 10px; }
  .hero-proof div + div { padding-left: 11px; }
  .hero-visual { min-height: 450px; }
  .hero-shape-one { width: 340px; height: 340px; }
  .hero-image-main { height: 405px; width: 72%; }
  .hero-image-small { width: 45%; height: 174px; }
  .availability-card { right: -4px; bottom: 20px; width: 172px; padding: 13px; }
  .stamp { display: none; }
  .trust-inner { gap: 16px 24px; padding: 24px 0; }
  .trust-inner div { font-size: 11px; }
  .trust-inner div:nth-of-type(4) { display: none; }
  .section { padding: 74px 0; }
  .section-heading { margin-bottom: 38px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-image-wrap { height: 315px; }
  .product-info { padding: 23px 21px; }
  .why-image { height: 460px; }
  .image-caption { right: -12px; width: 205px; }
  .why-grid { gap: 60px; }
  .benefit-list > div { grid-template-columns: 35px 1fr; }
  .center-heading { margin-bottom: 45px; }
  .process-grid article { min-height: 225px; padding: 25px; }
  .process-grid h3 { margin-top: 29px; }
  .future-section { padding: 72px 0; }
  .contact-section { padding: 60px 0; }
  .contact-card { width: 100%; padding: 52px 24px; }
  .contact-action { width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 45px; padding-top: 55px; }
  .footer-links { gap: 25px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
  .floating-whatsapp b { display: none; }
  .floating-whatsapp { width: 49px; height: 49px; justify-content: center; padding: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

.brand-mark.brand-image {
  width: 44px;
  height: 44px;
  overflow: visible;
  background: transparent;
  transform: none;
  flex: 0 0 44px;
}
.brand-mark.brand-image::before,
.brand-mark.brand-image::after,
.brand-mark.brand-image span { display: none; }
.brand-mark.brand-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.footer-brand .brand-mark.brand-image { background: transparent; }
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 38px;
  padding: 4px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, .7);
  color: var(--muted);
}
.language-switch button {
  width: 36px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}
.language-switch button[aria-pressed="true"] {
  background: var(--ink);
  color: #fff;
}
.language-switch > span { opacity: .35; font-size: 10px; }
@media (max-width: 1100px) {
  .desktop-nav { gap: 22px; }
}
@media (max-width: 980px) {
  .header-inner { gap: 13px; }
  .language-switch { margin-left: auto; }
}
@media (max-width: 640px) {
  .brand-mark.brand-image { width: 39px; height: 39px; flex-basis: 39px; transform: none; }
  .language-switch { min-height: 34px; }
  .language-switch button { width: 30px; height: 26px; font-size: 10px; }
}
@media (max-width: 390px) {
  .brand-copy { display: none; }
}

.specification-section {
  padding: 118px 0;
  background: #eef2eb;
  border-top: 1px solid var(--line);
}
.specification-heading {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: end;
  gap: 70px;
  margin-bottom: 48px;
}
.specification-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.specification-summary {
  display: grid;
  grid-template-columns: 1.25fr .8fr 1fr;
  margin-bottom: 24px;
  border: 1px solid var(--ink);
  background: var(--paper);
}
.specification-summary > div {
  display: flex;
  min-height: 102px;
  flex-direction: column;
  justify-content: center;
  padding: 22px 28px;
}
.specification-summary > div + div { border-left: 1px solid var(--ink); }
.specification-summary span {
  color: var(--coral);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.specification-summary strong {
  margin-top: 8px;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 400;
}
.specification-summary small { margin-top: 4px; color: var(--muted); font-size: 11px; }
.specification-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--ink);
  background: var(--paper);
  -webkit-overflow-scrolling: touch;
}
.specification-table-wrap:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }
.specification-table { width: 100%; min-width: 800px; border-collapse: collapse; font-size: 13px; }
.specification-table th,
.specification-table td { padding: 15px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; }
.specification-table th:last-child,
.specification-table td:last-child { border-right: 0; }
.specification-table tbody tr:last-child td { border-bottom: 0; }
.specification-table th {
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.specification-table th:first-child,
.specification-table td:first-child { width: 66px; text-align: center; font-family: Georgia, serif; }
.specification-table th:nth-child(2) { width: 29%; }
.specification-table th:nth-child(3) { width: 23%; }
.specification-table tbody tr:nth-child(even) { background: rgba(219, 232, 214, .26); }
.specification-table tbody tr:hover { background: rgba(201, 226, 101, .22); }
.specification-table td:nth-child(2) { font-weight: 650; }
.table-swipe-hint { display: none; margin: 10px 0 0; color: var(--muted); font-size: 10px; text-align: center; }
@media (max-width: 980px) {
  .specification-section { padding: 90px 0; }
  .specification-heading { grid-template-columns: 1fr; gap: 24px; }
  .specification-heading > p { max-width: 620px; }
}
@media (max-width: 640px) {
  .specification-section { padding: 74px 0; }
  .specification-heading { margin-bottom: 36px; }
  .specification-summary { grid-template-columns: 1fr; }
  .specification-summary > div { min-height: 86px; padding: 18px 21px; }
  .specification-summary > div + div { border-left: 0; border-top: 1px solid var(--ink); }
  .specification-summary strong { font-size: 19px; }
  .specification-table th, .specification-table td { padding: 13px 14px; }
  .table-swipe-hint { display: block; }
}

.specification-premium {
  position: relative;
  overflow: hidden;
  padding: 108px 0 118px;
  background: #f3f0e7;
}
.specification-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: radial-gradient(#183b2a .55px, transparent .55px);
  background-size: 11px 11px;
  pointer-events: none;
}
.specification-premium > .container { position: relative; z-index: 1; }
.spec-document-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(24, 59, 42, .22);
  padding-bottom: 13px;
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
}
.spec-document-bar span:last-child { color: var(--coral); }
.specification-layout {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}
.specification-sidebar {
  position: sticky;
  top: 106px;
  overflow: hidden;
  padding: 39px 34px 34px;
  background: var(--ink-deep);
  color: #fff;
}
.specification-sidebar::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -130px;
  top: -120px;
  border: 1px solid rgba(201, 226, 101, .22);
  border-radius: 50%;
}
.specification-sidebar h2 {
  position: relative;
  z-index: 1;
  margin-top: 21px;
  font-size: 40px;
  line-height: 1.04;
}
.specification-sidebar h2 em { color: var(--lime); }
.specification-sidebar > p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  line-height: 1.75;
}
.spec-product-card { margin-top: 30px; border: 1px solid rgba(255, 255, 255, .16); }
.spec-product-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 61px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.spec-product-row > span,
.spec-packaging > span {
  color: rgba(255, 255, 255, .48);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.spec-product-row strong { font-family: Georgia, serif; font-size: 14px; font-weight: 400; }
.spec-packaging { padding: 17px 16px 16px; }
.spec-packaging > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 11px; }
.spec-packaging b {
  display: flex;
  min-height: 48px;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  border: 1px solid rgba(201, 226, 101, .32);
  background: rgba(201, 226, 101, .07);
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 48px;
}
.spec-packaging b small { font-family: var(--font-geist), Arial, sans-serif; font-size: 8px; font-weight: 700; }
.specification-cta {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 0 17px;
  background: var(--lime);
  color: var(--ink-deep);
  font-size: 11px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}
.specification-cta:hover { transform: translateY(-2px); background: #d8eb8b; }
.specification-cta span { font-size: 17px; }
.specification-data-panel {
  overflow: hidden;
  border: 1px solid rgba(24, 59, 42, .18);
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(24, 59, 42, .09);
}
.specification-data-heading {
  display: flex;
  min-height: 111px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 26px 30px;
  border-bottom: 1px solid var(--line);
}
.spec-mini-label {
  color: var(--coral);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.specification-data-heading h3 {
  margin: 7px 0 0;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 400;
}
.spec-count {
  padding: 9px 12px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.specification-premium .specification-table-wrap { border: 0; }
.specification-premium .specification-table { min-width: 760px; font-size: 12px; }
.specification-premium .specification-table th,
.specification-premium .specification-table td { padding: 14px 16px; }
.specification-premium .specification-table th {
  background: #e4eadf;
  color: var(--ink);
  border-color: rgba(24, 59, 42, .12);
  font-size: 8px;
  letter-spacing: .15em;
}
.specification-premium .specification-table th:first-child,
.specification-premium .specification-table td:first-child { width: 62px; }
.specification-premium .specification-table th:nth-child(2) { width: 29%; }
.specification-premium .specification-table th:nth-child(3) { width: 23%; }
.specification-premium .specification-table tbody tr { background: #fff; transition: background .15s ease; }
.specification-premium .specification-table tbody tr:nth-child(even) { background: #fbfaf5; }
.specification-premium .specification-table tbody tr:hover { background: #f0f5df; }
.specification-premium .specification-table td:first-child span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-geist), Arial, sans-serif;
  font-size: 8px;
  font-weight: 800;
}
.specification-premium .specification-table td:nth-child(2) { font-weight: 700; }
.specification-premium .specification-table td:nth-child(3) strong {
  display: inline-block;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}
.specification-premium .specification-table td:nth-child(4) { color: var(--muted); }
.specification-footnote {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin: 0 30px 26px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.specification-footnote > span {
  display: grid;
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 11px;
}
.specification-footnote p { margin: 1px 0 0; color: var(--muted); font-size: 10px; line-height: 1.6; }
.specification-premium .table-swipe-hint { margin-bottom: 18px; }
@media (max-width: 980px) {
  .specification-premium { padding: 88px 0; }
  .specification-layout { grid-template-columns: 1fr; }
  .specification-sidebar { position: relative; top: auto; }
  .specification-sidebar h2 { max-width: 570px; }
  .spec-product-card { display: grid; grid-template-columns: 1fr 1fr 1fr 1.5fr; }
  .spec-product-row { display: flex; min-height: 92px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 7px; border-right: 1px solid rgba(255,255,255,.12); border-bottom: 0; }
  .spec-packaging { display: flex; min-height: 92px; flex-direction: column; justify-content: center; }
  .spec-packaging > div { width: 100%; margin-top: 8px; }
  .spec-packaging b { min-height: 38px; line-height: 38px; }
}
@media (max-width: 640px) {
  .specification-premium { padding: 70px 0; }
  .spec-document-bar { font-size: 7px; letter-spacing: .12em; }
  .specification-sidebar { padding: 32px 22px 24px; }
  .specification-sidebar h2 { font-size: 35px; }
  .spec-product-card { display: block; }
  .spec-product-row { display: grid; min-height: 59px; grid-template-columns: 88px 1fr; align-items: center; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .spec-packaging { min-height: 0; }
  .specification-data-heading { min-height: 94px; padding: 22px 20px; }
  .specification-data-heading h3 { font-size: 25px; }
  .spec-count { max-width: 95px; text-align: center; line-height: 1.4; }
  .specification-premium .specification-table th,
  .specification-premium .specification-table td { padding: 12px 13px; }
  .specification-footnote { margin: 0 20px 19px; }
}
