@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800;900&family=Fraunces:opsz,wght@9..144,500;600;700&family=Libre+Baskerville:wght@400;700&family=Outfit:wght@400;500;600;700;800;900&family=Playfair+Display:wght@500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --ink: #101828;
    --muted: #5d6678;
    --line: rgba(16, 24, 40, 0.12);
    --paper: #ffffff;
    --soft: #f5f7fb;
    --brand: #2e9cb0;
    --brand-dark: #1d6f7e;
    --accent: #e8b86d;
    --radius: 8px;
    --shadow: 0 18px 44px rgba(16, 24, 40, 0.12);
    --container: 1180px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 86px;
}

body {
    min-height: 100vh;
    font-family: var(--font-body, "Inter", "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    overflow-x: hidden;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    opacity: 0.72;
    pointer-events: none;
    background: var(--page-texture, none);
}

body::before {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
    height: 3px;
    transform: scaleX(var(--scroll-progress, 0));
    transform-origin: left;
    background: var(--accent);
    pointer-events: none;
}

body.nav-open,
body.cart-open {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
    border: 0;
}

.container {
    width: min(100% - 36px, var(--container));
    margin-inline: auto;
}

.demo-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.nav-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-weight: 900;
    letter-spacing: 0;
    color: var(--ink);
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: var(--brand);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(16, 24, 40, 0.1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--muted);
    font-size: 0.93rem;
    font-weight: 800;
}

.nav-links a:hover {
    background: var(--soft);
    color: var(--ink);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--soft);
    border: 1px solid var(--line);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.hamburger span {
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: var(--ink);
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 18px;
    border-radius: 8px;
    background: var(--brand);
    color: #fff;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 12px 24px rgba(46, 156, 176, 0.2);
}

.button:hover {
    background: var(--brand-dark);
}

.button.secondary {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
    box-shadow: none;
}

.cart-button {
    position: relative;
}

.cart-count {
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    display: inline-grid;
    place-items: center;
    border-radius: 99px;
    background: #fff;
    color: var(--brand-dark);
    font-size: 0.76rem;
}

.hero {
    min-height: calc(100vh - 78px);
    display: grid;
    align-items: end;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #111827;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(6, 12, 24, 0.82) 0%, rgba(6, 12, 24, 0.48) 52%, rgba(6, 12, 24, 0.16) 100%);
}

.hero-content {
    max-width: 760px;
    padding: clamp(70px, 12vh, 130px) 0;
    color: #fff;
    position: relative;
}

.hero-content::before {
    content: "";
    position: absolute;
    left: -28px;
    top: clamp(42px, 8vh, 84px);
    width: 5px;
    height: 128px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 38px rgba(232, 184, 109, 0.3);
}

.eyebrow {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    font-family: var(--font-display, var(--font-body, "Inter", system-ui, sans-serif));
    line-height: 1.05;
    letter-spacing: 0;
}

h1 {
    margin-top: 14px;
    max-width: 720px;
    font-size: clamp(2.8rem, 8vw, 6.6rem);
    font-weight: 800;
}

.lead {
    max-width: 620px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.03rem, 2vw, 1.24rem);
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions .secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.34);
}

.section {
    padding: clamp(64px, 9vw, 104px) 0;
}

.section.soft {
    background: var(--soft);
}

.section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-head h2 {
    margin-top: 8px;
    font-size: clamp(2rem, 4vw, 3.7rem);
}

.section-head p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 1.04rem;
}

.grid {
    display: grid;
    gap: 22px;
}

.cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.product-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(16, 24, 40, 0.06);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.card:hover,
.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(16, 24, 40, 0.1);
}

.card {
    padding: 24px;
}

.card h3,
.product-card h3 {
    font-size: 1.25rem;
}

.card p,
.product-card p {
    margin-top: 10px;
    color: var(--muted);
}

.product-media {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--soft);
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-body {
    padding: 20px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.price-row {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 16px;
}

.price {
    color: var(--brand-dark);
    font-size: 1.18rem;
    font-weight: 900;
}

.add-to-cart {
    min-height: 40px;
    padding: 10px 13px;
    border-radius: 8px;
    background: var(--ink);
    color: #fff;
    font-weight: 900;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 5vw, 60px);
    align-items: center;
}

.split img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stat-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.stat {
    min-width: 135px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.84);
}

