:root {
    --ink: #173f35;
    --ink-dark: #102d26;
    --ink-soft: #2d5a4e;
    --cream: #f7f2e9;
    --cream-light: #fcfaf6;
    --gold: #b48a4a;
    --gold-light: #d8bc88;
    --text: #24433b;
    --muted: #6d7b76;
    --line: #ded6c9;
    --white: #ffffff;
    --success: #176a38;
    --danger: #a33a2e;
    --shadow: 0 24px 70px rgba(23, 63, 53, .12);
    --radius: 4px;
    --container: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--cream-light);
    font-family: Inter, Avenir, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select {
    font-family: Inter, Avenir, "Segoe UI", Arial, sans-serif;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--ink);
    letter-spacing: -.035em;
}

h1 {
    margin-bottom: 24px;
    font-size: clamp(44px, 5.4vw, 78px);
    line-height: 1.02;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
}

h3 {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.2;
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    line-height: 1.4;
}

.button,
button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: var(--radius);
    padding: 14px 24px;
    background: var(--ink);
    color: var(--white);
    font-weight: 750;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover,
button:hover {
    transform: translateY(-2px);
    background: var(--ink-soft);
    box-shadow: 0 12px 24px rgba(23, 63, 53, .16);
}

.button-gold {
    background: var(--gold);
    color: var(--ink-dark);
}

.button-gold:hover {
    background: var(--gold-light);
}

.text-link {
    display: inline-flex;
    align-items: center;
    border-bottom: 1px solid currentColor;
    padding-bottom: 3px;
    color: var(--ink);
    font-weight: 750;
}

.text-link.light {
    color: var(--cream);
}

.text-link.centered {
    margin: 34px auto 0;
}

.page,
.checkout {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
    padding: 80px 0;
}

.site-header {
    position: sticky;
    z-index: 30;
    top: 0;
    display: grid;
    min-height: 82px;
    grid-template-columns: 220px 1fr 220px;
    align-items: center;
    border-bottom: 1px solid rgba(23, 63, 53, .12);
    padding: 0 max(28px, calc((100vw - var(--container)) / 2));
    background: rgba(252, 250, 246, .94);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    width: max-content;
    flex-direction: column;
    color: var(--ink);
    line-height: 1;
}

.brand span {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: .24em;
}

.brand small {
    margin-top: 7px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .26em;
}

.site-header nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 14px;
    font-weight: 650;
}

.site-header nav a {
    position: relative;
    padding: 28px 0;
}

.site-header nav a::after {
    position: absolute;
    right: 0;
    bottom: 19px;
    left: 0;
    height: 1px;
    background: var(--gold);
    content: "";
    opacity: 0;
    transform: scaleX(.4);
    transition: .2s ease;
}

.site-header nav a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.cart {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-self: end;
    border: 1px solid var(--ink);
    border-radius: 24px;
    padding: 7px 8px 7px 17px;
    font-size: 14px;
    font-weight: 700;
}

.cart b {
    display: grid;
    width: 27px;
    height: 27px;
    margin-left: 9px;
    place-items: center;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    font-size: 12px;
}

.hero {
    position: relative;
    display: grid;
    min-height: 720px;
    grid-template-columns: 1.06fr .94fr;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 84% 16%, rgba(180, 138, 74, .18), transparent 26%),
        linear-gradient(120deg, #f1e9dc 0%, #fbf8f2 58%, #eee1ce 100%);
}

.hero::before {
    position: absolute;
    top: 8%;
    right: -7%;
    width: 570px;
    height: 570px;
    border: 1px solid rgba(180, 138, 74, .28);
    border-radius: 50%;
    content: "";
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 710px;
    margin-left: max(28px, calc((100vw - var(--container)) / 2));
    padding: 74px 64px 74px 0;
}

.hero-lead {
    max-width: 650px;
    margin-bottom: 28px;
    color: #51645e;
    font-size: 19px;
}

