/* Coral Hub 2026 visual system ------------------------------------------------ */
:root {
    --ch-ink: #0b272b;
    --ch-ink-soft: #38585a;
    --ch-night: #071f25;
    --ch-night-2: #0a3036;
    --ch-teal: #0d9488;
    --ch-teal-dark: #08766f;
    --ch-mint: #9de7d3;
    --ch-seafoam: #e6f7f1;
    --ch-sand: #f4efe5;
    --ch-paper: #fbfdfc;
    --ch-line: rgba(11, 39, 43, 0.13);
    --ch-white: #fff;
    --ch-radius-sm: 12px;
    --ch-radius: 22px;
    --ch-radius-lg: 34px;
    --ch-shadow: 0 18px 55px rgba(5, 35, 40, 0.11);
    --ch-shadow-soft: 0 10px 35px rgba(5, 35, 40, 0.07);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.ch-site {
    margin: 0;
    background: var(--ch-paper);
    color: var(--ch-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}
body.ch-menu-is-open { overflow: hidden; }
img { max-width: 100%; }
a { color: inherit; }
.site-content { min-height: 60vh; }
.ch-shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.ch-cover-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}
.screen-reader-text:focus,
.skip-link:focus {
    clip: auto !important;
    clip-path: none;
    height: auto;
    width: auto;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    background: #fff;
    color: var(--ch-ink);
    border-radius: 8px;
    z-index: 100000;
}

/* Announcement and header --------------------------------------------------- */
.woocommerce-store-notice.demo_store {
    position: relative;
    inset: auto;
    margin: 0;
    padding: 9px 52px 9px 20px;
    min-height: 42px;
    background: var(--ch-teal-dark);
    color: #fff;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.45;
    text-align: center;
    box-shadow: none;
    z-index: 90;
}
.woocommerce-store-notice__dismiss-link {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.ch-site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(251, 253, 252, 0.94);
    border-bottom: 1px solid var(--ch-line);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.admin-bar .ch-site-header { top: 32px; }
.ch-header-inner {
    width: min(1240px, calc(100% - 40px));
    min-height: 82px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    align-items: center;
    gap: 24px;
}
.ch-brand-link,
.ch-footer-logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.ch-brand-logo { display: block; width: auto; height: 50px; max-width: 190px; object-fit: contain; }
.ch-brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--ch-night);
    color: var(--ch-mint);
    font-weight: 900;
    letter-spacing: -.04em;
}
.ch-brand-copy { display: grid; margin-left: 10px; line-height: 1.15; }
.ch-brand-copy strong { font-size: 18px; }
.ch-brand-copy small { color: var(--ch-ink-soft); font-size: 11px; }
.ch-primary-navigation { justify-self: center; }
.ch-menu {
    display: flex;
    align-items: center;
    gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.ch-menu li { position: relative; margin: 0; }
.ch-menu > li > a {
    display: block;
    padding: 29px 0 25px;
    border-bottom: 3px solid transparent;
    color: var(--ch-ink);
    font-size: 14px;
    font-weight: 750;
    letter-spacing: .015em;
    text-decoration: none;
    transition: color .2s ease, border-color .2s ease;
}
.ch-menu > li > a:hover,
.ch-menu > li.current-menu-item > a,
.ch-menu > li.current-menu-ancestor > a { color: var(--ch-teal-dark); border-bottom-color: var(--ch-teal); }
.ch-menu .sub-menu {
    position: absolute;
    top: calc(100% - 8px);
    left: 50%;
    width: 230px;
    margin: 0;
    padding: 10px;
    list-style: none;
    background: #fff;
    border: 1px solid var(--ch-line);
    border-radius: 16px;
    box-shadow: var(--ch-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.ch-menu li:hover > .sub-menu,
.ch-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.ch-menu .sub-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 9px;
    color: var(--ch-ink);
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
}
.ch-menu .sub-menu a:hover { background: var(--ch-seafoam); color: var(--ch-teal-dark); }
.ch-menu-toggle { display: none; }
.ch-header-actions { justify-self: end; display: flex; align-items: center; gap: 9px; }
.ch-icon-button,
.ch-cart-link {
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ch-line);
    border-radius: 999px;
    background: #fff;
    color: var(--ch-ink);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.ch-icon-button { width: 44px; padding: 0; cursor: pointer; }
.ch-icon-button:hover,
.ch-cart-link:hover { transform: translateY(-1px); border-color: rgba(13, 148, 136, .45); background: var(--ch-seafoam); }
.ch-site-header .ch-cart-link,
.ch-site-header .ch-cart-link:hover,
.ch-site-header .ch-cart-link:focus,
.ch-site-header .ch-cart-link:active,
.ch-site-header .ch-cart-link:visited { text-decoration: none !important; }
.ch-icon-button svg,
.ch-cart-link svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ch-cart-link { position: relative; gap: 8px; padding: 0 13px; font-size: 13px; font-weight: 800; text-decoration: none; }
.ch-cart-count {
    min-width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--ch-teal);
    color: #fff;
    font-size: 10px;
}
.ch-cart-count.is-empty { background: #dce9e5; color: var(--ch-ink-soft); }
.ch-search { position: relative; }
.ch-search-panel {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: min(430px, calc(100vw - 40px));
    padding: 20px;
    background: #fff;
    border: 1px solid var(--ch-line);
    border-radius: 18px;
    box-shadow: var(--ch-shadow);
}
.ch-search-panel[hidden] { display: none; }
.ch-search-panel label { display: block; margin-bottom: 8px; color: var(--ch-ink); font-size: 13px; font-weight: 800; }
.ch-search-field-wrap { display: flex; gap: 8px; }
.ch-search-field-wrap input {
    min-width: 0;
    flex: 1;
    height: 44px;
    padding: 0 13px;
    border: 1px solid var(--ch-line);
    border-radius: 10px;
    color: var(--ch-ink);
}
.ch-search-field-wrap button {
    height: 44px;
    padding: 0 16px;
    border: 0;
    border-radius: 10px;
    background: var(--ch-teal);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

/* Shared type and buttons ---------------------------------------------------- */
.ch-eyebrow {
    display: inline-block;
    margin-bottom: 13px;
    color: var(--ch-teal-dark);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .15em;
    line-height: 1.3;
    text-transform: uppercase;
}
.ch-eyebrow-light { color: var(--ch-mint); }
.ch-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.2;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.ch-button:hover { transform: translateY(-2px); }
.ch-button-primary { background: var(--ch-mint); color: var(--ch-night); box-shadow: 0 12px 28px rgba(157, 231, 211, .18); }
.ch-button-primary:hover { background: #bcf5e5; box-shadow: 0 15px 35px rgba(157, 231, 211, .24); }
.ch-button-ghost { border-color: rgba(255, 255, 255, .28); color: #fff; background: rgba(255, 255, 255, .06); }
.ch-button-ghost:hover { border-color: rgba(255, 255, 255, .6); background: rgba(255, 255, 255, .11); }
.ch-button-dark { background: var(--ch-night); color: #fff; }
.ch-button-dark:hover { background: var(--ch-night-2); }
.ch-button-light { background: #fff; color: var(--ch-night); }
.ch-text-link { color: var(--ch-teal-dark); font-weight: 800; text-decoration: none; }

/* Homepage hero ------------------------------------------------------------- */
.ch-hero {
    position: relative;
    min-height: 690px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 10%, rgba(22, 141, 137, .3), transparent 32%),
        linear-gradient(135deg, #061d23 0%, #082d34 58%, #0b3a3d 100%);
    color: #fff;
}
.ch-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to right, #000, transparent 68%);
}
.ch-hero-glow {
    position: absolute;
    width: 540px;
    height: 540px;
    right: -120px;
    top: -120px;
    border-radius: 50%;
    background: rgba(111, 227, 202, .13);
    filter: blur(10px);
}
.ch-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
    align-items: center;
    gap: clamp(48px, 7vw, 100px);
    padding-block: 82px 92px;
}
.ch-hero-copy { max-width: 680px; }
.ch-hero h1 {
    max-width: 720px;
    margin: 0 0 25px;
    color: #fff;
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 880;
    letter-spacing: -.055em;
    line-height: .98;
}
.ch-hero-lede { max-width: 650px; margin: 0; color: #c9dddc; font-size: 18px; line-height: 1.75; }
.ch-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.ch-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 21px;
    margin: 31px 0 0;
    padding: 0;
    list-style: none;
    color: #d7e7e5;
    font-size: 12px;
    font-weight: 720;
}
.ch-hero-points span { color: var(--ch-mint); margin-right: 5px; }
.ch-hero-visual { position: relative; min-height: 500px; }
.ch-hero-image { position: absolute; overflow: hidden; background: #102f34; box-shadow: 0 26px 70px rgba(0,0,0,.32); }
.ch-hero-image-main { inset: 5px 0 30px 64px; border-radius: 44% 44% 24px 24px; }
.ch-hero-image-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 22, 25, .38), transparent 48%);
}
.ch-hero-image-secondary { width: 190px; height: 220px; left: 0; bottom: -4px; border: 8px solid #0a3036; border-radius: 24px; }
.ch-hero-note {
    position: absolute;
    right: -16px;
    bottom: 54px;
    min-width: 205px;
    display: grid;
    grid-template-columns: 12px 1fr;
    gap: 2px 10px;
    padding: 16px 18px;
    background: rgba(251, 253, 252, .94);
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 16px;
    color: var(--ch-ink);
    box-shadow: var(--ch-shadow);
    backdrop-filter: blur(12px);
}
.ch-hero-note strong { font-size: 13px; line-height: 1.25; }
.ch-hero-note > span:last-child { grid-column: 2; color: var(--ch-ink-soft); font-size: 11px; }
.ch-pulse { width: 9px; height: 9px; margin-top: 3px; border-radius: 50%; background: #18aa79; box-shadow: 0 0 0 5px rgba(24,170,121,.13); }

/* Home sections ------------------------------------------------------------- */
.ch-proof-bar { background: var(--ch-sand); border-bottom: 1px solid rgba(66, 70, 53, .12); }
.ch-proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.ch-proof-grid > div { min-height: 106px; display: grid; align-content: center; padding: 20px 28px; border-right: 1px solid rgba(66, 70, 53, .12); }
.ch-proof-grid > div:first-child { border-left: 1px solid rgba(66, 70, 53, .12); }
.ch-proof-grid strong { color: var(--ch-ink); font-size: 13px; font-weight: 850; }
.ch-proof-grid span { color: #6a6a5e; font-size: 11px; }
.ch-section { padding-block: clamp(76px, 8vw, 112px); }
.ch-category-section { background: var(--ch-paper); }
.ch-section-heading { margin-bottom: 42px; }
.ch-section-heading h2 {
    max-width: 760px;
    margin: 0;
    color: var(--ch-ink);
    font-size: clamp(36px, 4.3vw, 54px);
    font-weight: 850;
    letter-spacing: -.045em;
    line-height: 1.05;
}
.ch-section-heading > p,
.ch-section-heading-split > p { margin: 0; color: var(--ch-ink-soft); font-size: 16px; line-height: 1.75; }
.ch-section-heading-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 440px); align-items: end; gap: 40px; }
.ch-section-heading-centered { max-width: 760px; margin-inline: auto; text-align: center; }
.ch-section-heading-centered h2 { margin-inline: auto; }
.ch-section-heading-centered p { max-width: 650px; margin: 18px auto 0; }
.ch-heading-link { align-self: end; justify-self: end; padding-bottom: 7px; }
.ch-category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ch-category-card {
    position: relative;
    min-height: 410px;
    overflow: hidden;
    border-radius: var(--ch-radius);
    background: var(--ch-night);
    box-shadow: var(--ch-shadow-soft);
    color: #fff;
    text-decoration: none;
    transform: translateZ(0);
}
.ch-category-media,
.ch-category-blueprint { position: absolute; inset: 0; }
.ch-category-media img { transition: transform .55s ease, filter .55s ease; }
.ch-category-blueprint {
    display: grid;
    place-items: center;
    background-color: #0b4850;
    background-image: linear-gradient(rgba(159,239,221,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(159,239,221,.08) 1px, transparent 1px);
    background-size: 25px 25px;
}
.ch-category-blueprint svg { width: 58%; fill: none; stroke: #a4ead8; stroke-width: 2; opacity: .75; }
.ch-category-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(4, 24, 28, .96) 0%, rgba(4,24,28,.16) 65%); }
.ch-category-content { position: absolute; inset: auto 0 0; display: grid; gap: 8px; padding: 25px; }
.ch-category-content > strong { font-size: 21px; line-height: 1.15; }
.ch-category-content > span:not(.ch-text-link) { min-height: 42px; color: #cfe2e0; font-size: 12px; line-height: 1.55; }
.ch-category-content .ch-text-link { color: var(--ch-mint); font-size: 12px; }
.ch-category-card:hover .ch-category-media img { transform: scale(1.055); filter: saturate(1.1); }
.ch-category-card:hover { box-shadow: var(--ch-shadow); }

.ch-best-sellers { background: #eef6f3; }
ul.ch-product-grid,
.woocommerce ul.products.ch-product-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}
.woocommerce ul.products.ch-product-grid::before,
.woocommerce ul.products.ch-product-grid::after { display: none !important; }
.ch-product-card,
.woocommerce ul.products li.product.ch-product-card {
    width: auto !important;
    float: none !important;
    clear: none !important;
    display: flex;
    flex-direction: column;
    margin: 0 !important;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--ch-line);
    border-radius: 18px;
    box-shadow: 0 4px 14px rgba(6, 36, 40, .04);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.ch-product-card:hover { transform: translateY(-4px); border-color: rgba(13,148,136,.28); box-shadow: var(--ch-shadow-soft); }
.ch-product-media { position: relative; display: block; aspect-ratio: 1 / .82; overflow: hidden; background: #e8f1ef; text-decoration: none; }
.ch-product-media > img { transition: transform .45s ease; }
.ch-product-card:hover .ch-product-media > img { transform: scale(1.035); }
.ch-product-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    padding: 24px;
    color: #47777a;
    background-color: #dcefed;
    background-image: linear-gradient(rgba(10,83,89,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(10,83,89,.05) 1px, transparent 1px);
    background-size: 20px 20px;
}
.ch-product-placeholder svg { width: 74px; fill: none; stroke: currentColor; stroke-width: 2; }
.ch-product-placeholder small { font-size: 10px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.ch-product-badges { position: absolute; top: 13px; left: 13px; display: flex; flex-wrap: wrap; gap: 6px; }
.ch-product-badges > span { padding: 6px 9px; border-radius: 999px; color: #fff; font-size: 9px; font-weight: 850; letter-spacing: .05em; line-height: 1; text-transform: uppercase; box-shadow: 0 4px 12px rgba(0,0,0,.1); }
.ch-product-badges .is-best { background: #b66b26; }
.ch-product-badges .is-new { background: var(--ch-teal); }
.ch-product-badges .is-sale { background: #b83d4d; }
.ch-product-content { flex: 1; display: flex; flex-direction: column; padding: 20px; }
.ch-product-category { margin-bottom: 7px; color: var(--ch-teal-dark); font-size: 9px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.ch-product-title,
.woocommerce ul.products li.product .ch-product-title { min-height: 47px; margin: 0 0 15px; padding: 0; color: var(--ch-ink); font-size: 17px; font-weight: 780; line-height: 1.35; }
.ch-product-title a { color: inherit; text-decoration: none; }
.ch-product-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; margin-bottom: 17px; }
.ch-product-price,
.woocommerce ul.products li.product .ch-product-price,
.woocommerce ul.products li.product .ch-product-price .price,
.woocommerce ul.products li.product .ch-product-price .amount { color: var(--ch-ink); font-size: 17px; font-weight: 850; }
.ch-product-price del { margin-right: 3px; color: #819091 !important; font-size: 12px; font-weight: 600; opacity: 1; }
.ch-product-price ins { text-decoration: none; }
.ch-product-rating { color: #a76523; font-size: 11px; font-weight: 800; white-space: nowrap; }
.ch-product-action .button,
.woocommerce ul.products li.product .ch-product-action .button {
    width: 100%;
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 10px 13px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: var(--ch-night) !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 820 !important;
    line-height: 1.2 !important;
    text-align: center;
    text-decoration: none;
}
.ch-product-action .button:hover { background: var(--ch-teal-dark) !important; }
.ch-product-action .added_to_cart { display: block; margin-top: 8px; color: var(--ch-teal-dark); font-size: 11px; font-weight: 800; text-align: center; }

.ch-culture-section { background: var(--ch-paper); }
.ch-culture-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .95fr); align-items: stretch; gap: clamp(48px, 7vw, 90px); }
.ch-culture-media { position: relative; min-height: 640px; overflow: hidden; border-radius: 180px 26px 26px 26px; background: var(--ch-night); }
.ch-culture-stamp {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 174px;
    height: 174px;
    display: grid;
    place-content: center;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.38);
    border-radius: 50%;
    background: rgba(7,31,37,.88);
    color: #fff;
    text-align: center;
    backdrop-filter: blur(12px);
}
.ch-culture-stamp strong { color: var(--ch-mint); font-size: 18px; }
.ch-culture-stamp span { font-size: 10px; line-height: 1.4; text-transform: uppercase; letter-spacing: .08em; }
.ch-culture-copy { align-self: center; padding-block: 30px; }
.ch-culture-copy h2 { margin: 0 0 23px; color: var(--ch-ink); font-size: clamp(38px, 4.6vw, 58px); font-weight: 850; letter-spacing: -.05em; line-height: 1.05; }
.ch-culture-copy > p { margin: 0; color: var(--ch-ink-soft); font-size: 16px; line-height: 1.8; }
.ch-standards-list { margin: 35px 0; }
.ch-standards-list > div { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 17px 0; border-top: 1px solid var(--ch-line); }
.ch-standards-list > div:last-child { border-bottom: 1px solid var(--ch-line); }
.ch-standards-list dt { color: var(--ch-teal); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.ch-standards-list dd { display: grid; gap: 2px; margin: 0; }
.ch-standards-list strong { color: var(--ch-ink); font-size: 14px; }
.ch-standards-list span { color: var(--ch-ink-soft); font-size: 12px; }

.ch-principles { background: var(--ch-sand); }
.ch-principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ch-principles-grid article { min-height: 270px; padding: 31px; border: 1px solid rgba(66,70,53,.13); border-radius: var(--ch-radius); background: rgba(255,255,255,.46); }
.ch-principle-number { display: block; margin-bottom: 47px; color: var(--ch-teal-dark); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.ch-principles-grid h3 { margin: 0 0 10px; color: var(--ch-ink); font-size: 21px; font-weight: 820; }
.ch-principles-grid p { margin: 0; color: #59655e; font-size: 13px; line-height: 1.7; }
.ch-guides { background: var(--ch-paper); }
.ch-guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ch-guide-grid > a { min-height: 290px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--ch-line); border-radius: var(--ch-radius); background: #fff; color: var(--ch-ink); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.ch-guide-grid > a:hover { transform: translateY(-4px); border-color: rgba(13,148,136,.35); box-shadow: var(--ch-shadow-soft); }
.ch-guide-grid span { color: var(--ch-teal-dark); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; }
.ch-guide-grid h3 { margin: 34px 0 11px; font-size: 23px; font-weight: 830; line-height: 1.2; }
.ch-guide-grid p { margin: 0 0 25px; color: var(--ch-ink-soft); font-size: 13px; line-height: 1.7; }
.ch-guide-grid strong { margin-top: auto; color: var(--ch-teal-dark); font-size: 12px; }

/* Interior hero and shop ---------------------------------------------------- */
.ch-page-hero { position: relative; min-height: 350px; display: grid; align-items: end; overflow: hidden; background: var(--ch-night); color: #fff; }
.ch-page-hero-media,
.ch-page-hero-overlay { position: absolute; inset: 0; }
.ch-page-hero-media img { filter: saturate(.9); }
.ch-page-hero-overlay { background: linear-gradient(95deg, rgba(3,22,27,.94) 0%, rgba(3,22,27,.76) 48%, rgba(3,22,27,.36) 100%); }
.ch-page-hero-content { position: relative; z-index: 2; padding-block: 72px 62px; }
.ch-page-hero h1 { max-width: 850px; margin: 0; color: #fff; font-size: clamp(46px, 6vw, 72px); font-weight: 860; letter-spacing: -.055em; line-height: 1; }
.ch-page-hero p { max-width: 720px; margin: 17px 0 0; color: #d1e1df; font-size: 17px; line-height: 1.65; }
.ch-page-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.ch-page-hero-actions .ch-button { min-height: 46px; }
.ch-shop-main { background: var(--ch-paper); }
.ch-shop-shell { padding-block: 72px 100px; }
.ch-shop-toolbar { margin-bottom: 42px; padding-bottom: 32px; border-bottom: 1px solid var(--ch-line); }
.ch-shop-intro { max-width: 780px; }
.ch-shop-intro h2 { margin: 0; color: var(--ch-ink); font-size: clamp(31px, 4vw, 46px); font-weight: 840; letter-spacing: -.04em; line-height: 1.08; }
.ch-shop-intro p,
.ch-shop-description { max-width: 700px; margin: 14px 0 0; color: var(--ch-ink-soft); font-size: 14px; }
.ch-shop-controls { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-top: 32px; }
.ch-category-filter { min-width: 330px; }
.ch-category-filter label { display: block; margin-bottom: 7px; color: var(--ch-ink-soft); font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.ch-category-filter > div { display: flex; gap: 7px; }
.ch-category-filter select,
.ch-sort-control select {
    height: 44px;
    padding: 0 38px 0 13px;
    border: 1px solid var(--ch-line);
    border-radius: 10px;
    background: #fff;
    color: var(--ch-ink);
    font-size: 12px;
    font-weight: 680;
}
.ch-category-filter select { flex: 1; }
.ch-category-filter button { height: 44px; padding: 0 16px; border: 0; border-radius: 10px; background: var(--ch-night); color: #fff; font-size: 11px; font-weight: 800; cursor: pointer; }
.ch-sort-control { display: flex; align-items: center; gap: 15px; color: var(--ch-ink-soft); font-size: 11px; }
.ch-sort-control .woocommerce-ordering { margin: 0; }
.ch-shop-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
.woocommerce nav.woocommerce-pagination { margin-top: 50px; }
.woocommerce nav.woocommerce-pagination ul { display: inline-flex; gap: 7px; border: 0; }
.woocommerce nav.woocommerce-pagination ul li { border: 0; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span { min-width: 42px; height: 42px; display: grid; place-items: center; padding: 0; border: 1px solid var(--ch-line); border-radius: 50%; background: #fff; color: var(--ch-ink); font-weight: 800; }
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover { background: var(--ch-night); color: #fff; }

/* General content and WooCommerce polish ----------------------------------- */
.site-main.container,
main.site-main.container { width: min(980px, calc(100% - 40px)); margin-inline: auto; padding-block: 70px; }
.entry-content { color: var(--ch-ink-soft); }
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 { color: var(--ch-ink); font-weight: 820; letter-spacing: -.025em; line-height: 1.18; }
.entry-content a { color: var(--ch-teal-dark); text-underline-offset: 3px; }
.entry-content img { border-radius: 18px; }
.entry-content blockquote { margin-inline: 0; padding: 18px 24px; border-left: 4px solid var(--ch-teal); background: var(--ch-seafoam); color: var(--ch-ink); }
.woocommerce-message,
.woocommerce-info,
.woocommerce-error { border-top-color: var(--ch-teal) !important; border-radius: 12px; background: #fff; color: var(--ch-ink); }
.woocommerce-message::before,
.woocommerce-info::before { color: var(--ch-teal) !important; }
.single-product .product-title,
.single-product .product_title { color: var(--ch-ink) !important; letter-spacing: -.035em; }
.single-product .product-summary,
.single-product .product-gallery { border-radius: var(--ch-radius); }
.single-product .single_add_to_cart_button,
.woocommerce-cart .checkout-button,
.woocommerce-checkout #place_order,
.woocommerce a.button.alt,
.woocommerce button.button.alt {
    border-radius: 999px !important;
    background: var(--ch-teal-dark) !important;
    color: #fff !important;
    font-weight: 800 !important;
}
.single-product .single_add_to_cart_button:hover,
.woocommerce-cart .checkout-button:hover,
.woocommerce-checkout #place_order:hover { background: var(--ch-night) !important; }

/* Footer -------------------------------------------------------------------- */
.ch-footer-cta { padding-block: 54px; background: var(--ch-teal); color: #fff; }
.ch-footer-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.ch-footer-cta .ch-eyebrow { margin-bottom: 7px; color: #c9fff0; }
.ch-footer-cta h2 { max-width: 790px; margin: 0; color: #fff; font-size: clamp(27px, 3.5vw, 42px); font-weight: 840; letter-spacing: -.04em; line-height: 1.08; }
.ch-site-footer { padding-block: 74px 28px; background: #061c22; color: #c3d6d4; }
.ch-footer-grid { display: grid; grid-template-columns: 1.45fr .8fr .9fr .85fr; gap: clamp(35px, 6vw, 74px); }
.ch-footer-logo { width: auto; height: 56px; max-width: 220px; object-fit: contain; filter: invert(1) grayscale(1) brightness(2); }
.ch-footer-brand > p { max-width: 385px; margin: 24px 0; color: #9cb5b4; font-size: 13px; line-height: 1.75; }
.ch-footer-contact { display: grid; gap: 6px; }
.ch-footer-contact a,
.ch-social-links a { color: var(--ch-mint); font-size: 12px; font-weight: 750; text-decoration: none; }
.ch-footer-nav h3,
.ch-footer-hours h3 { margin: 0 0 19px; color: #fff; font-size: 13px; font-weight: 820; letter-spacing: .04em; }
.ch-footer-nav ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.ch-footer-nav a { color: #9cb5b4; font-size: 12px; text-decoration: none; transition: color .2s ease; }
.ch-footer-nav a:hover { color: var(--ch-mint); }
.ch-footer-hours p { margin: 0; color: #9cb5b4; font-size: 12px; line-height: 1.75; }
.ch-social-links { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 20px; }
.ch-footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 64px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.11); color: #78908f; font-size: 10px; }
.ch-footer-bottom p { margin: 0; }
.ch-footer-bottom > div { display: flex; gap: 15px; }
.ch-footer-bottom a { color: #9cb5b4; text-decoration: none; }

/* Responsive ---------------------------------------------------------------- */
@media (max-width: 1080px) {
    .ch-header-inner { grid-template-columns: 190px 1fr 180px; }
    .ch-menu { gap: 23px; }
    .ch-category-grid { grid-template-columns: repeat(2, 1fr); }
    .ch-category-card { min-height: 390px; }
    ul.ch-product-grid,
    .woocommerce ul.products.ch-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ch-shop-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}

@media (max-width: 959px) {
    .admin-bar .ch-site-header { top: 46px; }
    body.ch-menu-is-open .ch-site-header {
        /* A backdrop filter makes fixed descendants use the header as their
           containing block in Safari. Disable it while the viewport menu is
           open so the panel can fill the screen. */
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .ch-header-inner { min-height: 72px; grid-template-columns: 1fr auto auto; gap: 10px; }
    .ch-brand-logo { height: 43px; max-width: 164px; }
    .ch-primary-navigation { order: 3; justify-self: end; }
    .ch-menu-toggle {
        width: 44px;
        height: 44px;
        display: grid;
        place-content: center;
        gap: 4px;
        padding: 0;
        border: 1px solid var(--ch-line);
        border-radius: 50%;
        background: #fff;
        cursor: pointer;
    }
    .ch-menu-toggle > span:not(.screen-reader-text) { width: 17px; height: 1.5px; display: block; background: var(--ch-ink); transition: transform .2s ease, opacity .2s ease; }
    .ch-primary-navigation.is-open .ch-menu-toggle > span:nth-child(2) { transform: translateY(5.5px) rotate(45deg); }
    .ch-primary-navigation.is-open .ch-menu-toggle > span:nth-child(3) { opacity: 0; }
    .ch-primary-navigation.is-open .ch-menu-toggle > span:nth-child(4) { transform: translateY(-5.5px) rotate(-45deg); }
    .ch-menu {
        position: fixed;
        top: 72px;
        right: 0;
        bottom: auto;
        left: 0;
        z-index: 1;
        width: 100%;
        height: calc(100vh - 72px);
        height: calc(100dvh - 72px);
        display: none;
        align-content: start;
        align-items: stretch;
        gap: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 28px 24px calc(50px + env(safe-area-inset-bottom));
        background: rgba(251,253,252,.99);
    }
    .admin-bar .ch-menu {
        top: 118px;
        height: calc(100vh - 118px);
        height: calc(100dvh - 118px);
    }
    .ch-primary-navigation.is-open .ch-menu { display: grid; }
    .ch-menu > li > a { padding: 14px 0; border-bottom: 1px solid var(--ch-line); font-size: 19px; }
    .ch-menu .sub-menu { position: static; width: auto; display: grid; gap: 2px; padding: 7px 0 12px 18px; border: 0; box-shadow: none; background: transparent; opacity: 1; visibility: visible; transform: none; }
    .ch-menu .sub-menu a { padding: 7px 0; }
    .ch-header-actions { grid-column: 2; grid-row: 1; }
    .ch-cart-label { display: none; }
    .ch-hero { min-height: 0; }
    .ch-hero-grid { grid-template-columns: 1fr; padding-block: 70px 84px; }
    .ch-hero-copy { max-width: 760px; }
    .ch-hero-visual { width: min(620px, 100%); min-height: 480px; }
    .ch-proof-grid { grid-template-columns: repeat(2, 1fr); }
    .ch-proof-grid > div:nth-child(3) { border-left: 1px solid rgba(66,70,53,.12); }
    .ch-proof-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(66,70,53,.12); }
    .ch-section-heading-split { grid-template-columns: 1fr; gap: 18px; }
    .ch-heading-link { justify-self: start; }
    .ch-culture-grid { grid-template-columns: 1fr; }
    .ch-culture-media { min-height: 560px; }
    .ch-principles-grid,
    .ch-guide-grid { grid-template-columns: 1fr; }
    .ch-principles-grid article { min-height: 220px; }
    .ch-principle-number { margin-bottom: 30px; }
    .ch-guide-grid > a { min-height: 240px; }
    .ch-footer-grid { grid-template-columns: repeat(2, 1fr); }
    .ch-shop-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}

@media (max-width: 620px) {
    .ch-shell,
    .ch-header-inner { width: min(100% - 28px, 1180px); }
    .ch-cart-link { width: 44px; padding: 0; }
    .ch-cart-count { position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; }
    .ch-search-panel { position: fixed; top: 74px; right: 14px; left: 14px; width: auto; }
    .admin-bar .ch-search-panel { top: 120px; }
    .ch-hero-grid { gap: 48px; padding-block: 60px 72px; }
    .ch-hero h1 { font-size: clamp(43px, 13.5vw, 58px); }
    .ch-hero-lede { font-size: 16px; }
    .ch-hero-actions { display: grid; }
    .ch-hero-actions .ch-button { width: 100%; }
    .ch-hero-points { display: grid; }
    .ch-hero-visual { min-height: 390px; }
    .ch-hero-image-main { inset: 0 0 22px 38px; border-radius: 36% 36% 18px 18px; }
    .ch-hero-image-secondary { width: 130px; height: 156px; border-width: 6px; }
    .ch-hero-note { right: -4px; bottom: 30px; min-width: 174px; padding: 13px 14px; }
    .ch-proof-grid { grid-template-columns: 1fr; }
    .ch-proof-grid > div { min-height: 86px; border: 0 !important; border-bottom: 1px solid rgba(66,70,53,.12) !important; padding-inline: 8px; }
    .ch-proof-grid > div:last-child { border-bottom: 0 !important; }
    .ch-section { padding-block: 70px; }
    .ch-category-grid { grid-template-columns: 1fr; }
    .ch-category-card { min-height: 370px; }
    ul.ch-product-grid,
    .woocommerce ul.products.ch-product-grid,
    .ch-shop-product-grid { grid-template-columns: 1fr !important; }
    .ch-product-media { aspect-ratio: 1.15 / 1; }
    .ch-culture-media { min-height: 450px; border-radius: 100px 20px 20px 20px; }
    .ch-culture-stamp { width: 145px; height: 145px; }
    .ch-page-hero { min-height: 310px; }
    .ch-page-hero-content { padding-block: 62px 52px; }
    .ch-page-hero h1 { font-size: 44px; }
    .ch-shop-shell { padding-block: 55px 80px; }
    .ch-shop-controls { align-items: stretch; flex-direction: column; }
    .ch-category-filter { min-width: 0; }
    .ch-sort-control { align-items: flex-start; flex-direction: column; gap: 8px; }
    .ch-sort-control .woocommerce-ordering,
    .ch-sort-control select { width: 100%; }
    .ch-footer-cta-inner { align-items: flex-start; flex-direction: column; }
    .ch-footer-grid { grid-template-columns: 1fr; }
    .ch-footer-bottom { align-items: flex-start; flex-direction: column; }
}

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