.stat strong {
    display: block;
    color: var(--brand-dark);
    font-size: 1.6rem;
    line-height: 1;
}

.stat span {
    color: var(--muted);
    font-size: 0.87rem;
    font-weight: 800;
}

.banner {
    padding: 44px;
    border-radius: var(--radius);
    background: var(--ink);
    color: #fff;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}

.banner p {
    color: rgba(255, 255, 255, 0.74);
    margin-top: 8px;
}

.site-footer {
    padding: 58px 0 28px;
    background: var(--footer-bg, #0b1220);
    color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, minmax(140px, 1fr));
    gap: 32px;
    align-items: start;
}

.footer-inner strong {
    color: #fff;
}

.footer-inner p {
    max-width: 370px;
    margin-top: 10px;
}

.footer-column {
    display: grid;
    gap: 10px;
}

.footer-column h3 {
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-column a,
.footer-column span {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 0.88rem;
}

.cart-panel {
    position: fixed;
    inset: 0;
    z-index: 80;
    pointer-events: none;
}

.cart-panel.active {
    pointer-events: auto;
}

.cart-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 18, 32, 0.48);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.cart-panel.active .cart-overlay {
    opacity: 1;
}

.cart-drawer {
    position: relative;
    width: min(100%, 410px);
    min-height: 100%;
    margin-left: auto;
    padding: 24px;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    box-shadow: -20px 0 50px rgba(16, 24, 40, 0.18);
    display: flex;
    flex-direction: column;
}

.cart-panel.active .cart-drawer {
    transform: translateX(0);
}

.cart-top,
.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cart-close {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--soft);
    color: var(--ink);
    font-size: 1.35rem;
}

.cart-items {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.cart-item small {
    display: block;
    color: var(--muted);
}

.remove-item {
    color: #a23636;
    background: transparent;
    font-weight: 900;
}

.cart-empty {
    color: var(--muted);
}

.cart-total {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: 1.1rem;
}

.checkout {
    margin-top: 16px;
    width: 100%;
}

.demo-note {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.82rem;
}

.form-card {
    display: grid;
    gap: 13px;
}

.form-card input,
.form-card textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 14px;
    background: #fff;
}

.form-card textarea {
    min-height: 120px;
    resize: vertical;
}

.sub-hero {
    padding: clamp(82px, 12vw, 148px) 0 clamp(48px, 8vw, 92px);
    background:
        linear-gradient(120deg, rgba(16, 24, 40, 0.84), rgba(16, 24, 40, 0.28)),
        var(--hero-image);
    background-size: cover;
    background-position: center;
    color: #fff;
}

.sub-hero.narrow {
    padding: 70px 0;
}

.sub-hero .lead {
    color: rgba(255, 255, 255, 0.78);
}

.crumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    font-weight: 800;
}

.crumbs a {
    color: #fff;
}

.feature-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.feature-list li {
    list-style: none;
    padding-left: 28px;
    position: relative;
    color: var(--muted);
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 12px;
    height: 3px;
    border-radius: 99px;
    background: var(--brand);
}

.filter-bar,
.tab-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.filter-bar button,
.tab-bar button {
    min-height: 42px;
    padding: 10px 16px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    font-weight: 900;
}

.filter-bar button.active,
.tab-bar button.active {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
}

.story-panel {
    min-height: 360px;
    padding: 28px;
    display: grid;
    align-content: end;
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
    position: relative;
    isolation: isolate;
}

.story-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
}

.timeline {
    display: grid;
    gap: 16px;
    counter-reset: steps;
}

.timeline article {
    padding: 20px;
    border-left: 4px solid var(--brand);
    background: #fff;
    border-radius: var(--radius);
    counter-increment: steps;
}

.timeline article h3::before {
    content: counter(steps, decimal-leading-zero) " ";
    color: var(--brand);
}

.accordion {
    display: grid;
    gap: 12px;
}

.accordion button {
    width: 100%;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    font-weight: 900;
    text-align: left;
}

.accordion button::after {
    content: "+";
    font-size: 1.3rem;
}

.accordion button[aria-expanded="true"]::after {
    content: "-";
}

.accordion-panel {
    padding: 0 18px 18px;
    color: var(--muted);
}

