/* ─────────────────────────────────────────
   ZenBorder — English site
   ───────────────────────────────────────── */

:root {
    --bg:      #f5f0e9;
    --bg-alt:  #ede8df;
    --ink:     #1e1b18;
    --muted:   #6a6159;
    --line:    rgba(30, 27, 24, 0.10);
    --accent:  #a84d32;
    --acc-lt:  #d4a07a;
    --acc-dk:  #7d3520;
    --dark:    #1e1a16;
    --max:     1160px;
    --serif:   "Cormorant Garamond", Georgia, serif;
    --sans:    "Manrope", system-ui, sans-serif;
    --r:       20px;
    --shadow:  0 12px 40px rgba(20, 15, 10, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.shell {
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    font-family: var(--sans);
    font-size: 0.93rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-warm       { background: #f0e6d6; color: var(--ink); border-color: transparent; }
.btn-warm:hover { background: #e8dbc8; }

.btn-ghost-warm  { background: transparent; color: rgba(240,232,218,0.95); border-color: rgba(240,232,218,0.32); }
.btn-ghost-warm:hover { background: rgba(240,232,218,0.10); }

.btn-soft       { background: rgba(168,77,50,0.08); color: var(--acc-dk); border-color: rgba(168,77,50,0.15); align-self: flex-start; }
.btn-soft:hover { background: rgba(168,77,50,0.13); }

.btn-ghost-dark  { background: transparent; color: rgba(240,232,218,0.85); border-color: rgba(240,232,218,0.22); }
.btn-ghost-dark:hover { background: rgba(240,232,218,0.08); }

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-scrolled {
    background: rgba(245, 240, 233, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(30, 27, 24, 0.07);
}

.nav-inner {
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
    transition: padding 0.3s ease;
}

.nav-scrolled .nav-inner { padding: 15px 0; }

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-mark {
    width: 34px;
    height: 34px;
    border: 1.5px solid rgba(30, 27, 24, 0.8);
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: border-color 0.3s ease;
}
.brand-mark::before {
    content: "";
    width: 17px;
    height: 17px;
    border: 1.5px solid rgba(30, 27, 24, 0.6);
    border-radius: 50%;
    border-right-color: transparent;
    transform: rotate(20deg);
    transition: border-color 0.3s ease;
}

/* On hero (transparent nav), invert colours */
.nav:not(.nav-scrolled) .brand-mark            { border-color: rgba(240,232,218,0.75); }
.nav:not(.nav-scrolled) .brand-mark::before    { border-color: rgba(240,232,218,0.55); border-right-color: transparent; }
.nav:not(.nav-scrolled) .brand-name            { color: rgba(240,232,218,0.96); }
.nav:not(.nav-scrolled) .nav-links a           { color: rgba(240,232,218,0.72); }
.nav:not(.nav-scrolled) .nav-links a:hover     { color: rgba(240,232,218,1); }
.nav:not(.nav-scrolled) .lang-switch           { color: rgba(240,232,218,0.72); border-color: rgba(240,232,218,0.22); }
.nav:not(.nav-scrolled) .lang-switch:hover     { color: #fff; border-color: rgba(240,232,218,0.5); }

.brand-name {
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--ink);
    transition: color 0.3s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-links a {
    font-size: 0.88rem;
    color: var(--muted);
    letter-spacing: 0.04em;
    transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--ink); }

.lang-switch {
    font-size: 0.88rem;
    color: var(--muted);
    padding: 7px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    transition: color 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
}
.lang-switch:hover { color: var(--ink); border-color: rgba(30,27,24,0.25); }

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(18,14,10,0.18) 0%, rgba(18,14,10,0.54) 100%),
        url("/wp-content/uploads/2026/02/hero-bg.jpg") center / cover no-repeat;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
    padding: 120px 0 80px;
    color: #f2e8da;
}

.eyebrow {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid rgba(242,232,218,0.22);
    border-radius: 999px;
    background: rgba(242,232,218,0.08);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(242,232,218,0.80);
    margin-bottom: 32px;
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(4.5rem, 10vw, 9.5rem);
    font-weight: 500;
    line-height: 0.88;
    letter-spacing: -0.02em;
    color: #f8f1e8;
    margin-bottom: 28px;
}

.hero-sub {
    font-size: 1.06rem;
    color: rgba(242,232,218,0.80);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 38px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }

.section-head { margin-bottom: 40px; }

.section-head-split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.kicker {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--accent);
    margin-bottom: 10px;
}

h2 {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.01em;
}

.see-all {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--acc-dk);
    white-space: nowrap;
    margin-bottom: 4px;
    transition: color 0.2s ease;
}
.see-all:hover { color: var(--accent); }

/* ── TODAY ── */
.today-wrap {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.today-left {
    background: linear-gradient(155deg, #fcf8f3, #f3ece2);
    padding: 52px 48px;
    border: 1px solid rgba(30,27,24,0.07);
    border-right: none;
}

.today-right {
    background: #231f1b;
    color: #ede4d8;
    padding: 52px 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
}

.today-right .kicker { color: var(--acc-lt); }

.today-quote {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.18;
    color: var(--ink);
    margin: 8px 0 22px;
}

.today-author {
    font-style: normal;
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--acc-dk);
    letter-spacing: 0.05em;
}

.today-prompt {
    font-size: 1.02rem;
    line-height: 1.72;
    color: rgba(237,228,216,0.84);
}

/* ── THREE PATHS ── */
.paths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.path-card {
    display: flex;
    flex-direction: column;
    padding: 34px 30px;
    background: rgba(255,252,247,0.85);
    border: 1px solid rgba(30,27,24,0.08);
    border-radius: var(--r);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.path-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(20,15,10,0.11);
}

.path-no {
    font-family: var(--serif);
    font-size: 3.8rem;
    line-height: 1;
    color: var(--acc-lt);
    font-weight: 400;
    margin-bottom: 16px;
}

.path-card h3 {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 14px;
}

.path-card p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 24px;
}

.path-arrow {
    font-size: 1.1rem;
    color: var(--acc-dk);
    font-weight: 600;
}

/* ── MASTERS ── */
.masters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.master-card {
    display: block;
    padding: 32px 30px;
    background: rgba(255,252,248,0.78);
    border: 1px solid rgba(30,27,24,0.08);
    border-radius: var(--r);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease;
}
.master-card:hover { transform: translateY(-2px); }

.master-card h3 {
    font-family: var(--serif);
    font-size: 2.1rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 4px;
}

.master-dates {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 14px;
    letter-spacing: 0.04em;
}

.master-card > p {
    font-size: 0.94rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

.master-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--acc-dk);
}

/* ── READINGS ── */
.readings-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.reading-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 30px 28px;
    background: rgba(255,252,248,0.85);
    border: 1px solid rgba(30,27,24,0.08);
    border-radius: var(--r);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease;
}
.reading-card:hover { transform: translateY(-2px); }