.hero-price {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 28px;
}

.hero-price small,
.featured-price small,
.price-block small {
    color: var(--gold);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .15em;
}

.hero-price strong {
    color: var(--ink);
    font-family: Georgia, serif;
    font-size: 35px;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.hero-assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-top: 30px;
    color: var(--muted);
    font-size: 13px;
}

.hero-visual {
    position: relative;
    display: grid;
    height: 100%;
    min-height: 720px;
    place-items: center;
    overflow: hidden;
}

.hero-visual::after {
    position: absolute;
    right: 13%;
    bottom: 8%;
    left: 13%;
    height: 40px;
    border-radius: 50%;
    background: rgba(23, 63, 53, .12);
    content: "";
    filter: blur(18px);
}

.product-photo {
    display: block;
}

.hero-picture {
    position: relative;
    z-index: 2;
    width: min(68%, 500px);
    height: 590px;
}

.hero-picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 30px 24px rgba(23, 63, 53, .14));
}

.hero-stamp {
    position: absolute;
    z-index: 4;
    top: 17%;
    right: 12%;
    display: grid;
    width: 104px;
    height: 104px;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    background: rgba(252, 250, 246, .9);
    color: var(--ink);
    font-family: Georgia, serif;
    font-size: 30px;
    line-height: .8;
    text-align: center;
}

.hero-stamp small {
    display: block;
    margin-top: -14px;
    font-family: Inter, Arial, sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
}

.hero-caption {
    position: absolute;
    z-index: 5;
    right: 10%;
    bottom: 13%;
    display: flex;
    min-width: 190px;
    flex-direction: column;
    border-left: 2px solid var(--gold);
    padding: 12px 16px;
    background: rgba(252, 250, 246, .86);
}

.hero-caption small {
    color: var(--gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .17em;
}

.hero-caption b {
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 500;
}

.promise {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 27px max(28px, calc((100vw - var(--container)) / 2));
    background: var(--ink);
    color: var(--white);
}

.promise article {
    display: flex;
    align-items: center;
    gap: 18px;
    border-right: 1px solid rgba(255, 255, 255, .16);
    padding: 0 38px;
}

.promise article:first-child {
    padding-left: 0;
}

.promise article:last-child {
    border-right: 0;
}

.promise article > span {
    color: var(--gold-light);
    font-family: Georgia, serif;
    font-size: 24px;
}

.promise b,
.promise small {
    display: block;
}

.promise b {
    font-size: 15px;
}

.promise small {
    margin-top: 2px;
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 46px;
}

.section-heading.narrow {
    max-width: 850px;
}

.section-heading > p:last-child {
    color: var(--muted);
    font-size: 17px;
}

.ritual-section,
.how-to-section,
.locations-section {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
    padding: 110px 0;
}

.ritual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
}

.ritual-grid article {
    min-height: 250px;
    border-right: 1px solid var(--line);
    padding: 38px 42px 30px 0;
}

.ritual-grid article + article {
    padding-left: 42px;
}

.ritual-grid article:last-child {
    border-right: 0;
}

.ritual-icon {
    display: block;
    margin-bottom: 45px;
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 25px;
}

.ritual-grid p {
    color: var(--muted);
}

.featured-product-section {
    display: grid;
    min-height: 750px;
    grid-template-columns: 1fr 1fr;
    background: var(--cream);
}

.featured-gallery {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #eee6db;
}

.featured-gallery::before {
    position: absolute;
    width: 65%;
    height: 65%;
    border: 1px solid rgba(180, 138, 74, .35);
    border-radius: 50%;
    content: "";
}

.featured-main {
    position: relative;
    z-index: 2;
    width: 58%;
    height: 610px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.featured-detail {
    position: absolute;
    z-index: 3;
    right: 6%;
    bottom: 6%;
    width: 230px;
    height: 165px;
    border: 10px solid var(--cream-light);
    object-fit: cover;
    box-shadow: var(--shadow);
}

.featured-copy {
    max-width: 640px;
    align-self: center;
    padding: 80px 10%;
}

.featured-copy > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 18px;
}