.notice {
    min-height: 24px;
    color: var(--brand-dark);
    font-size: 0.9rem;
    font-weight: 800;
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 22px;
    z-index: 120;
    min-width: min(92vw, 360px);
    padding: 14px 18px;
    border-radius: var(--radius);
    background: var(--ink);
    color: #fff;
    box-shadow: var(--shadow);
    transform: translate(-50%, 22px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease;
    font-weight: 800;
}

.toast.visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.nav-links a.active {
    background: var(--brand);
    color: #fff;
}

.value-strip {
    margin-top: -34px;
    position: relative;
    z-index: 2;
}

.value-strip .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.value-pill {
    padding: 18px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.value-pill strong {
    display: block;
    color: var(--brand-dark);
    margin-bottom: 4px;
}

.signature-section {
    position: relative;
    z-index: 3;
    margin-top: -38px;
    padding-bottom: 26px;
}

.signature-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 24px;
    align-items: stretch;
    padding: 28px;
    border-radius: calc(var(--radius) + 6px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.84)),
        var(--signature-bg, transparent);
    border: 1px solid rgba(16, 24, 40, 0.1);
    box-shadow: 0 28px 70px rgba(16, 24, 40, 0.14);
    overflow: hidden;
}

.signature-grid::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.2;
}

.signature-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--brand-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.signature-grid h2 {
    max-width: 680px;
    font-size: clamp(1.8rem, 3.2vw, 3.2rem);
}

.signature-grid p {
    max-width: 640px;
    margin-top: 12px;
    color: var(--muted);
    font-size: 1.04rem;
}

.signature-metrics {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.signature-metrics article {
    min-height: 150px;
    padding: 18px;
    display: grid;
    align-content: end;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(16, 24, 40, 0.1);
}

.signature-metrics strong {
    color: var(--brand-dark);
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1;
}

.signature-metrics span {
    margin-top: 8px;
    color: var(--muted);
    font-weight: 900;
    font-size: 0.86rem;
}

.experience-section {
    padding-top: clamp(42px, 7vw, 86px);
}

.experience-wrap {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(24px, 5vw, 60px);
    align-items: start;
}

.experience-wrap > div:first-child {
    position: sticky;
    top: 110px;
}

.experience-wrap h2 {
    font-size: clamp(2rem, 3.8vw, 4rem);
}

.experience-wrap p {
    margin-top: 14px;
    color: var(--muted);
}

.experience-list {
    display: grid;
    gap: 14px;
}

.experience-list article {
    position: relative;
    padding: 24px 24px 24px 76px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(16, 24, 40, 0.1);
    box-shadow: 0 18px 42px rgba(16, 24, 40, 0.07);
    overflow: hidden;
}

.experience-list article span {
    position: absolute;
    left: 24px;
    top: 26px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background:
        linear-gradient(135deg, var(--brand), var(--accent));
    box-shadow: 0 12px 26px rgba(16, 24, 40, 0.14);
}

.experience-list strong {
    display: block;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.mini-map {
    min-height: 320px;
    padding: 26px;
    display: grid;
    align-content: end;
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.04) 25%, transparent 25%) 0 0 / 38px 38px,
        linear-gradient(135deg, transparent 75%, rgba(255, 255, 255, 0.06) 75%) 0 0 / 38px 38px,
        var(--ink);
    color: #fff;
}

.schedule-table {
    display: grid;
    gap: 10px;
}

.schedule-row {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.schedule-row strong:last-child {
    color: var(--brand-dark);
}

.insight-card {
    min-height: 260px;
    display: grid;
    align-content: end;
    padding: 24px;
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    isolation: isolate;
}

.insight-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.74));
}

body.theme-harbour {
    --font-body: "DM Sans", system-ui, sans-serif;
    --font-display: "Fraunces", Georgia, serif;
    --brand: #0c7c7c;
    --brand-dark: #074f52;
    --accent: #f0b35a;
    --ink: #103536;
    --muted: #5d7270;
    --soft: #eef8f5;
    --footer-bg: #073638;
    --page-texture:
        radial-gradient(circle at 12% 18%, rgba(12, 124, 124, 0.12), transparent 34%),
        linear-gradient(135deg, rgba(240, 179, 90, 0.12), transparent 38%);
    --signature-bg: linear-gradient(135deg, rgba(12, 124, 124, 0.08), rgba(240, 179, 90, 0.14));
    background: #f6fbf9;
}

.theme-harbour .demo-nav {
    background: rgba(246, 251, 249, 0.94);
}

.theme-harbour .hero {
    min-height: 760px;
    align-items: center;
    background: #073638;
}