.reading-card-feature {
    grid-row: span 2;
    padding: 38px 34px;
    background: linear-gradient(155deg, #fbf7f2, #f2e9de);
}

.reading-tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(168,77,50,0.08);
    color: var(--acc-dk);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    width: fit-content;
}

.reading-card h3 {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.05;
    color: var(--ink);
}

.reading-card-feature h3 { font-size: 2.3rem; }

.reading-card p {
    font-size: 0.94rem;
    color: var(--muted);
    line-height: 1.65;
    flex: 1;
}

/* ── RETURN ── */
.return-section { padding: 0 0 80px; }

.return-inner {
    background: linear-gradient(135deg, #201c18, #2e2620);
    border-radius: 28px;
    padding: 60px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: #ede4d8;
}

.return-text h2 {
    font-family: var(--serif);
    font-size: clamp(2.1rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.12;
    color: #f5ece0;
    margin-bottom: 12px;
}

.return-text p {
    font-size: 0.96rem;
    color: rgba(237,228,216,0.66);
}

.return-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex-shrink: 0;
}

/* ── FOOTER ── */
.footer { padding: 32px 0; }

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

.footer-copy {
    font-size: 0.88rem;
    color: var(--muted);
}

.footer-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}
.footer-links a {
    font-size: 0.88rem;
    color: var(--muted);
    transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--ink); }

/* ── STUB PAGES ── */
.stub-hero {
    padding: 160px 0 80px;
}

.stub-hero h1 {
    font-family: var(--serif);
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 500;
    line-height: 0.92;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.stub-hero p {
    font-size: 1.06rem;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 20px;
}

.stub-quote {
    margin-top: 64px;
    padding: 40px 44px;
    background: rgba(255,252,248,0.8);
    border: 1px solid rgba(30,27,24,0.08);
    border-radius: var(--r);
    box-shadow: var(--shadow);
    max-width: 640px;
}

.stub-quote blockquote {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 16px;
}

.stub-quote cite {
    font-style: normal;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--acc-dk);
    letter-spacing: 0.05em;
}

.back-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--acc-dk);
    transition: color 0.2s ease;
}
.back-link:hover { color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .today-wrap { grid-template-columns: 1fr; }
    .today-left { border-radius: var(--r) var(--r) 0 0; border-right: 1px solid rgba(30,27,24,0.07); border-bottom: none; }
    .today-right { border-radius: 0 0 var(--r) var(--r); }
    .paths-grid { grid-template-columns: 1fr; }
    .masters-grid { grid-template-columns: 1fr; }
    .readings-grid { grid-template-columns: 1fr; }
    .reading-card-feature { grid-row: span 1; }
    .section-head-split { flex-direction: column; align-items: flex-start; gap: 10px; }
    .return-inner { flex-direction: column; align-items: flex-start; padding: 44px 36px; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 680px) {
    .section { padding: 56px 0; }
    .hero h1 { font-size: 4.2rem; }
    .nav-links { display: none; }
    .today-left, .today-right { padding: 34px 28px; }
    .return-inner { padding: 34px 26px; }
    .stub-hero { padding: 120px 0 56px; }
}