.featured-copy ul,
.summary-points {
    display: grid;
    gap: 12px;
    margin: 28px 0;
    padding: 0;
    list-style: none;
}

.featured-copy li,
.summary-points li {
    position: relative;
    padding-left: 24px;
}

.featured-copy li::before,
.summary-points li::before {
    position: absolute;
    top: 10px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    content: "";
}

.featured-price {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 34px 0 28px;
}

.featured-price strong {
    color: var(--ink);
    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: 500;
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.steps-row article {
    display: grid;
    min-height: 210px;
    grid-template-columns: 62px 1fr;
    gap: 18px;
    border: 1px solid var(--line);
    padding: 30px;
    background: var(--white);
}

.steps-row article > span {
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 28px;
}

.steps-row p {
    color: var(--muted);
}

.how-to-section {
    text-align: center;
}

.how-to-section .section-heading {
    margin-right: auto;
    margin-left: auto;
}

.how-to-section .steps-row {
    text-align: left;
}

.locations-section {
    padding-top: 100px;
}

.locations-section .section-heading {
    max-width: 850px;
}

.locations-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 22px;
}

.location-list {
    display: grid;
    gap: 12px;
}

.location-card {
    display: grid;
    min-height: 160px;
    grid-template-columns: 50px 1fr auto;
    align-items: start;
    gap: 18px;
    border: 1px solid var(--line);
    padding: 24px;
    background: var(--white);
    cursor: pointer;
    transition: border .2s ease, background .2s ease, transform .2s ease;
}

.location-card:hover,
.location-card.is-active {
    border-color: var(--ink);
    background: #f2ece2;
    transform: translateX(5px);
}

.location-number {
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 22px;
}

.location-card h3 {
    margin-bottom: 6px;
    font-size: 20px;
}

.location-card p {
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.location-card a {
    color: var(--ink);
    font-size: 13px;
    font-weight: 750;
}

.map-select {
    min-height: auto;
    align-self: center;
    padding: 9px 12px;
    background: transparent;
    color: var(--ink);
    font-size: 12px;
}

.map-select:hover {
    box-shadow: none;
    color: var(--white);
}

.map-panel {
    position: relative;
    min-height: 505px;
    overflow: hidden;
    background: #e9e4dc;
}

.map-panel iframe {
    width: 100%;
    height: 100%;
    min-height: 505px;
    border: 0;
    filter: saturate(.78) contrast(.95);
}

.map-panel-bar {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    background: rgba(16, 45, 38, .94);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.map-panel-bar div {
    display: flex;
    flex-direction: column;
}

.map-panel-bar small {
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
}

.map-panel-bar a {
    border-bottom: 1px solid var(--gold-light);
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 750;
}

.story {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    padding: 100px max(28px, calc((100vw - var(--container)) / 2));
    background: var(--cream);
}

.story p {
    color: var(--muted);
    font-size: 18px;
}

.story a {
    color: var(--gold);
    font-weight: 800;
}

.final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 90px max(28px, calc((100vw - var(--container)) / 2));
    background: var(--ink);
    color: var(--white);
}

.final-cta h2 {
    color: var(--white);
}

.final-cta p:not(.eyebrow) {
    max-width: 700px;
    color: rgba(255, 255, 255, .7);
}

.final-cta > div:last-child {
    display: flex;
    min-width: max-content;
    align-items: center;
    gap: 25px;
}

.site-footer {
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: 60px;
    padding: 70px max(28px, calc((100vw - var(--container)) / 2));
    background: var(--ink-dark);
    color: rgba(255, 255, 255, .72);
}

.site-footer b,
.site-footer strong {
    display: block;
    margin-bottom: 15px;
    color: var(--white);
}

.site-footer b {
    font-size: 17px;
    letter-spacing: .2em;
}

.site-footer p {
    margin-bottom: 5px;
}

.site-footer span {
    color: rgba(255, 255, 255, .45);
    font-size: 12px;
}

.site-footer a {
    display: block;
    width: max-content;
    max-width: 100%;
    margin: 8px 0;
    font-size: 13px;
}

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

.wa {
    position: fixed;
    z-index: 40;
    right: 20px;
    bottom: 20px;
    border-radius: 30px;
    padding: 12px 18px;
    background: #188b55;
    color: var(--white);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
    font-size: 13px;
    font-weight: 750;
}

.subpage-hero {
    width: min(1050px, calc(100% - 48px));
    margin: 0 auto;
    padding: 105px 0 85px;
}

.subpage-hero > p:last-child {
    max-width: 750px;
    color: var(--muted);
    font-size: 18px;
}

.split-hero {
    display: grid;
    width: min(var(--container), calc(100% - 48px));
    grid-template-columns: 1fr .75fr;
    align-items: center;
    gap: 70px;
}

.split-hero img {
    width: 100%;
    height: 430px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.steps-section,
.values-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 90px max(28px, calc((100vw - var(--container)) / 2));
    background: var(--cream);
}

.steps-section article,
.values-section article {
    min-height: 250px;
    border-right: 1px solid var(--line);
    padding: 20px 50px;
}

.steps-section article:first-child,
.values-section article:first-child {
    padding-left: 0;
}

.steps-section article:last-child,
.values-section article:last-child {
    border: 0;
}

.steps-section span,
.values-section small {
    display: block;
    margin-bottom: 50px;
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 28px;
}

.steps-section p,
.values-section p {
    color: var(--muted);
}

.usage-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 55px max(28px, calc((100vw - var(--container)) / 2));
    background: var(--ink);
    color: rgba(255, 255, 255, .72);
}