.theme-harbour .hero::after {
    background:
        linear-gradient(90deg, rgba(7, 54, 56, 0.92), rgba(12, 124, 124, 0.58) 52%, rgba(7, 54, 56, 0.1)),
        linear-gradient(180deg, transparent 0%, rgba(246, 251, 249, 0.16) 100%);
}

.theme-harbour .hero-content {
    padding: clamp(70px, 12vh, 126px) 0;
    max-width: 680px;
}

.theme-harbour .product-card {
    border: 0;
    box-shadow: 0 18px 30px rgba(8, 127, 140, 0.12);
}

.theme-harbour .product-media {
    aspect-ratio: 4 / 3;
}

.theme-harbour .card,
.theme-harbour .stat {
    border-color: rgba(8, 127, 140, 0.18);
}

body.theme-luma {
    --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
    --font-display: "Playfair Display", Georgia, serif;
    --brand: #8d5d43;
    --brand-dark: #513424;
    --accent: #c99a5a;
    --ink: #2a211c;
    --muted: #72645c;
    --soft: #f7f1e8;
    --footer-bg: #2a211c;
    --page-texture:
        radial-gradient(circle at 82% 12%, rgba(201, 154, 90, 0.18), transparent 30%),
        linear-gradient(90deg, rgba(141, 93, 67, 0.08), transparent 48%);
    --signature-bg: linear-gradient(135deg, rgba(141, 93, 67, 0.12), rgba(201, 154, 90, 0.12));
    --radius: 6px;
    background: #fbf7f0;
}

.theme-luma .demo-nav {
    position: sticky;
    background: rgba(251, 247, 240, 0.94);
}

.theme-luma .brand-mark,
.theme-luma .button {
    border-radius: 6px;
}

.theme-luma .hero {
    min-height: 720px;
    align-items: center;
}

.theme-luma .hero::after {
    background: linear-gradient(90deg, rgba(42, 33, 28, 0.2), rgba(42, 33, 28, 0.75) 100%);
}

.theme-luma .hero-content {
    margin-left: auto;
    max-width: 590px;
    padding: clamp(70px, 10vh, 112px) 0;
}

.theme-luma h1 {
    font-size: clamp(3.1rem, 7vw, 6.2rem);
    font-weight: 700;
}

.theme-luma .cards-4 {
    grid-template-columns: 1.1fr 0.9fr 1.1fr 0.9fr;
}

.theme-luma .product-card,
.theme-luma .card {
    border-color: rgba(98, 66, 41, 0.22);
    box-shadow: none;
}

.theme-luma .product-media {
    aspect-ratio: 3 / 4;
}

.theme-luma .product-body {
    background: #fffaf1;
}

body.theme-auric {
    --font-body: "DM Sans", system-ui, sans-serif;
    --font-display: "Outfit", system-ui, sans-serif;
    --brand: #3a8b84;
    --brand-dark: #245d58;
    --accent: #c9a66b;
    --ink: #143a37;
    --muted: #5f7673;
    --soft: #eef8f6;
    --footer-bg: #123633;
    --page-texture:
        radial-gradient(circle at 20% 15%, rgba(58, 139, 132, 0.12), transparent 32%),
        radial-gradient(circle at 85% 70%, rgba(201, 166, 107, 0.12), transparent 30%);
    --signature-bg: linear-gradient(135deg, rgba(58, 139, 132, 0.1), rgba(201, 166, 107, 0.1));
    --radius: 16px;
    background: #f7fcfb;
}

.theme-auric .demo-nav {
    top: 14px;
    width: min(100% - 32px, 1180px);
    margin: 14px auto 0;
    border: 1px solid rgba(58, 139, 132, 0.16);
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(36, 97, 92, 0.08);
}

.theme-auric .hero {
    min-height: 700px;
    margin-top: -92px;
    padding-top: 92px;
    align-items: center;
    background: #dff3f0;
}

.theme-auric .hero::after {
    background: linear-gradient(90deg, rgba(244, 251, 250, 0.95), rgba(244, 251, 250, 0.82) 44%, rgba(244, 251, 250, 0.18));
}

.theme-auric .hero-content {
    color: #143835;
}

.theme-auric .lead,
.theme-auric .hero-actions .secondary {
    color: #315f5b;
}

.theme-auric .hero-actions .secondary {
    border-color: rgba(49, 95, 91, 0.28);
}

