/* Larimar Miner — "Tide" storefront design system (Direction A).
   Coastal-editorial: warm paper, navy ink, sand + gold accents, square corners, hairline borders, no shadows on
   light. Editorial voice = a single --display token (Cormorant by default; .display-geo swaps it to geometric Jost
   for comparison). Self-contained; loaded only by layouts.tide. Fonts self-hosted (CSP font-src 'self'):
   cormorant.css + fonts.css (Jost/Poppins). */

:root {
    --ink: #1c2740;
    --ink-hover: #2c3850;
    --paper: #FBF9F5;
    --sand: #f1eadc;
    --sand-line: #ece3d3;
    --sand-line-2: #e6dcc8;
    --card-border: #d8cdb8;
    --gold: #bda891;
    --gold-deep: #8a7a5e;
    --mono-muted: #9a8f7c;
    --body: #4a5263;
    --body-subtle: #3a4254;
    --body-2: #6a7283;
    --cream: #e7ddcb;
    --cream-2: #f4ecdc;
    --foot: #cdd3df;
    --foot-muted: #9aa3b5;
    --foot-fine: #6a7285;
    --foot-line: #2c3850;
    --larimar-grad: radial-gradient(120% 95% at 52% 38%, #e2f0ee 0%, #b3d6d6 28%, #7eb1b6 52%, #4d8497 74%, #2f5479 100%);

    --gutter: 56px;
    --maxw: 1440px;

    --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --ui: "Jost", "Futura PT", ui-sans-serif, system-ui, sans-serif;
    --body-font: "Poppins", ui-sans-serif, system-ui, sans-serif;
    --mono: ui-monospace, Menlo, Monaco, "Courier New", monospace;
}

/* Comparison variant: editorial face becomes the geometric UI sans. */
.display-geo { --display: var(--ui); }
.display-geo .t-display { letter-spacing: -.02em; font-weight: 600; }

*, *::before, *::after { box-sizing: border-box; }
.tide {
    margin: 0; background: var(--paper); color: var(--ink);
    font-family: var(--body-font); font-weight: 300; line-height: 1.75;
    -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
.tide img { display: block; max-width: 100%; }
.tide a { color: inherit; text-decoration: none; }
.tide :is(h1, h2, h3) { text-wrap: balance; }

.t-display { font-family: var(--display); font-weight: 500; color: var(--ink); }
.t-mono { font-family: var(--mono); text-transform: uppercase; }
.t-eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); }