.usage-note p {
    max-width: 820px;
    margin: 0;
}

.usage-note a {
    min-width: max-content;
    color: var(--gold-light);
    font-weight: 800;
}

.about-hero {
    max-width: 1000px;
}

.story-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    padding: 100px max(28px, calc((100vw - var(--container)) / 2));
}

.story-panel img {
    width: 100%;
    height: 480px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.locations-page {
    padding-top: 0;
}

.sales-points-main .subpage-hero {
    padding-bottom: 45px;
}

.online-order-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 75px max(28px, calc((100vw - var(--container)) / 2));
    background: var(--ink);
    color: var(--white);
}

.online-order-band h2 {
    color: var(--white);
}

.online-order-band p:not(.eyebrow) {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .65);
}

.catalog-intro {
    width: min(900px, calc(100% - 48px));
    margin: 0 auto;
    padding: 95px 0 20px;
    text-align: center;
}

.catalog-intro p:last-child {
    color: var(--muted);
    font-size: 18px;
}

.product-grid {
    padding-top: 40px;
}

.product-card {
    display: grid;
    min-height: 580px;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--white);
}

.product-card-image {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--cream);
}

.product-card-image img {
    width: 72%;
    height: 520px;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform .45s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.035);
}

.product-card-image span {
    position: absolute;
    top: 22px;
    left: 22px;
    border-radius: 18px;
    padding: 7px 12px;
    background: var(--ink);
    color: var(--white);
    font-size: 11px;
    font-weight: 750;
}

.product-card-body {
    align-self: center;
    padding: 65px;
}

.product-card-body > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 18px;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 42px;
    border-top: 1px solid var(--line);
    padding-top: 24px;
}

.product-card-footer strong {
    color: var(--ink);
    font-family: Georgia, serif;
    font-size: 32px;
    font-weight: 500;
}

.product-card-footer a {
    color: var(--gold);
    font-weight: 800;
}

.product-detail {
    display: grid;
    width: min(var(--container), calc(100% - 48px));
    grid-template-columns: 1.05fr .95fr;
    gap: 72px;
    margin: 0 auto;
    padding: 80px 0 100px;
}