.theme-auric .cards-3 {
    align-items: stretch;
}

.theme-auric .card {
    border: 0;
    border-left: 6px solid var(--brand);
    box-shadow: 0 18px 34px rgba(36, 97, 92, 0.09);
}

body.theme-pulse {
    --font-body: "Outfit", system-ui, sans-serif;
    --font-display: "Outfit", system-ui, sans-serif;
    --brand: #e84a5f;
    --brand-dark: #b93649;
    --accent: #ffc857;
    --ink: #15161a;
    --muted: #656a73;
    --soft: #f4f1ea;
    --footer-bg: #15161a;
    --page-texture:
        radial-gradient(circle at 12% 8%, rgba(232, 74, 95, 0.22), transparent 32%),
        radial-gradient(circle at 86% 16%, rgba(255, 200, 87, 0.16), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 40%);
    --signature-bg: linear-gradient(135deg, rgba(232, 74, 95, 0.16), rgba(255, 200, 87, 0.14));
    background: #15161a;
}

.theme-pulse .demo-nav {
    background: #15161a;
    border-bottom-color: rgba(255, 200, 87, 0.24);
}

.theme-pulse .brand,
.theme-pulse .nav-links a,
.theme-pulse .hamburger {
    color: #fff;
}

.theme-pulse .hamburger {
    background: #23252b;
    border-color: rgba(255, 200, 87, 0.24);
}

.theme-pulse .hamburger span {
    background: #fff;
}

.theme-pulse .nav-links a:hover {
    background: #23252b;
    color: var(--accent);
}

.theme-pulse .hero {
    min-height: 790px;
    align-items: center;
}

.theme-pulse .hero::after {
    background:
        linear-gradient(110deg, rgba(21, 22, 26, 0.94), rgba(21, 22, 26, 0.64) 48%, rgba(232, 74, 95, 0.26)),
        repeating-linear-gradient(135deg, rgba(255, 200, 87, 0.12) 0 2px, transparent 2px 34px);
}

.theme-pulse h1,
.theme-pulse h2,
.theme-pulse h3 {
    text-transform: none;
    letter-spacing: 0;
}

.theme-pulse h1 {
    max-width: 820px;
    font-size: clamp(3rem, 8vw, 6.6rem);
    font-weight: 900;
}

.theme-pulse .section {
    background: #15161a;
    color: #fff;
}

.theme-pulse .section.soft {
    background: #f6f2df;
    color: #101010;
}

.theme-pulse .card,
.theme-pulse .stat {
    border: 1px solid rgba(21, 22, 26, 0.16);
    box-shadow: 0 18px 36px rgba(21, 22, 26, 0.12);
}

.theme-pulse .split img {
    border: 0;
    box-shadow: 0 24px 44px rgba(21, 22, 26, 0.18);
}

.theme-pulse .banner {
    background: var(--brand);
    color: #fff;
    border: 0;
    box-shadow: 0 24px 44px rgba(232, 74, 95, 0.22);
}

body.theme-oakline {
    --font-body: "DM Sans", system-ui, sans-serif;
    --font-display: "Libre Baskerville", Georgia, serif;
    --brand: #2c4f68;
    --brand-dark: #193348;
    --accent: #b9904f;
    --ink: #172536;
    --muted: #66717c;
    --soft: #f3f5f6;
    --footer-bg: #172536;
    --page-texture:
        linear-gradient(90deg, rgba(44, 79, 104, 0.08) 1px, transparent 1px) 0 0 / 42px 42px,
        radial-gradient(circle at 85% 18%, rgba(185, 144, 79, 0.14), transparent 30%);
    --signature-bg: linear-gradient(135deg, rgba(44, 79, 104, 0.1), rgba(185, 144, 79, 0.1));
    --radius: 4px;
    background: #f8f7f3;
}

/* Distinct homepage art direction */
.theme-harbour .hero {
    min-height: 710px;
    align-items: stretch;
}