/* Shared specimen-photo badges: one primary at left, up to two data-derived highlights at right. */
.t-card-badge {
    position: absolute; left: 14px; top: 14px; z-index: 2;
    border: 1px solid transparent; background: rgba(251,249,245,.92); padding: 5px 9px;
    font-family: var(--mono); font-size: 10px; line-height: 1.4; letter-spacing: .08em;
    text-transform: uppercase; color: var(--ink);
}
.t-card-badge-stack {
    position: absolute; top: 14px; right: 14px; z-index: 2;
    display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
    max-width: calc(100% - 28px); pointer-events: none;
}
.t-card-badge-stack .t-card-badge { position: static; max-width: 100%; text-align: right; }
.t-card-badge--vault,
.t-card-badge--statement { background: var(--ink); color: #fff; }
.t-card-badge--copper { border-color: #a76a3f; background: #8b4f2f; color: #fff; }
.t-card-badge--exceptional { border-color: var(--gold); background: var(--gold-deep); color: #fff; }
.t-card-badge--gold { border-color: var(--gold); background: var(--cream-2); color: var(--gold-deep); }
.t-card-badge--silver { border-color: var(--card-border); background: var(--paper); color: var(--body); }

/* Temporary inventory-reference badge. Visibility is controlled server-side by
   SHOW_PUBLIC_SKU_REFERENCES and defaults off for production safety. */
.t-sku-badge {
    position: absolute; right: 14px; bottom: 14px; z-index: 3; max-width: calc(100% - 28px);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap; pointer-events: none;
    border: 1px solid rgba(255,255,255,.3); background: rgba(20,33,52,.92); color: #fff;
    padding: 6px 9px; box-shadow: 0 3px 12px rgba(12,21,36,.18);
    font-family: var(--mono); font-size: 10px; line-height: 1.35; letter-spacing: .06em;
    text-transform: uppercase; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}

.t-wrap { max-width: var(--maxw); margin: 0 auto; }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { .tide * { transition: none !important; } }

/* ---- Buttons / links ------------------------------------------------------------------------- */
/* Scoped as .tide .btn-solid (0,2,0): the `.tide a { color: inherit }` reset is (0,1,1) and used
   to beat the bare `.btn-solid` class (0,1,0), leaving anchor buttons navy-on-navy (invisible). */
.tide .btn-solid {
    display: inline-block; background: var(--ink); color: #fff; font-family: var(--ui);
    font-size: 14px; letter-spacing: .08em; text-transform: uppercase; padding: 16px 30px; border: 0; cursor: pointer;
    transition: background .2s ease;
}
.tide .btn-solid:hover { background: #28344f; color: #fff; }
.btn-outline {
    display: inline-block; font-family: var(--ui); font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
    color: var(--ink); border: 1px solid var(--card-border); padding: 7px 13px; background: transparent; cursor: pointer;
    transition: border-color .2s ease, color .2s ease;
}
.btn-outline:hover { border-color: var(--ink); }
.link-underline {
    font-family: var(--ui); font-size: 14px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink);
    border-bottom: 1px solid var(--gold); padding-bottom: 4px; transition: border-color .2s ease, color .2s ease;
}
.link-underline:hover { border-bottom-color: var(--ink); }

/* ---- Announcement ---------------------------------------------------------------------------- */
.t-announce {
    background: var(--ink); color: var(--cream); text-align: center; padding: 11px;
    font-family: var(--ui); font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
}

/* ---- Nav ------------------------------------------------------------------------------------- */
.t-nav {
    display: flex; align-items: center; justify-content: space-between; padding: 18px var(--gutter);
    border-bottom: 1px solid var(--sand-line); max-width: var(--maxw); margin: 0 auto;
    position: relative; z-index: 70; overflow: visible; background: var(--paper);
}
.t-brand { display: flex; flex: none; align-items: center; gap: 8px; }
.t-brand__logo { display: block; height: 72px; width: auto; }
.t-wordmark { font-family: var(--ui); font-weight: 600; font-size: 22px; letter-spacing: .34em; color: var(--ink); }
.t-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: inline-block; }
.t-nav__center { display: flex; gap: 34px; font-family: var(--ui); font-size: 14px; letter-spacing: .04em; color: var(--body-subtle); }
.t-nav__center a:hover { color: var(--ink); }
.t-nav__center a.is-active { color: var(--ink); font-weight: 600; }
.t-nav__utils { display: flex; align-items: center; gap: 22px; font-family: var(--ui); font-size: 13px; letter-spacing: .04em; color: var(--body-subtle); }
.t-nav__utils a:hover { color: var(--ink); }
.t-nav__utils a.is-strong { color: var(--ink); font-weight: 600; }
/* mobile hamburger (pure-CSS toggle; the checkbox is a sibling before .t-nav) */
.t-nav__check { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.t-nav__burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px 2px; order: -1; }
.t-nav__burger span { display: block; width: 24px; height: 1.5px; background: var(--ink); transition: transform .25s ease, opacity .2s ease; }

/* ---- Hero ------------------------------------------------------------------------------------ */
.t-hero { display: grid; grid-template-columns: 46% 54%; max-width: var(--maxw); margin: 0 auto; }
.t-hero__copy { padding: 84px var(--gutter); display: flex; flex-direction: column; justify-content: center; }
.t-hero__copy .t-eyebrow { margin-bottom: 26px; }
.t-hero h1 { font-family: var(--display); font-weight: 500; font-size: clamp(2.9rem, 6.4vw, 78px); line-height: .98; margin: 0 0 26px; letter-spacing: -.01em; overflow-wrap: normal; }
.t-hero__lede { font-size: 16px; line-height: 1.75; color: var(--body); max-width: 430px; margin: 0 0 34px; font-weight: 300; }
.t-cta-row { display: flex; align-items: center; gap: 26px; margin-bottom: 42px; flex-wrap: wrap; }
.t-stats { display: flex; gap: 40px; border-top: 1px solid var(--sand-line); padding-top: 24px; flex-wrap: wrap; }
.t-stat__label { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; color: var(--mono-muted); text-transform: uppercase; }
.t-stat__value { font-family: var(--display); font-size: 26px; color: var(--ink); }

.t-hero__media { position: relative; min-height: 640px; background: var(--larimar-grad); overflow: hidden; }
.t-hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.t-pricetag { position: absolute; left: 36px; bottom: 36px; background: rgba(251,249,245,.94); padding: 14px 20px; }
.t-pricetag__label { font-family: var(--mono); font-size: 10px; letter-spacing: .16em; color: var(--gold-deep); text-transform: uppercase; }
.t-pricetag__value { font-family: var(--display); font-size: 34px; color: var(--ink); line-height: 1; }

/* ---- Vault teaser ---------------------------------------------------------------------------- */
.t-vault-teaser { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 40px var(--gutter); background: var(--ink); color: var(--cream); flex-wrap: wrap; }
.t-vault-teaser__lead { display: flex; align-items: baseline; gap: 24px; flex-wrap: wrap; }
.t-vault-teaser__kicker { font-family: var(--mono); font-size: 12px; letter-spacing: .16em; color: var(--gold); }
.t-vault-teaser__line { font-family: var(--display); font-size: clamp(1.5rem, 2.6vw, 30px); font-style: italic; color: var(--cream-2); }
.t-vault-teaser .link-underline { color: var(--cream); }

/* ---- Shop preview ---------------------------------------------------------------------------- */
.t-shop { padding: 76px var(--gutter) 30px; max-width: var(--maxw); margin: 0 auto; }
.t-shop__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 38px; gap: 20px; flex-wrap: wrap; }
.t-shop__head h2 { font-family: var(--display); font-weight: 500; font-size: clamp(2rem, 3.6vw, 44px); margin: 0; }
.t-shop__all { font-family: var(--ui); font-size: 13px; letter-spacing: .06em; color: var(--body-2); }
.t-shop__all:hover { color: var(--ink); }
.t-products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.t-product__media { position: relative; height: 280px; background: var(--larimar-grad); overflow: hidden; }
.t-product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.t-product:hover .t-product__media img { transform: scale(1.03); }
.t-product__name { font-family: var(--display); font-size: 22px; margin-top: 16px; color: var(--ink); }
.t-product__spec { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; color: var(--mono-muted); margin-top: 4px; }
.t-product__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.t-price { font-family: var(--ui); font-weight: 500; font-size: 16px; color: var(--ink); }

/* ---- Provenance band ------------------------------------------------------------------------- */
.t-provenance { display: grid; grid-template-columns: 1fr 1fr; margin-top: 46px; }
.t-provenance__media { position: relative; min-height: 460px; background: linear-gradient(160deg, #c8b496 0%, #ab9374 55%, #6f5b44 100%); overflow: hidden; }
.t-provenance__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.t-provenance__copy { background: var(--sand); padding: 78px 64px; display: flex; flex-direction: column; justify-content: center; }
.t-provenance__copy .t-eyebrow { margin-bottom: 22px; }
.t-provenance__copy h2 { font-family: var(--display); font-weight: 500; font-size: clamp(2.25rem, 4vw, 50px); line-height: 1.02; margin: 0 0 22px; }
.t-provenance__copy p { font-size: 15px; line-height: 1.8; color: var(--body); font-weight: 300; max-width: 420px; margin: 0 0 30px; }
.t-provenance__copy .link-underline { width: fit-content; }

/* ---- Education ------------------------------------------------------------------------------- */
.t-education { padding: 80px var(--gutter); max-width: var(--maxw); margin: 0 auto; }
.t-edu-head { text-align: center; margin-bottom: 50px; }
.t-edu-head .t-eyebrow { display: block; margin-bottom: 14px; }
.t-edu-head h2 { font-family: var(--display); font-weight: 500; font-size: clamp(2rem, 3.6vw, 44px); margin: 0; }
.t-edu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.t-edu-item { border-top: 2px solid var(--ink); padding-top: 22px; }
.t-edu-num { font-family: var(--display); font-size: 40px; color: var(--gold); line-height: 1; }
.t-edu-item h3 { font-family: var(--ui); font-weight: 600; font-size: 18px; letter-spacing: .02em; margin: 14px 0 10px; color: var(--ink); }
.t-edu-item p { font-size: 14px; line-height: 1.75; color: var(--body); font-weight: 300; margin: 0; }

/* ---- Certificate strip ----------------------------------------------------------------------- */
.t-cert-strip { display: flex; align-items: center; justify-content: center; gap: 26px; padding: 42px; background: var(--sand); border-top: 1px solid var(--sand-line-2); border-bottom: 1px solid var(--sand-line-2); text-align: center; flex-wrap: wrap; }
.t-seal { width: 54px; height: 54px; border-radius: 50%; border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-style: italic; font-size: 20px; color: var(--gold-deep); flex: none; }
.t-cert-strip__line { font-family: var(--display); font-size: clamp(1.3rem, 2.2vw, 26px); color: var(--ink); }

/* ---- Footer ---------------------------------------------------------------------------------- */
.t-footer { background: var(--ink); color: var(--foot); padding: 64px var(--gutter) 40px; }
.t-footer__inner { max-width: var(--maxw); margin: 0 auto; }
.t-footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--foot-line); }
.t-footer__wordmark { font-family: var(--ui); font-weight: 600; font-size: 22px; letter-spacing: .32em; color: #fff; margin-bottom: 18px; }
.t-footer__blurb { font-size: 14px; line-height: 1.7; color: var(--foot-muted); font-weight: 300; max-width: 300px; margin: 0; }
.t-footer__heading { font-family: var(--ui); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.t-footer__links { display: flex; flex-direction: column; gap: 11px; font-size: 14px; color: var(--foot-muted); }
.t-footer__links a:hover { color: #fff; }
.t-newsletter-note { font-size: 13px; color: var(--foot-muted); margin: 0 0 14px; }
.t-newsletter { display: flex; border: 1px solid #3a4866; }
.t-newsletter input { flex: 1; padding: 11px 14px; font-size: 13px; color: #fff; background: transparent; border: 0; font-family: var(--body-font); }
.t-newsletter input::placeholder { color: #7f889c; }
.t-newsletter button { background: var(--gold); color: var(--ink); padding: 11px 16px; font-family: var(--ui); font-size: 13px; border: 0; cursor: pointer; }
.t-footer__bottom { display: flex; justify-content: space-between; padding-top: 24px; font-size: 12px; color: var(--foot-fine); letter-spacing: .04em; gap: 16px; flex-wrap: wrap; }

/* ---- Responsive ------------------------------------------------------------------------------ */
@media (max-width: 1040px) {
    .t-footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .t-products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1180px) {
    /* Preserve the complete human-messaging explanation by collapsing the wider primary navigation first. */
    .t-nav__burger { display: inline-flex; }
    .t-nav__center {
        display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 30;
        flex-direction: column; gap: 0; background: var(--paper); border-bottom: 1px solid var(--sand-line);
        padding: 4px var(--gutter) 16px; box-shadow: 0 18px 30px rgba(16,36,46,.07);
    }
    .t-nav__check:checked ~ .t-nav .t-nav__center { display: flex; }
    .t-nav__center a { padding: 13px 0; border-bottom: 1px solid var(--sand-line); font-size: 15px; }
    .t-nav__center a:last-child { border-bottom: 0; }
    .t-nav__check:checked ~ .t-nav .t-nav__burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .t-nav__check:checked ~ .t-nav .t-nav__burger span:nth-child(2) { opacity: 0; }
    .t-nav__check:checked ~ .t-nav .t-nav__burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}
@media (max-width: 900px) {
    :root { --gutter: 24px; }
    .t-nav { padding-block: 16px; }
    .t-brand__logo { height: 60px; }
    .t-hero { grid-template-columns: 1fr; }
    .t-hero__copy { padding: 48px var(--gutter); }
    .t-hero__media { min-height: 420px; }
    .t-provenance { grid-template-columns: 1fr; }
    .t-edu-grid { grid-template-columns: 1fr; gap: 28px; }
    .t-vault-teaser { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
    .t-products { grid-template-columns: 1fr; }
    .t-nav { padding-block: 14px; }
    .t-brand__logo { height: 54px; }
    .t-nav__utils { gap: 14px; font-size: 12px; }
    .t-hero h1 { font-size: clamp(2.75rem, 12.25vw, 2.9rem); }
    .t-provenance__copy { padding: 44px var(--gutter); }
    .t-footer__top { grid-template-columns: 1fr; }
    .t-footer__bottom { flex-direction: column; }
}

/* ---- Primary first-party messaging CTA ------------------------------------------------------- */
.t-message-cta {
    position: relative; isolation: isolate; overflow: hidden;
    display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 16px;
    width: 100%; min-width: 0; padding: 20px 22px; color: #fff !important;
    border: 1px solid #223a57; background: linear-gradient(120deg, var(--ink) 0%, #234b70 62%, #176e8c 100%);
    box-shadow: 0 12px 28px rgba(20,33,52,.17);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.t-message-cta::before {
    content: ""; position: absolute; z-index: -1; inset: 0;
    background: radial-gradient(circle at 12% 0%, rgba(255,255,255,.15), transparent 34%);
    pointer-events: none;
}
.t-message-cta:hover {
    color: #fff !important; border-color: #1d708e; box-shadow: 0 16px 34px rgba(20,33,52,.24);
    transform: translateY(-2px);
}
.t-message-cta:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }
.t-message-cta__icon {
    display: grid; width: 48px; height: 48px; place-items: center; color: #fff;
    border: 1px solid rgba(255,255,255,.24); border-radius: 50%; background: rgba(255,255,255,.1);
}
.t-message-cta__copy { display: grid; min-width: 0; gap: 4px; line-height: 1.18; }
.t-message-cta__label {
    color: var(--cream-2); font-family: var(--mono); font-size: 9px; letter-spacing: .13em; text-transform: uppercase;
}
.t-message-cta__copy strong { color: #fff; font-family: var(--ui); font-size: 17px; font-weight: 600; }
.t-message-cta__copy small { max-width: 520px; color: #dce8ef; font-size: 12px; font-weight: 300; line-height: 1.5; }
.t-message-cta__arrow { color: var(--gold); font-size: 24px; transition: transform .18s ease; }
.t-message-cta:hover .t-message-cta__arrow { transform: translateX(3px); }
.t-message-cta--compact { gap: 12px; padding: 15px 16px; }
.t-message-cta--compact .t-message-cta__icon { width: 40px; height: 40px; }
.t-message-cta--compact .t-message-cta__copy strong { font-size: 14px; }
.t-message-cta--compact .t-message-cta__copy small { font-size: 11px; }
.t-message-cta--dark-surface { border-color: rgba(255,255,255,.26); box-shadow: 0 12px 28px rgba(0,0,0,.2); }
.t-message-cta--dark-surface:focus-visible { outline-color: var(--gold); }

/* ---- Shared contact band (content pages) ----------------------------------------------------- */
.t-eyebrow--diamond::before { content: "\25C6\00A0"; color: var(--gold); }
.t-contact-band { background: var(--sand); border-top: 1px solid var(--sand-line-2); border-bottom: 1px solid var(--sand-line-2); }
.t-contact-band__inner { max-width: var(--maxw); margin: 0 auto; padding: 60px var(--gutter); display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.t-contact-band__lead h2 { font-family: var(--display); font-weight: 600; letter-spacing: -.02em; font-size: clamp(1.8rem, 3vw, 38px); margin: 10px 0 0; }
.t-contact-band__intro { max-width: 520px; margin: 16px 0 0; color: var(--body); font-size: 14px; font-weight: 300; line-height: 1.75; }
.t-contact-band__channels { display: grid; gap: 20px; min-width: 0; }
.t-contact-band__secondary { padding-top: 17px; border-top: 1px solid var(--sand-line-2); }
.t-contact-band__secondary-title { margin: 0 0 12px; color: var(--body); font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.t-contact-band__secondary-links { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr); gap: 14px 24px; }
.t-contact-band__secondary-links a { display: flex; min-width: 0; flex-direction: column; gap: 3px; color: var(--ink); }
.t-contact-band__secondary-links a:only-child { grid-column: 1 / -1; }
.t-contact-band__secondary-links a:hover .t-contact-band__val { color: var(--gold-deep); }
.t-contact-band__label { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--body); }
.t-contact-band__val { overflow-wrap: anywhere; color: var(--ink); font-family: var(--ui); font-size: 14px; font-weight: 600; }
.t-contact-band__secondary-links small { color: var(--body); font-size: 10px; font-weight: 300; }

/* Contact-page endpoint: the same first-party messaging path, with an email/form fallback. */
.t-contact-page-connect {
    display: grid; gap: 24px; max-width: 780px; margin: 48px auto 0; padding: clamp(24px, 5vw, 46px);
    border: 1px solid var(--sand-line-2); background: var(--sand);
}
.t-contact-page-connect__head h2 { margin: 10px 0 0; color: var(--ink); font-size: clamp(1.8rem, 3vw, 38px); }
.t-contact-page-connect__lede { max-width: 650px; margin: 14px 0 0; color: var(--body); font-size: 14px; font-weight: 300; line-height: 1.75; }
.t-contact-page-connect__fallback { display: flex; flex-wrap: wrap; gap: 5px 12px; margin: -5px 0 0; color: var(--body); font-size: 12px; }
.t-contact-page-connect__fallback a { color: var(--ink); font-weight: 600; }
.t-contact-form__intro h3 { margin: 8px 0; color: var(--ink); font-size: 26px; }
.t-contact-form__intro > p:last-child { margin: 0; color: var(--body); font-size: 14px; line-height: 1.7; }
.t-contact-form { display: grid; gap: 22px; }
.t-contact-form__guard { position: absolute; left: -9999px; }
.t-contact-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.t-contact-form__field { display: grid; gap: 8px; min-width: 0; color: var(--ink); font-family: var(--ui); font-size: 12px; letter-spacing: .04em; }
.t-contact-form__field--full { grid-column: 1 / -1; }
.t-contact-form__field input, .t-contact-form__field textarea { width: 100%; padding: 13px 14px; color: var(--ink); border: 1px solid var(--card-border); background: #fff; border-radius: 0; font: 13px var(--body-font); }
.t-contact-form__field input:focus, .t-contact-form__field textarea:focus { outline: 2px solid var(--ink); outline-offset: 2px; }
.t-contact-form__field textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.t-contact-form__note { margin: 0; color: var(--body); font-size: 12px; line-height: 1.6; }
.t-contact-form__submit { width: fit-content; padding: 15px 28px; color: #fff; border: 0; background: var(--ink); cursor: pointer; font-family: var(--ui); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.t-contact-form__submit:hover { background: var(--ink-hover); }
.t-contact-form__submit:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }
.t-contact-form__status, .t-contact-form__error { padding: 13px 16px; font-size: 13px; }
.t-contact-form__status { color: #2e5d34; border: 1px solid #cfe3cf; background: #eef6ee; }
.t-contact-form__error { color: #8a2b2b; border: 1px solid #e8cccc; background: #fbecec; }

@media (max-width: 760px) {
    .t-contact-band__inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 560px) {
    .t-message-cta { grid-template-columns: auto minmax(0, 1fr); gap: 12px; padding: 17px; }
    .t-message-cta__arrow { display: none; }
    .t-message-cta__icon { width: 42px; height: 42px; }
    .t-message-cta__copy strong { font-size: 15px; }
    .t-contact-band__secondary-links, .t-contact-form__grid { grid-template-columns: 1fr; }
    .t-contact-form__field--full { grid-column: auto; }
}

/* Footer newsletter status */
.t-newsletter-status { font-size: 13px; color: #bfe3c4; margin: 0 0 10px; }
.t-newsletter-status--err { color: #e7b7b7; margin: 8px 0 0; }

/* ---- Language switcher (nav utils) ----------------------------------------------------------- */
.t-lang { position: relative; z-index: 50; font-family: var(--ui); }
.t-lang__summary {
    display: inline-flex; align-items: center; gap: 7px; min-height: 38px; padding: 5px 10px 5px 6px;
    color: var(--ink); border: 1px solid var(--card-border); border-radius: 10px; background: #fff;
    box-shadow: 0 3px 10px rgba(20,33,52,.06); cursor: pointer; list-style: none; user-select: none;
}
.t-lang__summary::-webkit-details-marker { display: none; }
.t-lang__summary::marker { content: ""; }
.t-lang__summary:hover { border-color: var(--gold-deep); background: var(--sand); }
.t-lang[open] .t-lang__summary { border-color: var(--ink); background: #fff; box-shadow: 0 0 0 3px rgba(28,39,64,.07); }
.t-lang__flag { width: 22px; height: 22px; flex: 0 0 22px; }
.t-lang__current { font-family: var(--ui); font-size: 11px; font-weight: 600; letter-spacing: .08em; }
.t-lang__caret { display: grid; color: var(--body-2); line-height: 1; transition: transform .18s ease; }
.t-lang[open] .t-lang__caret { transform: rotate(180deg); }
.t-lang__menu {
    position: absolute; z-index: 100; top: calc(100% + 8px); right: 0; min-width: 194px; padding: 6px;
    border: 1px solid var(--sand-line-2); border-radius: 12px; background: #fff;
    box-shadow: 0 16px 36px rgba(16,36,46,.12); white-space: nowrap;
}
.t-lang__menu a {
    display: grid; grid-template-columns: 22px minmax(0, 1fr) 16px; align-items: center; gap: 11px;
    min-height: 44px; padding: 8px 10px; color: var(--body-2); border-radius: 8px;
}
.t-lang__menu a:hover { color: var(--ink); background: #f7f3eb; }
.t-lang__menu a.is-active { color: var(--ink); background: var(--sand); font-weight: 600; }
.t-lang__menu a.is-fallback { color: var(--body-2); }
.t-lang__label { display: grid; gap: 1px; font-size: 13px; line-height: 1.15; }
.t-lang__label small { color: var(--body-2); font-size: 9px; font-weight: 400; letter-spacing: .04em; text-transform: uppercase; }
.t-lang__selected { display: grid; min-height: 16px; place-items: center; color: var(--gold-deep); font-size: 13px; font-weight: 600; text-align: center; }

/* Header CTA for the private, ongoing in-platform conversation channel. */
.t-live-message {
    display: inline-grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 9px;
    min-height: 48px; padding: 7px 13px 7px 8px; color: #fff !important; border: 1px solid var(--ink);
    background: linear-gradient(115deg, var(--ink), #284d70); box-shadow: 0 8px 22px rgba(20,33,52,.16);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.t-live-message:hover, .t-live-message:focus-visible {
    color: #fff !important; background: linear-gradient(115deg, #27425f, #087ea4);
    box-shadow: 0 11px 28px rgba(20,33,52,.27); transform: translateY(-1px);
}
.t-live-message__icon { display: grid; width: 32px; height: 32px; place-items: center; color: #fff; border-radius: 50%; background: rgba(255,255,255,.13); }
.t-live-message__copy { display: grid; gap: 2px; line-height: 1.05; }
.t-live-message__copy strong { font-family: var(--ui); font-size: 12px; letter-spacing: .025em; white-space: nowrap; }
.t-live-message__copy small { color: #d8e6f0; font-size: 9px; font-weight: 400; letter-spacing: .01em; white-space: nowrap; }
.t-live-message__arrow { color: var(--gold); font-size: 16px; }

@media (max-width: 1180px) {
    .t-live-message__arrow { display: none; }
}
@media (max-width: 900px) {
    .t-live-message { display: none; }
}

/* ---- Content homepage (/de — the DB-driven homepage re-homed onto Tide) ---------------------- */
.t-home-pillars { padding: 76px var(--gutter) 30px; max-width: var(--maxw); margin: 0 auto; }
.t-home-pillars .t-products { margin-top: 38px; grid-template-columns: repeat(5, 1fr); }
.t-home-pillars .t-product__media { height: 220px; }
.t-home-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; }
.t-home-strip img { width: 100%; height: 130px; object-fit: cover; display: block; }
.t-home-questions { padding: 70px var(--gutter) 80px; max-width: var(--maxw); margin: 0 auto; }
.t-home-questions__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 44px; }
.t-home-question { border-top: 2px solid var(--ink); padding-top: 20px; display: block; }
.t-home-question h3 { font-family: var(--ui); font-weight: 600; font-size: 17px; letter-spacing: .02em; margin: 0 0 10px; color: var(--ink); }
.t-home-question p { font-size: 14px; line-height: 1.75; color: var(--body); font-weight: 300; margin: 0; }
.t-home-question:hover h3 { color: var(--gold-deep); }
.t-home-evidence { background: var(--ink); padding: 76px var(--gutter); text-align: center; }
.t-home-evidence .t-eyebrow { color: var(--gold); }
.t-home-evidence h2 { font-family: var(--display); font-weight: 500; font-size: clamp(1.6rem, 2.8vw, 34px); line-height: 1.25; color: var(--cream-2); max-width: 880px; margin: 16px auto 18px; }
.t-home-evidence p { font-size: 15px; line-height: 1.8; color: var(--foot-muted); font-weight: 300; max-width: 640px; margin: 0 auto 28px; }
.t-home-evidence .link-underline { color: var(--cream); }
.t-home-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter) 80px; }
.t-home-gallery figure { margin: 0; }
.t-home-gallery img { width: 100%; height: 240px; object-fit: cover; display: block; }
@media (max-width: 1040px) {
    .t-home-pillars .t-products { grid-template-columns: repeat(2, 1fr); }
    .t-home-questions__grid { grid-template-columns: repeat(2, 1fr); }
    .t-home-strip { grid-template-columns: repeat(3, 1fr); }
    .t-home-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .t-home-pillars .t-products { grid-template-columns: 1fr; }
    .t-home-questions__grid { grid-template-columns: 1fr; }
    .t-home-strip { grid-template-columns: repeat(2, 1fr); }
}
.t-home-gallery-wrap { padding-top: 70px; }
.t-home-news { background: var(--ink); border-bottom: 1px solid var(--foot-line); padding: 70px var(--gutter); text-align: center; }
.t-home-news h2 { font-family: var(--display); font-weight: 500; color: var(--cream-2); font-size: clamp(1.5rem, 2.6vw, 30px); line-height: 1.3; max-width: 780px; margin: 0 auto 14px; }
.t-home-news p { color: var(--foot-muted); font-size: 14px; line-height: 1.75; font-weight: 300; max-width: 560px; margin: 0 auto 28px; }
.t-home-news .t-newsletter { max-width: 420px; margin: 0 auto; }