.product-gallery-main {
    display: grid;
    min-height: 610px;
    place-items: center;
    overflow: hidden;
    background: var(--cream);
}

.product-gallery-main img {
    width: 82%;
    height: 570px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.product-thumb {
    min-height: 128px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 0;
    background: var(--cream-light);
}

.product-thumb:hover,
.product-thumb.is-active {
    border-color: var(--ink);
    background: var(--cream);
    box-shadow: none;
    transform: none;
}

.product-thumb img {
    width: 100%;
    height: 126px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-summary {
    align-self: center;
}

.product-summary .lead {
    color: var(--muted);
    font-size: 19px;
}

.price-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 32px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
}

.price-block strong {
    color: var(--ink);
    font-family: Georgia, serif;
    font-size: 38px;
    font-weight: 500;
}

.summary-points {
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
    font-size: 14px;
}

.add-cart-form {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 12px;
    margin-top: 32px;
}

.add-cart-form label {
    color: var(--muted);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .1em;
}

.add-cart-form input {
    min-height: 48px;
    margin-top: 4px;
    text-align: center;
}

.add-cart-form button {
    align-self: end;
}

.nearby-link {
    display: block;
    margin-top: 20px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 800;
}

.stock,
.notice {
    color: var(--muted);
    font-size: 12px;
}

.stock {
    margin-top: 15px;
}

.notice {
    margin-top: 25px;
    border-left: 2px solid var(--gold);
    padding: 14px 16px;
    background: var(--cream);
}

.product-information {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
    margin-top: 25px;
    border-top: 1px solid var(--line);
    padding-top: 85px;
}

.product-information p {
    color: var(--muted);
}

.product-information h3 {
    margin-top: 32px;
    font-size: 17px;
}

.mobile-buy-bar {
    display: none;
}

.form-grid {
    display: grid;
    max-width: 800px;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.form-grid.single-column {
    grid-template-columns: 1fr;
}

input,
textarea,
select {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 13px 15px;
    outline: 0;
    background: var(--white);
    color: var(--text);
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--ink);
}

.form-grid textarea {
    min-height: 110px;
    grid-column: span 2;
    resize: vertical;
}

.form-grid button {
    grid-column: span 2;
}

.single-column button,
.single-column textarea {
    grid-column: auto;
}

.checkout h1,
.cart-page h1,
.legal h1 {
    font-size: clamp(42px, 5vw, 66px);
}

.total {
    max-width: 430px;
    margin: 35px 0 0 auto;
    text-align: right;
}

.total p {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding-bottom: 10px;
}

.total h2 {
    font-size: 30px;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cart-product img {
    width: 70px;
    height: 80px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.empty-state {
    border: 1px solid var(--line);
    padding: 50px;
    background: var(--white);
    text-align: center;
}

.result-page {
    min-height: 62vh;
    text-align: center;
}

.result-icon {
    display: grid;
    width: 70px;
    height: 70px;
    margin: 0 auto 28px;
    place-items: center;
    border-radius: 50%;
    background: var(--success);
    color: var(--white);
    font-size: 30px;
}

.result-icon.is-error {
    background: var(--danger);
}

.login {
    width: min(440px, calc(100% - 48px));
    min-height: 65vh;
    margin: 0 auto;
    padding: 100px 0;
}

.login h1 {
    font-size: 44px;
}

.success {
    border-left: 3px solid var(--success);
    padding: 12px 15px;
    background: #eef8f1;
    color: var(--success);
}

.alert {
    border-left: 3px solid var(--danger);
    padding: 12px 15px;
    background: #fff1ee;
    color: var(--danger);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    background: var(--white);
}

th,
td {
    border-bottom: 1px solid var(--line);
    padding: 15px;
    text-align: left;
}

th {
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.link {
    min-height: auto;
    padding: 0;
    background: none;
    color: var(--danger);
}

.link:hover {
    background: none;
    box-shadow: none;
    transform: none;
}

.admin {
    display: grid;
    min-height: 82vh;
    grid-template-columns: 240px 1fr;
}

.admin aside {
    padding: 35px;
    background: var(--ink);
    color: var(--white);
}

.admin aside b {
    display: block;
    margin-bottom: 30px;
    letter-spacing: .12em;
}

.admin aside a {
    display: block;
    margin: 15px 0;
    color: rgba(255, 255, 255, .75);
}

.admin section {
    overflow: auto;
    padding: 45px;
}

.admin h1 {
    font-size: 48px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stats article {
    padding: 24px;
    background: var(--cream);
}

.stats b {
    display: block;
    margin-top: 8px;
    color: var(--ink);
    font-size: 28px;
}

.legal {
    max-width: 850px;
    min-height: 63vh;
}

@media (max-width: 1100px) {
    .site-header {
        grid-template-columns: 180px 1fr 110px;
    }

    .site-header nav {
        gap: 18px;
        font-size: 13px;
    }

    .hero-content {
        padding-right: 30px;
    }

    .hero-picture {
        width: 78%;
    }

    .location-card {
        grid-template-columns: 40px 1fr;
    }

    .map-select {
        grid-column: 2;
        justify-self: start;
    }

    .site-footer {
        gap: 30px;
    }
}

@media (max-width: 820px) {
    h1 {
        font-size: clamp(40px, 11vw, 60px);
    }

    h2 {
        font-size: clamp(30px, 8vw, 44px);
    }

    .site-header {
        min-height: 74px;
        grid-template-columns: 1fr auto;
        padding: 13px 20px;
    }

    .site-header nav {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: flex-start;
        gap: 20px;
        overflow-x: auto;
        padding: 7px 0 1px;
        scrollbar-width: none;
    }

    .site-header nav::-webkit-scrollbar {
        display: none;
    }

    .site-header nav a {
        min-width: max-content;
        padding: 5px 0;
    }

    .site-header nav a::after {
        bottom: 0;
    }

    .cart {
        grid-column: 2;
        grid-row: 1;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-content {
        margin-left: 0;
        padding: 70px 24px 20px;
    }

    .hero-visual {
        min-height: 520px;
    }

    .hero-picture {
        height: 470px;
    }

    .promise,
    .ritual-grid,
    .steps-row,
    .locations-layout,
    .story,
    .featured-product-section,
    .product-card,
    .product-detail,
    .product-information,
    .split-hero,
    .steps-section,
    .values-section,
    .story-panel,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .promise article {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .15);
        padding: 18px 0;
    }

    .promise article:last-child {
        border-bottom: 0;
    }

    .ritual-grid article,
    .ritual-grid article + article,
    .steps-section article,
    .values-section article,
    .steps-section article:first-child,
    .values-section article:first-child {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 32px 0;
    }

    .ritual-icon,
    .steps-section span,
    .values-section small {
        margin-bottom: 20px;
    }

    .featured-main {
        height: 520px;
    }

    .locations-layout {
        gap: 15px;
    }

    .map-panel,
    .map-panel iframe {
        min-height: 460px;
    }

    .story {
        gap: 25px;
    }

    .final-cta,
    .online-order-band,
    .usage-note {
        align-items: flex-start;
        flex-direction: column;
    }

    .final-cta > div:last-child {
        min-width: auto;
        flex-wrap: wrap;
    }

    .site-footer {
        gap: 35px;
    }

    .product-card-body {
        padding: 40px 28px;
    }

    .product-detail {
        gap: 50px;
    }

    .product-information {
        gap: 20px;
    }

    .split-hero {
        gap: 20px;
    }

    .summary-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 15px;
    }

    .page,
    .checkout,
    .ritual-section,
    .how-to-section,
    .locations-section,
    .subpage-hero,
    .split-hero,
    .product-detail,
    .catalog-intro {
        width: min(100% - 32px, var(--container));
    }

    .brand span {
        font-size: 15px;
    }

    .brand small {
        font-size: 7px;
    }

    .cart {
        min-height: 36px;
        padding: 4px 5px 4px 12px;
        font-size: 12px;
    }

    .cart b {
        width: 24px;
        height: 24px;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding-top: 55px;
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-price {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .hero-visual {
        min-height: 440px;
    }

    .hero-picture {
        width: 82%;
        height: 410px;
    }

    .hero-stamp {
        top: 8%;
        right: 8%;
        width: 82px;
        height: 82px;
        font-size: 24px;
    }

    .hero-caption {
        right: 5%;
        bottom: 8%;
    }

    .ritual-section,
    .how-to-section,
    .locations-section {
        padding: 75px 0;
    }

    .featured-product-section {
        min-height: auto;
    }

    .featured-gallery {
        min-height: 520px;
    }

    .featured-main {
        width: 72%;
        height: 480px;
    }

    .featured-detail {
        right: 4%;
        width: 155px;
        height: 115px;
    }

    .featured-copy {
        padding: 65px 24px;
    }

    .steps-row article {
        min-height: auto;
        grid-template-columns: 48px 1fr;
        padding: 24px;
    }

    .location-card {
        grid-template-columns: 36px 1fr;
        padding: 20px 16px;
    }

    .map-panel,
    .map-panel iframe {
        min-height: 420px;
    }

    .map-panel-bar {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .story,
    .final-cta,
    .online-order-band,
    .usage-note,
    .steps-section,
    .values-section,
    .story-panel,
    .site-footer {
        padding-right: 22px;
        padding-left: 22px;
    }

    .subpage-hero {
        padding: 72px 0 55px;
    }

    .split-hero img {
        height: 330px;
    }

    .product-card {
        min-height: auto;
    }

    .product-card-image img {
        width: 78%;
        height: 420px;
    }

    .product-card-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-detail {
        padding-top: 35px;
    }

    .product-gallery-main {
        min-height: 460px;
    }

    .product-gallery-main img {
        height: 430px;
    }

    .product-thumb,
    .product-thumb img {
        min-height: 90px;
        height: 90px;
    }

    .add-cart-form {
        grid-template-columns: 78px 1fr;
    }

    .mobile-buy-bar {
        position: fixed;
        z-index: 39;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        border-top: 1px solid var(--line);
        padding: 10px 14px;
        background: rgba(252, 250, 246, .97);
        box-shadow: 0 -8px 26px rgba(23, 63, 53, .12);
    }

    .mobile-buy-bar div {
        display: flex;
        flex-direction: column;
    }

    .mobile-buy-bar small {
        color: var(--gold);
        font-size: 9px;
        font-weight: 800;
        letter-spacing: .1em;
    }

    .mobile-buy-bar strong {
        color: var(--ink);
        font-family: Georgia, serif;
        font-size: 20px;
    }

    .mobile-buy-bar a {
        border-radius: 3px;
        padding: 11px 18px;
        background: var(--ink);
        color: var(--white);
        font-size: 13px;
        font-weight: 800;
    }

    .product-detail + .mobile-buy-bar ~ .site-footer {
        padding-bottom: 110px;
    }

    .wa {
        right: 12px;
        bottom: 78px;
        padding: 10px 14px;
        font-size: 11px;
    }

    .form-grid,
    .stats {
        grid-template-columns: 1fr;
    }

    .form-grid textarea,
    .form-grid button {
        grid-column: auto;
    }

    .admin {
        grid-template-columns: 1fr;
    }

    .admin aside {
        display: flex;
        gap: 18px;
        overflow-x: auto;
        padding: 18px;
    }

    .admin aside b,
    .admin aside a {
        min-width: max-content;
        margin: 0;
    }

    .admin section {
        padding: 25px 16px;
    }

    .cart-page {
        overflow-x: auto;
    }
}
