@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("assets/fonts/fraunces-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
}

:root {
  --green-900: #004743;
  --green-800: #006d68;
  --green-700: #16817b;
  --green-500: #5ba7a1;
  --green-300: #a9d4d0;
  --green-100: #e5f3f2;
  --cream: #fbf9f5;
  --cream-dark: #f1eee7;
  --coral: #009b94;
  --coral-light: #bfe5e2;
  --amber: #86d2cc;
  --ink: #153b38;
  --muted: #5f7371;
  --white: #fff;
  --shadow: 0 22px 60px rgba(0, 77, 73, .12);
  --radius-lg: 32px;
  --radius-md: 20px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: "DM Sans", sans-serif; line-height: 1.65; }
body.nav-open { overflow: hidden; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Fraunces", serif; line-height: 1.08; letter-spacing: -.03em; }
h1 { margin-bottom: 25px; font-size: clamp(3.25rem, 6vw, 5.75rem); font-weight: 600; }
h1 em { color: var(--coral); font-style: normal; }
h2 { margin-bottom: 22px; font-size: clamp(2.35rem, 4vw, 3.8rem); font-weight: 600; }
h3 { line-height: 1.25; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 16px; transform: translateY(-160%); border-radius: 8px; color: #fff; background: var(--green-900); }
.skip-link:focus { transform: translateY(0); }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px; color: var(--green-700); font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { width: 25px; height: 2px; content: ""; background: var(--coral); }
.eyebrow-light { color: var(--cream); }
.eyebrow-light::before { background: var(--amber); }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 13px 26px; border: 0; border-radius: 999px; color: #fff; background: var(--green-800); box-shadow: 0 10px 28px rgba(0, 77, 73, .18); font-weight: 700; text-decoration: none; cursor: pointer; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); background: var(--green-900); box-shadow: 0 13px 32px rgba(0, 77, 73, .23); }
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
.button-small { min-height: 44px; padding: 10px 21px; }
.button-light { color: var(--green-900); background: var(--cream); }
.button-light:hover { color: var(--green-900); background: #fff; }
.button-full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--green-800); font-weight: 700; text-decoration: none; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.site-header { position: fixed; z-index: 100; top: 0; right: 0; left: 0; border-bottom: 1px solid transparent; transition: background .25s ease, border-color .25s ease, box-shadow .25s ease; }
.site-header.scrolled { border-color: rgba(0, 109, 104, .1); background: rgba(251, 249, 245, .94); box-shadow: 0 8px 25px rgba(0, 77, 73, .06); backdrop-filter: blur(12px); }
.header-inner { display: flex; min-height: 104px; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; color: var(--green-900); text-decoration: none; }
.brand-logo { display: block; width: 185px; height: auto; filter: drop-shadow(0 4px 10px rgba(0, 77, 73, .1)); }
.brand-mark { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; background: var(--green-800); }
.brand-mark svg { width: 29px; fill: none; stroke: var(--cream); stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: "Fraunces", serif; font-size: 1.35rem; letter-spacing: -.02em; }
.brand-text span { margin-top: 5px; font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > a:not(.button) { position: relative; font-size: .93rem; font-weight: 600; text-decoration: none; }
.main-nav > a:not(.button)::after { position: absolute; right: 0; bottom: -7px; left: 0; height: 2px; content: ""; transform: scaleX(0); background: var(--coral); transition: transform .2s ease; }
.main-nav > a:not(.button):hover::after { transform: scaleX(1); }
.nav-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 0; border-radius: 50%; background: var(--green-100); cursor: pointer; }
.nav-toggle > span:not(.sr-only) { display: block; width: 23px; height: 2px; margin: 5px 0; background: var(--green-900); transition: transform .2s ease, opacity .2s ease; }

.hero { position: relative; min-height: 800px; overflow: hidden; padding: 160px 0 52px; background: var(--cream); }
.hero::before { position: absolute; top: -140px; left: -180px; width: 530px; height: 530px; border-radius: 50%; content: ""; background: rgba(229, 243, 242, .8); }
.hero-shape { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-shape-one { top: 130px; right: -110px; width: 350px; height: 350px; border: 1px solid rgba(0, 109, 104, .24); }
.hero-shape-two { top: 180px; right: -60px; width: 220px; height: 220px; border: 1px solid rgba(0, 155, 148, .24); }
.hero-grid { position: relative; display: grid; align-items: center; grid-template-columns: 1.08fr .92fr; gap: 70px; }
.hero-copy { position: relative; z-index: 2; }
.hero-intro { max-width: 650px; margin-bottom: 34px; color: var(--muted); font-size: 1.18rem; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.trust-list { display: flex; gap: 27px; padding: 0; margin: 34px 0 0; list-style: none; color: var(--muted); font-size: .91rem; }
.trust-list span { display: inline-grid; width: 20px; height: 20px; margin-right: 6px; place-items: center; border-radius: 50%; color: var(--green-800); background: var(--green-100); font-size: .72rem; font-weight: 800; }
.hero-visual { position: relative; width: min(100%, 510px); justify-self: end; }
.visual-card { overflow: hidden; border: 11px solid #fff; border-radius: 48% 48% 30px 30px; box-shadow: var(--shadow); }
.visual-main svg { width: 100%; height: auto; }
.floating-note { position: absolute; bottom: 47px; left: -55px; display: flex; align-items: center; gap: 12px; min-width: 230px; padding: 17px 19px; border: 1px solid rgba(0, 109, 104, .07); border-radius: 16px; background: rgba(255, 255, 255, .94); box-shadow: 0 14px 35px rgba(0, 77, 73, .15); backdrop-filter: blur(8px); }
.floating-note .note-icon { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: var(--coral); background: #f9e6df; }
.floating-note span { display: flex; flex-direction: column; }
.floating-note strong { font-size: .88rem; }
.floating-note small { color: var(--muted); }
.location-bar { position: relative; display: flex; max-width: 700px; align-items: center; gap: 15px; padding-top: 44px; }
.location-bar::before { width: 65px; height: 1px; content: ""; background: var(--green-300); }
.location-bar p { margin: 0; font-size: .85rem; line-height: 1.4; }
.location-bar p span { color: var(--muted); }
.location-icon { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: var(--coral); background: #f9e6df; font-weight: 700; }

.services { background: #fff; }
.section-heading { max-width: 700px; margin: 0 auto 58px; text-align: center; }
.section-heading .eyebrow { justify-content: center; }
.section-heading p { color: var(--muted); font-size: 1.05rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { position: relative; min-height: 340px; overflow: hidden; padding: 38px 34px; border: 1px solid #dcecea; border-radius: var(--radius-md); background: #f7fbfa; transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: 0 20px 45px rgba(0, 77, 73, .1); }
.service-card.featured { background: var(--green-800); color: #fff; }
.service-number { position: absolute; top: 22px; right: 25px; color: rgba(0, 109, 104, .18); font-family: "Fraunces", serif; font-size: 3rem; }
.featured .service-number { color: rgba(255, 255, 255, .13); }
.service-icon { display: grid; width: 62px; height: 62px; margin-bottom: 55px; place-items: center; border-radius: 18px; background: var(--green-100); }
.featured .service-icon { background: rgba(255, 255, 255, .12); }
.service-icon svg { width: 35px; fill: none; stroke: var(--green-800); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.featured .service-icon svg { stroke: var(--cream); }
.service-card h3 { margin-bottom: 14px; font-size: 1.35rem; }
.service-card p { margin: 0; color: var(--muted); }
.featured p { color: rgba(255, 255, 255, .74); }
.editorial-note { display: flex; max-width: 680px; align-items: center; gap: 12px; margin: 28px auto 0; color: var(--muted); font-size: .83rem; text-align: center; }
.editorial-note span { display: inline-grid; width: 22px; height: 22px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: var(--green-800); background: var(--green-100); font-size: .72rem; font-weight: 700; }
.service-facts { display: flex; align-items: stretch; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.service-facts span { padding: 10px 14px; border: 1px solid #dcecea; border-radius: 10px; color: var(--muted); background: #f8fbfa; font-size: .78rem; }
.service-facts strong { color: var(--green-900); }
.audience-line { max-width: 800px; margin: 18px auto 0; color: var(--muted); font-size: .84rem; text-align: center; }
.audience-line strong { color: var(--green-900); }

.process { background: var(--green-100); }
.process-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; }
.process-copy { position: sticky; top: 130px; align-self: start; }
.process-copy p { max-width: 470px; margin-bottom: 25px; color: var(--muted); font-size: 1.05rem; }
.steps { padding: 0; margin: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 72px 1fr; gap: 25px; padding: 35px 0; border-bottom: 1px solid rgba(0, 109, 104, .15); }
.steps li:first-child { padding-top: 5px; }
.steps li:last-child { border: 0; }
.step-number { display: grid; width: 60px; height: 60px; place-items: center; border: 1px solid var(--green-300); border-radius: 50%; color: var(--green-800); font-family: "Fraunces", serif; font-size: 1.5rem; }
.steps h3 { margin: 1px 0 7px; font-size: 1.3rem; }
.steps p { margin: 0; color: var(--muted); }

.about { overflow: hidden; background: #fff; }
.about-grid { display: grid; align-items: center; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.portrait-placeholder { position: relative; width: min(100%, 460px); }
.portrait-frame { position: relative; overflow: hidden; border-radius: 220px 220px 25px 25px; box-shadow: var(--shadow); }
.portrait-frame svg { width: 100%; }
.photo-badge { position: absolute; right: 20px; bottom: 20px; padding: 8px 14px; border-radius: 999px; color: var(--muted); background: rgba(255, 255, 255, .9); font-size: .73rem; font-weight: 600; backdrop-filter: blur(8px); }
.portrait-dots { position: absolute; z-index: 0; right: -50px; bottom: -40px; width: 150px; height: 150px; background-image: radial-gradient(var(--coral-light) 2px, transparent 2px); background-size: 15px 15px; }
.about-copy { position: relative; z-index: 1; }
.about-copy .lead { color: var(--green-800); font-family: "Fraunces", serif; font-size: 1.35rem; line-height: 1.45; }
.about-copy > p:not(.lead) { color: var(--muted); }
.about-badges { display: grid; gap: 8px; padding: 0; margin: 24px 0; list-style: none; color: var(--green-900); font-size: .86rem; font-weight: 600; }
.about-badges li { display: flex; align-items: center; gap: 9px; }
.about-badges li span { display: grid; width: 20px; height: 20px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: var(--green-800); background: var(--green-100); font-size: .7rem; }
.about-copy blockquote { padding: 5px 0 5px 24px; margin: 28px 0; border-left: 3px solid var(--coral); color: var(--green-800); font-family: "Fraunces", serif; font-size: 1.1rem; font-style: italic; }
.signature-line { display: flex; flex-direction: column; padding-top: 8px; }
.signature { color: var(--coral); font-family: "Fraunces", serif; font-size: 1.8rem; font-style: italic; }
.signature-line > span:last-child { color: var(--muted); font-size: .8rem; }

.references { background: var(--green-100); }
.reference-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.reference-card { padding: 28px; border: 1px solid rgba(0, 109, 104, .1); border-radius: var(--radius-md); background: #fff; box-shadow: 0 14px 35px rgba(0, 77, 73, .07); }
.reference-card-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 22px; }
.reference-card-heading h3 { margin: 5px 0 0; font-size: 1.25rem; }
.reference-kicker { color: var(--green-700); font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.reference-status { flex: 0 0 auto; padding: 6px 10px; border-radius: 999px; color: var(--green-800); background: var(--green-100); font-size: .68rem; font-weight: 700; }
.before-after { display: grid; overflow: hidden; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid #dcecea; border-radius: 16px; }
.reference-photo { position: relative; display: flex; min-height: 225px; align-items: center; justify-content: center; flex-direction: column; gap: 9px; padding: 42px 18px 22px; color: var(--muted); background-color: #f3f5f2; background-image: linear-gradient(135deg, rgba(0, 109, 104, .035) 25%, transparent 25%), linear-gradient(225deg, rgba(0, 109, 104, .035) 25%, transparent 25%), linear-gradient(45deg, rgba(0, 109, 104, .035) 25%, transparent 25%), linear-gradient(315deg, rgba(0, 109, 104, .035) 25%, #f3f5f2 25%); background-position: 12px 0, 12px 0, 0 0, 0 0; background-size: 24px 24px; font-size: .75rem; text-align: center; }
.reference-photo + .reference-photo { border-left: 1px solid #dcecea; }
.reference-after { background-color: #eaf6f4; background-image: linear-gradient(135deg, rgba(0, 155, 148, .045) 25%, transparent 25%), linear-gradient(225deg, rgba(0, 155, 148, .045) 25%, transparent 25%), linear-gradient(45deg, rgba(0, 155, 148, .045) 25%, transparent 25%), linear-gradient(315deg, rgba(0, 155, 148, .045) 25%, #eaf6f4 25%); }
.photo-label { position: absolute; top: 13px; left: 13px; padding: 5px 9px; border-radius: 7px; color: #fff; background: rgba(21, 59, 56, .78); font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.reference-after .photo-label { background: var(--green-800); }
.photo-placeholder-icon { display: grid; width: 54px; height: 54px; place-items: center; border: 1px dashed var(--green-500); border-radius: 50%; color: var(--green-700); background: rgba(255, 255, 255, .65); font-size: 1.35rem; }
.reference-description { min-height: 48px; margin: 20px 0 0; color: var(--muted); font-size: .82rem; }
.reference-photo.has-image { min-height: 260px; padding: 0; background: #e5eceb; }
.reference-photo.has-image img { width: 100%; height: 260px; object-fit: cover; }
.reference-shower-before img { object-position: center 58%; }
.reference-split-before img { object-position: left center; }
.reference-split-after img { object-position: right center; }
.reference-product { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 18px; margin-top: 18px; border-top: 1px solid #e0ecea; }
.reference-product > div { display: flex; min-width: 0; align-items: center; gap: 11px; }
.reference-product img { width: 52px; height: 52px; flex: 0 0 auto; padding: 4px; border-radius: 10px; background: #f2f8f7; object-fit: contain; }
.reference-product span { display: flex; min-width: 0; flex-direction: column; }
.reference-product small { color: var(--green-700); font-size: .6rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.reference-product strong { color: var(--green-900); font-size: .73rem; line-height: 1.35; }
.reference-product .button { min-height: 40px; flex: 0 0 auto; padding: 9px 14px; font-size: .66rem; }
.privacy-note { display: flex; max-width: 820px; align-items: center; gap: 16px; padding: 18px 22px; margin: 35px auto 0; border: 1px solid rgba(0, 109, 104, .12); border-radius: 14px; background: rgba(255, 255, 255, .66); }
.privacy-note-icon { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: #fff; background: var(--green-800); font-weight: 800; }
.privacy-note p { margin: 0; color: var(--muted); font-size: .82rem; }
.privacy-note strong { color: var(--green-900); }
.testimonial { max-width: 760px; padding: 28px 34px; margin: 24px auto 0; border: 0; border-radius: 16px; color: #fff; background: var(--green-800); text-align: center; }
.testimonial p { margin: 0 0 12px; font-family: "Fraunces", serif; font-size: 1.2rem; line-height: 1.5; }
.testimonial cite { color: rgba(255, 255, 255, .76); font-size: .76rem; font-style: normal; }

.haka { padding-top: 55px; background: #fff; }
.haka-card { position: relative; display: grid; min-height: 470px; overflow: hidden; align-items: center; grid-template-columns: 1.05fr .95fr; padding: 70px 75px; border-radius: var(--radius-lg); color: #fff; background: var(--green-900); }
.haka-card::before { position: absolute; top: -180px; right: 13%; width: 500px; height: 500px; border: 1px solid rgba(255, 255, 255, .08); border-radius: 50%; content: ""; }
.haka-copy { position: relative; z-index: 2; max-width: 570px; }
.haka-copy p { color: rgba(255, 255, 255, .75); }
.haka-status { display: flex; gap: 10px; padding: 13px 15px; border-radius: 12px; background: rgba(255, 255, 255, .08); font-size: .82rem; }
.haka-status span { display: grid; width: 20px; height: 20px; flex: 0 0 auto; place-items: center; border: 1px solid rgba(255, 255, 255, .35); border-radius: 50%; font-size: .7rem; }
.haka-documents { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; margin-top: 20px; }
.haka-documents a { display: grid; min-width: 0; grid-template-columns: auto 1fr; column-gap: 9px; padding: 12px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 12px; color: #fff; background: rgba(255, 255, 255, .06); text-decoration: none; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.haka-documents a:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, .5); background: rgba(255, 255, 255, .11); }
.haka-documents a > span { display: grid; width: 34px; height: 34px; grid-row: 1 / 3; place-items: center; border-radius: 8px; color: var(--green-900); background: var(--cream); font-size: .57rem; font-weight: 800; letter-spacing: .06em; }
.haka-documents strong { overflow: hidden; font-size: .76rem; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.haka-documents small { overflow: hidden; color: rgba(255, 255, 255, .65); font-size: .62rem; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.haka-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.haka-actions .button { gap: 8px; }
.button-outline-light { border: 1px solid rgba(255, 255, 255, .55); color: #fff; background: transparent; box-shadow: none; }
.button-outline-light:hover { border-color: #fff; color: var(--green-900); background: #fff; box-shadow: none; }
.product-illustration { position: relative; height: 320px; }
.bottle { position: absolute; bottom: 5px; display: flex; align-items: center; flex-direction: column; color: var(--green-900); background: var(--cream); box-shadow: 0 24px 50px rgba(0, 0, 0, .18); }
.bottle strong { margin-top: 48%; font-family: "Fraunces", serif; letter-spacing: .04em; }
.bottle small { color: var(--muted); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }
.bottle-tall { left: 19%; width: 105px; height: 250px; border-radius: 18px 18px 25px 25px; }
.bottle-tall span { position: absolute; top: -27px; width: 57px; height: 32px; border-radius: 5px 5px 0 0; background: var(--coral); }
.bottle-pump { z-index: 2; right: 14%; width: 122px; height: 215px; border-radius: 15px 15px 28px 28px; background: #ddefed; }
.bottle-pump > span { position: absolute; top: -39px; width: 49px; height: 42px; border-radius: 5px 5px 0 0; background: var(--green-500); }
.bottle-pump i { position: absolute; top: -57px; left: 54px; width: 55px; height: 20px; border-top: 8px solid var(--green-500); border-right: 8px solid var(--green-500); }
.bottle-box { z-index: 3; right: 36%; width: 115px; height: 155px; border-radius: 7px; background: var(--coral-light); }
.bubble { position: absolute; border: 2px solid rgba(255, 255, 255, .26); border-radius: 50%; }
.bubble-one { top: 3px; right: 18%; width: 46px; height: 46px; }
.bubble-two { top: 65px; left: 25%; width: 27px; height: 27px; }
.bubble-three { top: 22px; left: 48%; width: 19px; height: 19px; }
.haka-price-panel { padding: 38px 44px; margin-top: 24px; border: 1px solid #dcecea; border-radius: var(--radius-md); background: #f7fbfa; }
.haka-price-heading { display: flex; align-items: end; justify-content: space-between; gap: 35px; margin-bottom: 24px; }
.haka-price-heading .eyebrow { margin-bottom: 10px; }
.haka-price-heading h3 { margin: 0; color: var(--green-900); font-family: "Fraunces", serif; font-size: clamp(1.65rem, 3vw, 2.25rem); }
.haka-price-heading > p { max-width: 390px; margin: 0; color: var(--muted); font-size: .83rem; text-align: right; }
.haka-price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.haka-price-card { position: relative; padding: 24px; border: 1px solid #d5e7e5; border-radius: 16px; background: #fff; }
.haka-price-card > div:first-child { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.haka-price-card > div:first-child small { color: var(--muted); font-weight: 700; }
.price-badge { display: inline-flex; padding: 5px 9px; border-radius: 999px; color: var(--green-800); background: var(--green-100); font-size: .65rem; font-weight: 700; }
.haka-price-panel[data-promotion-state="active"] .price-badge { color: #fff; background: var(--green-800); }
.haka-price-card h4 { margin: 20px 0 3px; color: var(--green-900); font-size: 1.08rem; }
.haka-price-card > p { margin-bottom: 17px; color: var(--muted); font-size: .78rem; }
.price-line { display: flex; min-height: 39px; align-items: baseline; gap: 10px; margin-bottom: 15px; }
.price-line strong { color: var(--green-900); font-family: "Fraunces", serif; font-size: 1.75rem; }
.price-line del { color: var(--muted); font-size: .8rem; }
.haka-price-card .text-link { font-size: .78rem; }
.haka-price-footnote { margin: 19px 0 0; color: var(--muted); font-size: .72rem; }

.contact { background: var(--cream); }
.contact-grid { display: grid; align-items: start; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.contact-copy { position: sticky; top: 125px; }
.contact-copy > p { color: var(--muted); }
.contact-options { display: grid; gap: 16px; margin: 38px 0 24px; }
.contact-option { display: flex; align-items: center; gap: 14px; }
.contact-option > span { display: grid; width: 46px; height: 46px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: var(--green-800); background: var(--green-100); }
.contact-option div { display: flex; flex-direction: column; }
.contact-option small { color: var(--muted); }
.contact-option strong { font-size: .93rem; }
.contact-option a { text-decoration: none; }
.availability { display: inline-block; padding: 8px 13px; border-radius: 8px; background: var(--cream-dark); font-size: .78rem; }
.contact-form { padding: 42px; border: 1px solid rgba(0, 109, 104, .08); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label:not(.checkbox-label) { display: block; margin-bottom: 19px; color: var(--green-900); font-size: .86rem; font-weight: 700; }
.contact-form input:not([type="checkbox"]), .contact-form select, .contact-form textarea { width: 100%; margin-top: 7px; border: 1px solid #c9dcda; border-radius: 10px; color: var(--ink); background: #fbfdfd; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input:not([type="checkbox"]), .contact-form select { height: 51px; padding: 0 14px; }
.contact-form textarea { min-height: 130px; padding: 13px 14px; resize: vertical; }
.contact-form input:hover, .contact-form select:hover, .contact-form textarea:hover { border-color: var(--green-500); }
.checkbox-label { display: grid; align-items: start; grid-template-columns: 20px 1fr; gap: 11px; margin: 5px 0 22px; color: var(--muted); font-size: .78rem; }
.checkbox-label input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--green-800); }
.checkbox-label a { color: var(--green-800); font-weight: 700; }
.field-error { display: none; margin-top: 5px; color: #a13c31; font-size: .75rem; font-weight: 500; }
.contact-form .invalid + .field-error, .contact-form label:has(.invalid) > .field-error { display: block; }
.checkbox-error { margin: -15px 0 17px 31px; }
.checkbox-error.visible { display: block; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: .73rem; text-align: center; }
.form-status { display: none; padding: 12px 14px; margin-top: 15px; border-radius: 9px; color: var(--green-900); background: var(--green-100); font-size: .82rem; }
.form-status.visible { display: block; }
.form-status.error { color: #7f2922; background: #fbe9e7; }
.contact-form button:disabled { cursor: wait; opacity: .7; transform: none; }
.product-inquiry-fields { padding: 20px 20px 2px; margin: 0 0 20px; border: 1px solid var(--green-300); border-radius: 14px; background: var(--green-100); }
.product-inquiry-fields legend { padding: 0 7px; color: var(--green-900); font-size: .9rem; font-weight: 700; }
.product-inquiry-fields > p { margin-bottom: 16px; color: var(--muted); font-size: .78rem; }
.product-inquiry-fields a { color: var(--green-800); font-weight: 700; }
.product-inquiry-fields .product-order-note { padding: 11px 12px; border-left: 3px solid var(--green-800); border-radius: 6px; color: var(--green-900); background: #fff; }

.site-footer { color: rgba(255, 255, 255, .8); background: #003c39; }
.footer-main { display: grid; align-items: center; grid-template-columns: .8fr 1.2fr .8fr; gap: 60px; padding-top: 60px; padding-bottom: 45px; }
.brand-footer { padding: 7px 11px; border-radius: 12px; color: #fff; background: var(--cream); }
.brand-footer .brand-logo { width: 185px; opacity: 1; filter: none; }
.brand-footer .brand-mark { background: rgba(255, 255, 255, .1); }
.footer-main > p { max-width: 410px; margin: 0; font-size: .9rem; }
.footer-main nav { display: grid; justify-content: end; grid-template-columns: repeat(2, auto); gap: 8px 26px; }
.footer-main nav a, .footer-bottom a { font-size: .82rem; text-decoration: none; }
.footer-main nav a:hover, .footer-bottom a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 19px; padding-bottom: 20px; border-top: 1px solid rgba(255, 255, 255, .1); }
.footer-bottom p { margin: 0; font-size: .75rem; }
.footer-bottom div { display: flex; gap: 22px; }
.creator-credit { padding: 0 0 18px; color: rgba(255, 255, 255, .68); font-size: .72rem; text-align: right; }
.creator-credit a { color: rgba(255, 255, 255, .72); font-weight: 700; text-decoration: none; }
.creator-credit a:hover { color: #fff; }

/* HAKA product catalog and inquiry cart */
.products-page { overflow-x: hidden; background: #f7fbfa; }
.products-page .site-header:not(.scrolled) .main-nav:not(.open) > a:not(.button) { color: #fff; }
.products-page .site-header:not(.scrolled) .main-nav:not(.open) > a:not(.button)::after { background: #86d2cc; }
.products-page .site-header.scrolled { background: var(--cream); backdrop-filter: none; }
.products-hero { overflow: hidden; padding: 165px 0 85px; color: #fff; background: var(--green-900); }
.products-hero .eyebrow { color: var(--green-300); }
.products-hero h1 { max-width: 850px; margin-bottom: 25px; color: #fff; font-size: clamp(3rem, 6.4vw, 5.6rem); }
.products-hero h1 em { color: #86d2cc; }
.products-hero-grid { display: grid; align-items: center; grid-template-columns: 1.25fr .75fr; gap: 75px; }
.products-hero-grid > * { min-width: 0; }
.products-hero-grid > div > p { max-width: 730px; color: rgba(255, 255, 255, .75); font-size: 1.08rem; }
.products-hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 30px; }
.cart-jump { border: 0; color: #fff; background: transparent; cursor: pointer; }
.cart-jump span { display: inline-grid; min-width: 25px; height: 25px; margin-left: 6px; place-items: center; border-radius: 999px; color: var(--green-900); background: #fff; font-size: .7rem; }
.inquiry-explainer { padding: 28px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 20px; background: rgba(255, 255, 255, .08); }
.inquiry-explainer > strong { display: block; margin-bottom: 8px; color: #fff; font-family: "Fraunces", serif; font-size: 1.25rem; }
.inquiry-explainer p { color: rgba(255, 255, 255, .72); font-size: .83rem; }
.inquiry-explainer ol { padding-left: 21px; margin: 20px 0 0; color: #fff; font-size: .82rem; }
.inquiry-explainer li + li { margin-top: 8px; }
.products-catalog { background: #f7fbfa; }
.catalog-heading { display: flex; align-items: end; justify-content: space-between; gap: 45px; margin-bottom: 30px; }
.catalog-heading h2 { margin: 0; }
.catalog-heading > p { max-width: 420px; margin: 0; padding: 12px 14px; border-radius: 10px; color: var(--green-900); background: var(--green-100); font-size: .78rem; }
.catalog-toolbar { position: sticky; z-index: 5; top: 104px; display: grid; align-items: center; grid-template-columns: minmax(260px, 1fr) 260px auto; gap: 12px; padding: 15px; margin-bottom: 25px; border: 1px solid #d9e9e7; border-radius: 16px; background: #fff; box-shadow: 0 10px 30px rgba(0, 77, 73, .07); }
.catalog-toolbar input, .catalog-toolbar select { width: 100%; height: 48px; padding: 0 14px; border: 1px solid #c9dcda; border-radius: 10px; color: var(--ink); background: #fff; }
.catalog-result-count { color: var(--muted); font-size: .76rem; text-align: right; }
.catalog-layout { display: grid; align-items: start; grid-template-columns: minmax(0, 1fr) 390px; gap: 25px; }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.product-card { display: flex; min-width: 0; overflow: hidden; flex-direction: column; border: 1px solid #d9e9e7; border-radius: 18px; background: #fff; box-shadow: 0 12px 30px rgba(0, 77, 73, .05); }
.product-image-wrap { position: relative; display: grid; min-height: 245px; overflow: hidden; place-items: center; background: linear-gradient(145deg, #f1f8f7, #fff); }
.product-image-wrap img { width: 100%; height: 235px; padding: 18px; object-fit: contain; transition: transform .25s ease; }
.product-card:hover .product-image-wrap img { transform: scale(1.035); }
.product-promo-badge { position: absolute; top: 14px; left: 14px; padding: 6px 10px; border-radius: 999px; color: #fff; background: var(--coral); font-size: .65rem; font-weight: 800; }
.product-card-body { display: flex; flex: 1; flex-direction: column; padding: 21px; }
.product-meta { display: flex; justify-content: space-between; gap: 10px; color: var(--green-700); font-size: .64rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.product-card h3 { margin: 16px 0 3px; font-size: 1.18rem; }
.product-variant { min-height: 36px; margin: 0 0 12px; color: var(--green-700); font-size: .76rem; font-weight: 600; }
.product-description { margin: 0 0 19px; color: var(--muted); font-size: .78rem; }
.product-card-footer { display: flex; align-items: end; justify-content: space-between; gap: 13px; margin-top: auto; }
.product-card-footer .button { padding: 11px 13px; font-size: .7rem; }
.product-price { display: flex; flex-direction: column; }
.product-price strong { color: var(--green-900); font-family: "Fraunces", serif; font-size: 1.45rem; }
.product-price del { color: var(--muted); font-size: .68rem; }
.catalog-empty, .catalog-load-error { padding: 35px; border-radius: 14px; color: var(--muted); background: #fff; text-align: center; }
.inquiry-cart { position: sticky; top: 178px; max-height: calc(100vh - 195px); overflow-y: auto; padding: 25px; border: 1px solid #cfe3e1; border-radius: 20px; background: #fff; box-shadow: 0 20px 45px rgba(0, 77, 73, .1); scrollbar-width: thin; }
.cart-heading { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding-bottom: 18px; border-bottom: 1px solid #e2eeed; }
.cart-heading .eyebrow { margin-bottom: 5px; font-size: .62rem; }
.cart-heading h2 { margin: 0; font-size: 2rem; }
.cart-count { display: grid; min-width: 38px; height: 38px; padding: 0 10px; place-items: center; border-radius: 999px; color: #fff; background: var(--green-800); font-weight: 800; }
.cart-empty { padding: 28px 0; color: var(--muted); text-align: center; }
.cart-empty p { margin-bottom: 4px; color: var(--green-900); font-weight: 700; }
.cart-items { display: grid; }
.cart-item { display: grid; align-items: center; grid-template-columns: 55px 1fr auto; gap: 10px; padding: 16px 0; border-bottom: 1px solid #e2eeed; }
.cart-item img { width: 55px; height: 55px; padding: 5px; border-radius: 8px; background: #f3f8f7; object-fit: contain; }
.cart-item-copy { display: flex; min-width: 0; flex-direction: column; }
.cart-item-copy strong { overflow: hidden; font-size: .78rem; text-overflow: ellipsis; white-space: nowrap; }
.cart-item-copy small, .cart-item-copy span { color: var(--muted); font-size: .62rem; }
.quantity-control { display: flex; align-items: center; gap: 5px; }
.quantity-control button { display: grid; width: 25px; height: 25px; padding: 0; place-items: center; border: 1px solid #c9dcda; border-radius: 6px; color: var(--green-900); background: #fff; cursor: pointer; }
.quantity-control span { min-width: 18px; font-size: .72rem; font-weight: 800; text-align: center; }
.cart-remove { grid-column: 2 / 4; width: max-content; padding: 0; border: 0; color: #8a4d46; background: transparent; cursor: pointer; font-size: .62rem; text-decoration: underline; }
.cart-summary { display: flex; align-items: baseline; justify-content: space-between; gap: 15px; padding: 20px 0 8px; color: var(--green-900); }
.cart-summary span { font-size: .74rem; }
.cart-summary strong { font-family: "Fraunces", serif; font-size: 1.45rem; }
.cart-price-note { padding: 10px; border-radius: 8px; color: var(--muted); background: #f3f8f7; font-size: .64rem; }
.cart-form { padding-top: 13px; border-top: 1px solid #e2eeed; }
.cart-form > label:not(.checkbox-label) { display: block; margin-bottom: 13px; color: var(--green-900); font-size: .74rem; font-weight: 700; }
.cart-form input:not([type="checkbox"]), .cart-form textarea { width: 100%; margin-top: 6px; padding: 10px 11px; border: 1px solid #c9dcda; border-radius: 8px; background: #fbfdfd; }
.cart-form input:not([type="checkbox"]) { height: 43px; }
.cart-form textarea { min-height: 95px; resize: vertical; }
.cart-form .checkbox-label { margin-bottom: 15px; font-size: .68rem; }
.cart-form button:disabled { cursor: not-allowed; opacity: .55; transform: none; }
.product-order-disclaimer { padding: 10px; margin: 10px 0 0; border-left: 3px solid var(--green-800); color: var(--green-900); background: var(--green-100); font-size: .68rem; }
.product-documents { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 25px; margin-top: 25px; border-radius: 16px; color: var(--muted); background: #fff; font-size: .72rem; }
.product-documents p { max-width: 620px; margin: 0; }
.product-documents div { display: flex; align-items: flex-end; flex-direction: column; gap: 5px; }
.product-documents a { color: var(--green-800); font-weight: 700; }

[data-content-placeholder] { border-bottom: 1px dashed currentColor; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-short { transition-delay: .1s; }
.reveal-delay { transition-delay: .2s; }

.legal-page { padding: 145px 0 90px; }
.legal-content { max-width: 820px; padding: 45px; border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow); }
.legal-content h1 { font-size: clamp(2.7rem, 5vw, 4.5rem); }
.legal-content h2 { margin-top: 38px; font-family: "DM Sans", sans-serif; font-size: 1.3rem; letter-spacing: 0; }
.legal-content h3 { margin-top: 25px; font-size: 1rem; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-warning { padding: 16px 18px; border-left: 4px solid var(--coral); border-radius: 6px; background: #e7f5f4; }
.back-link { margin-top: 30px; }

@media (max-width: 980px) {
  .section { padding: 90px 0; }
  .hero-grid { gap: 35px; }
  .hero-visual { max-width: 410px; }
  .service-grid { gap: 14px; }
  .service-card { padding: 30px 25px; }
  .process-grid, .contact-grid { gap: 50px; }
  .about-grid { gap: 55px; }
  .haka-card { padding: 55px 45px; }
  .footer-main { gap: 30px; }
  .products-hero-grid { gap: 40px; }
  .catalog-layout { grid-template-columns: minmax(0, 1fr) 340px; }
  .product-grid { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  .nav-toggle { z-index: 2; display: block; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 26px; transform: translateX(100%); background: var(--cream); transition: transform .3s ease; }
  .main-nav.open { transform: translateX(0); }
  .main-nav > a:not(.button) { font-family: "Fraunces", serif; font-size: 1.8rem; }
  .hero { min-height: auto; padding-top: 135px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 670px; }
  .hero-visual { width: min(75%, 470px); margin-top: 25px; justify-self: center; }
  .service-grid { grid-template-columns: 1fr; }
  .reference-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 280px; }
  .service-icon { margin-bottom: 35px; }
  .process-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .process-copy, .contact-copy { position: static; }
  .portrait-placeholder { width: min(75%, 460px); margin-inline: auto; }
  .about-copy { max-width: 670px; }
  .haka-card { grid-template-columns: 1fr; }
  .haka-documents { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-illustration { width: min(100%, 430px); margin: 10px auto 0; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > p { grid-column: 1 / -1; grid-row: 2; }
  .products-hero-grid { grid-template-columns: 1fr; }
  .catalog-heading { align-items: flex-start; flex-direction: column; gap: 15px; }
  .catalog-toolbar { position: static; grid-template-columns: 1fr 1fr; }
  .catalog-result-count { grid-column: 1 / -1; text-align: left; }
  .catalog-layout { grid-template-columns: 1fr; }
  .inquiry-cart { position: static; max-height: none; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  h1 { font-size: clamp(2.6rem, 12.8vw, 3.5rem); }
  h2 { font-size: clamp(2.15rem, 11vw, 3rem); }
  .header-inner { min-height: 84px; }
  .brand-logo { width: 145px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-text strong { font-size: 1.18rem; }
  .brand-text span { font-size: .58rem; }
  .hero { padding-top: 116px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .trust-list { flex-wrap: wrap; gap: 12px 17px; }
  .hero-visual { width: 89%; }
  .visual-card { border-width: 7px; }
  .floating-note { bottom: 25px; left: -15px; min-width: 205px; padding: 13px 15px; }
  .location-bar::before { display: none; }
  .service-card { min-height: 0; }
  .service-facts { align-items: stretch; flex-direction: column; }
  .service-facts span { width: 100%; }
  .reference-card { padding: 22px 18px; }
  .reference-card-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
  .reference-photo { min-height: 185px; padding-inline: 10px; }
  .reference-photo.has-image, .reference-photo.has-image img { min-height: 210px; height: 210px; }
  .reference-product { align-items: stretch; flex-direction: column; }
  .reference-product .button { width: 100%; }
  .privacy-note { align-items: flex-start; }
  .testimonial { padding: 24px 20px; }
  .steps li { grid-template-columns: 52px 1fr; gap: 17px; }
  .step-number { width: 48px; height: 48px; }
  .portrait-placeholder { width: 90%; }
  .haka { padding-top: 15px; }
  .haka-card { width: calc(100% - 20px); padding: 45px 25px 25px; border-radius: 24px; }
  .haka-documents { grid-template-columns: 1fr; }
  .haka-price-panel { padding: 27px 20px; }
  .haka-price-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
  .haka-price-heading > p { text-align: left; }
  .haka-price-grid { grid-template-columns: 1fr; }
  .product-illustration { height: 275px; transform: scale(.88); transform-origin: bottom center; }
  .contact-form { padding: 27px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main nav { justify-content: start; }
  .footer-main > p { grid-row: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
  .legal-content { padding: 28px 20px; }
  .creator-credit { text-align: left; }
  .products-hero { padding: 125px 0 65px; }
  .products-hero h1 { overflow-wrap: anywhere; font-size: clamp(2.55rem, 11.5vw, 3.2rem); }
  .products-hero-actions { align-items: flex-start; flex-direction: column; }
  .inquiry-explainer { padding: 22px; }
  .catalog-toolbar { grid-template-columns: 1fr; }
  .catalog-result-count { grid-column: auto; }
  .product-grid { grid-template-columns: 1fr; }
  .product-image-wrap { min-height: 220px; }
  .product-image-wrap img { height: 215px; }
  .inquiry-cart { padding: 20px 17px; }
  .product-documents { align-items: flex-start; flex-direction: column; }
  .product-documents div { align-items: flex-start; }
}

@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; }
  .reveal { opacity: 1; transform: none; }
}