.theme-harbour .hero::before {
    left: 47%;
    background-position: center right;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.theme-harbour .hero::after {
    background:
        linear-gradient(90deg, #f6fbf9 0 48%, rgba(246, 251, 249, 0.18) 48% 100%),
        radial-gradient(circle at 18% 32%, rgba(240, 179, 90, 0.18), transparent 28%);
}

.theme-harbour .hero-content {
    min-height: 710px;
    color: var(--ink);
    display: grid;
    align-content: center;
}

.theme-harbour .hero-content::before {
    left: 0;
    top: auto;
    bottom: 78px;
    width: 180px;
    height: 4px;
}

.theme-harbour .lead,
.theme-harbour .hero-actions .secondary {
    color: var(--muted);
}

.theme-harbour .hero-actions .secondary {
    border-color: rgba(12, 124, 124, 0.22);
}

.theme-harbour #shop .container {
    display: grid;
    grid-template-columns: 0.85fr 1.6fr;
    gap: 34px;
    align-items: start;
}

.theme-harbour #shop .section-head {
    position: sticky;
    top: 110px;
    margin-bottom: 0;
}

.theme-harbour #shop .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.theme-harbour #boxes .split {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
}

.theme-harbour #boxes img {
    order: 2;
    border-radius: 26px 26px 4px 26px;
}

.theme-luma .demo-nav {
    border-bottom: 0;
}

.theme-luma .hero {
    min-height: 760px;
    background: #fbf7f0;
}

.theme-luma .hero::before {
    inset: 80px 5vw 70px 50%;
    border-radius: 0;
    box-shadow: -34px 34px 0 #ead8bd;
}

.theme-luma .hero::after {
    background:
        linear-gradient(90deg, #fbf7f0 0 48%, rgba(42, 33, 28, 0.1) 48% 100%),
        linear-gradient(180deg, transparent, rgba(141, 93, 67, 0.08));
}

.theme-luma .hero-content {
    margin-left: 0;
    color: var(--ink);
    max-width: 520px;
}

.theme-luma .hero-content::before {
    display: none;
}

.theme-luma .lead,
.theme-luma .hero-actions .secondary {
    color: var(--muted);
}

.theme-luma #shop {
    background: #2a211c;
    color: #fff;
}

.theme-luma #shop .section-head p,
.theme-luma #shop .product-card p {
    color: rgba(255, 255, 255, 0.68);
}

.theme-luma #shop .cards-4 {
    grid-template-columns: 1.1fr 0.75fr 1.1fr 0.75fr;
    align-items: end;
}

.theme-luma #shop .product-card {
    background: transparent;
    color: #fff;
    border: 0;
}

.theme-luma #shop .product-card:nth-child(even) {
    transform: translateY(44px);
}

.theme-luma #shop .product-body {
    background: transparent;
    padding-inline: 0;
}

.theme-luma #collection .split {
    grid-template-columns: 0.75fr 1.25fr;
}

.theme-luma #collection img {
    min-height: 560px;
    border-radius: 0 0 160px 0;
    box-shadow: none;
}

.theme-auric .hero {
    min-height: 640px;
}

.theme-auric .hero::before {
    inset: 118px 4vw 54px 58%;
    border-radius: 30px;
    box-shadow: 0 26px 60px rgba(36, 97, 92, 0.16);
}

.theme-auric .hero::after {
    background:
        linear-gradient(90deg, #f7fcfb 0 56%, rgba(247, 252, 251, 0.26) 56%),
        radial-gradient(circle at 28% 30%, rgba(201, 166, 107, 0.14), transparent 32%);
}

.theme-auric .hero-content {
    max-width: 610px;
    padding-top: 150px;
}

.theme-auric h1 {
    font-size: clamp(2.6rem, 6vw, 5.2rem);
}

.theme-auric #services .cards-3 {
    grid-template-columns: 1fr;
    max-width: 840px;
}

.theme-auric #services .card {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 18px;
    align-items: center;
    padding: 26px 30px;
    border-left-width: 10px;
}

.theme-auric #services .card h3 {
    font-size: 1.55rem;
}

.theme-auric #book .split {
    grid-template-columns: 0.7fr 1fr;
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(135deg, #eaf7f5, #fffaf0);
}

.theme-pulse .hero {
    min-height: 760px;
    transform: skewY(-2deg);
    transform-origin: top left;
    margin-bottom: 42px;
}

.theme-pulse .hero > * {
    transform: skewY(2deg);
}

.theme-pulse .hero-content::before {
    width: 86px;
    height: 86px;
    left: auto;
    right: 18%;
    top: 28%;
    border: 12px solid var(--accent);
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
}

.theme-pulse .section-head {
    max-width: none;
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap: 28px;
    align-items: end;
}

.theme-pulse #classes .cards-3 {
    gap: 14px;
}

.theme-pulse #classes .card {
    min-height: 260px;
    display: grid;
    align-content: end;
    background: #fff;
    border-radius: 0;
}

.theme-pulse #classes .card:nth-child(1) {
    background: #e84a5f;
    color: #fff;
}

.theme-pulse #classes .card:nth-child(2) {
    background: #15161a;
    color: #fff;
    transform: translateY(34px);
}

.theme-pulse #classes .card:nth-child(3) {
    background: #ffc857;
}

.theme-pulse #schedule .split {
    grid-template-columns: 0.85fr 1.15fr;
}

.theme-pulse #schedule img {
    border-radius: 0;
    min-height: 560px;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.theme-oakline .hero {
    min-height: 690px;
    background: #f8f7f3;
}

.theme-oakline .hero::before {
    inset: 118px 7vw 70px 59%;
    filter: grayscale(1);
    border: 1px solid rgba(23, 37, 54, 0.2);
}

.theme-oakline .hero::after {
    background:
        linear-gradient(90deg, #f8f7f3 0 58%, rgba(248, 247, 243, 0.18) 58% 100%),
        linear-gradient(180deg, rgba(185, 144, 79, 0.08), transparent 50%);
}

.theme-oakline .hero-content {
    color: var(--ink);
    max-width: 650px;
}

.theme-oakline .hero-content::before {
    top: auto;
    bottom: 82px;
    height: 1px;
    width: 260px;
    background: var(--accent);
}

.theme-oakline .lead,
.theme-oakline .hero-actions .secondary {
    color: var(--muted);
}

.theme-oakline #practice .container {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 44px;
}

.theme-oakline #practice .section-head {
    margin: 0;
}

.theme-oakline #practice .cards-3 {
    grid-template-columns: 1fr;
}

.theme-oakline #practice .card {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 20px;
    padding: 28px;
    background: transparent;
    border: 0;
    border-top: 1px solid rgba(23, 37, 54, 0.22);
}

.theme-oakline #consult .split {
    align-items: start;
    border-top: 1px solid rgba(23, 37, 54, 0.22);
    border-bottom: 1px solid rgba(23, 37, 54, 0.22);
    padding-block: 48px;
}

.theme-oakline .demo-nav {
    background: rgba(248, 247, 243, 0.95);
    border-bottom: 1px solid rgba(25, 51, 72, 0.16);
}

.theme-oakline .brand-mark {
    border-radius: 0;
    background: transparent;
    border: 2px solid var(--brand-dark);
    color: var(--brand-dark);
}

.theme-oakline .button {
    border-radius: 4px;
    box-shadow: none;
}

.theme-oakline .hero {
    min-height: 720px;
    align-items: center;
}

.theme-oakline .hero::after {
    background: linear-gradient(90deg, rgba(10, 19, 29, 0.86), rgba(23, 53, 76, 0.55) 55%, rgba(10, 19, 29, 0.06));
}

.theme-oakline h1 {
    font-weight: 700;
}

.theme-oakline .cards-3 {
    grid-template-columns: 1.2fr 1fr 1fr;
}

.theme-oakline .card,
.theme-oakline .form-card {
    border-top: 4px solid var(--brand-dark);
    box-shadow: none;
}

.theme-oakline .split img {
    box-shadow: none;
    border: 1px solid rgba(23, 53, 76, 0.2);
}

/* Final desktop hero polish for portfolio screenshots */
.theme-harbour .hero-content {
    max-width: var(--container);
    padding-right: 53%;
}

.theme-harbour h1 {
    max-width: 520px;
    font-size: clamp(3rem, 5vw, 5.2rem);
}

.theme-harbour .lead {
    max-width: 460px;
}

.theme-luma .hero-content {
    margin-inline: auto;
    max-width: var(--container);
    padding-right: 54%;
}

.theme-luma h1 {
    max-width: 520px;
    font-size: clamp(2.8rem, 4.7vw, 4.85rem);
}

.theme-luma .lead {
    max-width: 500px;
}

.theme-auric .hero-content {
    max-width: var(--container);
    padding-right: 50%;
    padding-top: 112px;
}

.theme-auric h1 {
    max-width: 520px;
    font-size: clamp(2.5rem, 4.25vw, 4.45rem);
}

.theme-auric .lead {
    max-width: 510px;
}

.theme-oakline .hero::after {
    background:
        linear-gradient(90deg, #f8f7f3 0 58%, rgba(248, 247, 243, 0.18) 58% 100%),
        linear-gradient(180deg, rgba(185, 144, 79, 0.08), transparent 50%);
}

.theme-oakline .hero-content {
    max-width: var(--container);
    padding-right: 55%;
    color: var(--ink);
}

.theme-oakline h1 {
    max-width: 560px;
    font-size: clamp(2.6rem, 4.3vw, 4.45rem);
}

.theme-oakline .lead {
    max-width: 480px;
    color: var(--muted);
}

@media (max-width: 920px) {
    .hamburger {
        display: inline-flex;
    }

    .nav-links {
        position: fixed;
        inset: 78px 0 auto 0;
        z-index: 49;
        padding: 18px;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 20px 34px rgba(16, 24, 40, 0.12);
        display: grid;
        gap: 6px;
        transform: translateY(-130%);
        transition: transform 0.26s ease;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links a {
        min-height: 46px;
        display: flex;
        align-items: center;
    }

    .nav-actions .secondary {
        display: none;
    }

    .cards-3,
    .cards-4,
    .split {
        grid-template-columns: 1fr;
    }

    .theme-luma .cards-4,
    .theme-oakline .cards-3 {
        grid-template-columns: 1fr;
    }

    .theme-harbour .hero::before,
    .theme-luma .hero::before,
    .theme-auric .hero::before,
    .theme-oakline .hero::before {
        inset: 0;
        clip-path: none;
        border-radius: 0;
        box-shadow: none;
        filter: none;
    }

    .theme-harbour .hero::after,
    .theme-luma .hero::after,
    .theme-auric .hero::after,
    .theme-oakline .hero::after {
        background: linear-gradient(90deg, rgba(6, 12, 24, 0.82), rgba(6, 12, 24, 0.44));
    }

    .theme-harbour .hero-content,
    .theme-luma .hero-content,
    .theme-auric .hero-content,
    .theme-oakline .hero-content {
        min-height: auto;
        color: #fff;
        padding: clamp(72px, 16vh, 120px) 0;
    }

    .theme-harbour .lead,
    .theme-luma .lead,
    .theme-auric .lead,
    .theme-oakline .lead,
    .theme-harbour .hero-actions .secondary,
    .theme-luma .hero-actions .secondary,
    .theme-auric .hero-actions .secondary,
    .theme-oakline .hero-actions .secondary {
        color: rgba(255, 255, 255, 0.82);
    }

    .theme-harbour #shop .container,
    .theme-oakline #practice .container,
    .theme-pulse .section-head,
    .theme-oakline #practice .card,
    .theme-auric #services .card,
    .theme-auric #book .split {
        grid-template-columns: 1fr;
    }

    .theme-harbour #shop .section-head {
        position: static;
    }

    .theme-harbour #shop .cards-4,
    .theme-luma #shop .cards-4 {
        grid-template-columns: 1fr 1fr;
    }

    .theme-luma #shop .product-card:nth-child(even),
    .theme-pulse #classes .card:nth-child(2),
    .theme-pulse .hero,
    .theme-pulse .hero > * {
        transform: none;
    }

    .theme-luma #collection img,
    .theme-pulse #schedule img {
        border-radius: var(--radius);
        clip-path: none;
        min-height: 360px;
    }

    .theme-auric .demo-nav {
        top: 0;
        width: 100%;
        margin: 0;
        border-radius: 0;
    }

    .theme-auric .hero {
        margin-top: -78px;
    }

    .theme-pulse .nav-links {
        background: #101010;
    }

    .banner {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .story-grid,
    .schedule-row,
    .experience-wrap {
        grid-template-columns: 1fr;
    }

    .experience-wrap > div:first-child {
        position: static;
    }

    .footer-inner,
    .value-strip .container,
    .signature-grid,
    .signature-metrics {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        display: grid;
    }

    .signature-section {
        margin-top: -16px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .nav-inner {
        min-height: 70px;
    }

    .brand span:last-child {
        max-width: 170px;
        line-height: 1.05;
    }

    .hero {
        min-height: 690px;
    }

    .hero::after {
        background: linear-gradient(180deg, rgba(6, 12, 24, 0.38) 0%, rgba(6, 12, 24, 0.88) 70%);
    }

    .hero-content {
        padding: 86px 0 54px;
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .button {
        width: 100%;
    }

    .price-row {
        align-items: stretch;
        flex-direction: column;
    }
}
