/*
Theme Name: Original Health
Theme URI:
Author: Sevenoways Innovations
Description: Child theme for Original Health — Holistic Wellness & Meditation Centre, Ballinafad, Co. Sligo
Version: 1.0.0
Template: blocksy
Text Domain: original-health
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
    --sage:         #7a9476;
    --sage-light:   #b5c9b2;
    --sage-pale:    #eef3ed;
    --earth:        #8b6e4e;
    --earth-light:  #c4a882;
    --earth-pale:   #f5efe8;
    --cream:        #faf7f2;
    --warm-white:   #fffef9;
    --charcoal:     #2a2a25;
    --mid:          #5a5a52;
    --muted:        #9a9a90;
    --gold:         #c8a45a;
    --gold-light:   #e8d5a8;

    --section-pad:  7rem 3rem;
    --max-w:        1200px;
    --radius:       2px;
    --transition:   all 0.3s ease;
    --nav-h:        72px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--mid);
    background: var(--warm-white);
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; transition: var(--transition); }
ul  { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.15;
}

h1 { font-size: clamp(2.8rem, 4.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: 1.3rem; font-weight: 400; }

em { color: var(--sage); font-style: italic; }

.eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--sage);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
    flex-shrink: 0;
}

.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.oh-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 3rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.btn-primary   { background: var(--sage);  color: var(--warm-white); }
.btn-primary:hover { background: #5e7a5a; color: var(--warm-white); }

.btn-nav       { background: var(--sage);  color: var(--warm-white); }
.btn-nav:hover { background: var(--earth); color: var(--warm-white); }

.btn-secondary {
    background: transparent;
    color: var(--earth);
    padding-left: 0;
    padding-right: 0;
}
.btn-secondary:hover { gap: 0.9rem; color: var(--earth); }

.btn-submit {
    background: var(--sage);
    color: var(--warm-white);
    width: 100%;
    justify-content: center;
}
.btn-submit:hover { background: #5e7a5a; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-1 { animation: fadeUp 0.7s ease 0.10s both; }
.fade-2 { animation: fadeUp 0.7s ease 0.25s both; }
.fade-3 { animation: fadeUp 0.7s ease 0.40s both; }
.fade-4 { animation: fadeUp 0.7s ease 0.55s both; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.oh-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    height: var(--nav-h);
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(122, 148, 118, 0.15);
}

.oh-nav__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 3rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.oh-nav__logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--charcoal);
    white-space: nowrap;
}
.oh-nav__logo span { color: var(--sage); }

.oh-nav__links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.oh-nav__links a {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--mid);
}
.oh-nav__links a:hover { color: var(--sage); }

.oh-nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.oh-nav__hamburger span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--charcoal);
    transition: var(--transition);
}

.oh-nav__mobile {
    display: none;
    flex-direction: column;
    padding: 0 1.5rem 1.25rem;
    border-top: 1px solid rgba(122, 148, 118, 0.12);
    background: rgba(250, 247, 242, 0.97);
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    z-index: 9998;
}
.oh-nav__mobile.is-open { display: flex; }

.oh-nav__mobile a {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--mid);
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(122, 148, 118, 0.1);
}
.oh-nav__mobile a:last-child { border-bottom: none; margin-top: 0.75rem; }
.oh-nav__mobile a:hover { color: var(--sage); }

/* ============================================================
   HERO
   ============================================================ */
.oh-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    padding-top: var(--nav-h);
}

.oh-hero__left {
    background: var(--sage-pale);
    padding: 6rem 4rem 6rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.oh-hero__left::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: rgba(122, 148, 118, 0.08);
    pointer-events: none;
}
.oh-hero__left::after {
    content: '';
    position: absolute;
    bottom: 40px; left: -60px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: rgba(122, 148, 118, 0.06);
    pointer-events: none;
}

.oh-hero__title {
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.12;
    margin-bottom: 1.5rem;
}

.oh-hero__body {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--mid);
    max-width: 460px;
    margin-bottom: 2.5rem;
}

.oh-hero__ctas {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.oh-hero__right {
    background: linear-gradient(135deg, #2a3628, #1a2518, #2a2a25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 3.5rem;
}

.oh-hero__quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2vw, 1.85rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    line-height: 1.55;
    max-width: 400px;
    position: relative;
    z-index: 2;
}
.oh-hero__quote::before {
    content: '\201C';
    font-size: 5rem;
    color: rgba(122, 148, 118, 0.2);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
    display: block;
    margin-bottom: -1.25rem;
}

.oh-hero__badge {
    position: absolute;
    bottom: 2.5rem; left: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    z-index: 2;
}

.oh-hero__badge-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin-bottom: 0.6rem;
}

.oh-hero__badge ul { display: flex; flex-direction: column; gap: 0.25rem; }
.oh-hero__badge li {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   SERVICES STRIP
   ============================================================ */
.oh-strip {
    background: var(--sage);
    padding: 1.25rem 3rem;
}

.oh-strip__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.oh-strip__item {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.25rem 0;
}
.oh-strip__item:not(:last-child)::after {
    content: '\00B7';
    color: var(--gold);
    font-size: 1.1rem;
    line-height: 1;
}

/* ============================================================
   ABOUT
   ============================================================ */
.oh-about {
    background: var(--warm-white);
    padding: var(--section-pad);
}

.oh-about__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: center;
}

.oh-about__img-wrap { position: relative; }

.oh-about__img {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--sage-pale);
    border-radius: var(--radius);
    overflow: hidden;
}
.oh-about__img img { width: 100%; height: 100%; object-fit: cover; }

.oh-about__img-border {
    position: absolute;
    top: -18px; right: -18px;
    width: 58%; height: 58%;
    border: 1px solid var(--sage-light);
    border-radius: var(--radius);
    z-index: -1;
}

.oh-about__moon {
    position: absolute;
    bottom: -14px; left: -14px;
    width: 46px; height: 46px;
    background: var(--sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.15rem;
}

.oh-about__content h2 { margin-bottom: 1.5rem; }

.oh-about__body { margin-bottom: 3rem; }
.oh-about__body p { margin-bottom: 1rem; }

.oh-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.oh-stat {
    padding: 1.25rem;
    border: 1px solid rgba(122, 148, 118, 0.15);
    border-radius: var(--radius);
}

.oh-stat__num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1;
    margin-bottom: 0.3rem;
}
.oh-stat__num em { color: var(--sage); font-style: italic; }

.oh-stat__label {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.oh-services {
    background: var(--cream);
    padding: var(--section-pad);
}

.oh-services__hdr {
    max-width: var(--max-w);
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
}
.oh-services__hdr h2 { margin-bottom: 0; }
.oh-services__hdr p  { font-size: 0.95rem; line-height: 1.85; }

.oh-services__grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.oh-scard {
    background: var(--warm-white);
    border: 1px solid rgba(122, 148, 118, 0.12);
    border-radius: var(--radius);
    padding: 2.25rem 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.oh-scard::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--sage-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.oh-scard:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(42,42,37,0.08); }
.oh-scard:hover::before { transform: scaleX(1); }

.oh-scard__icon { font-size: 1.75rem; margin-bottom: 1rem; display: block; line-height: 1; }
.oh-scard__title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; color: var(--charcoal); margin-bottom: 0.75rem; }
.oh-scard__desc  { font-family: 'Jost', sans-serif; font-size: 0.88rem; font-weight: 300; line-height: 1.8; color: var(--mid); }

/* ============================================================
   RETREATS
   ============================================================ */
.oh-retreats {
    background: var(--charcoal);
    padding: var(--section-pad);
    position: relative;
}
.oh-retreats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(122, 148, 118, 0.04);
    pointer-events: none;
}

.oh-retreats__hdr {
    max-width: var(--max-w);
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.oh-retreats__hdr .eyebrow { color: var(--sage-light); }
.oh-retreats__hdr h2    { color: rgba(255,255,255,0.9); margin-bottom: 0.85rem; }
.oh-retreats__hdr p     { color: rgba(255,255,255,0.5); font-size: 0.95rem; line-height: 1.85; }

.oh-retreats__price { text-align: right; flex-shrink: 0; }
.oh-retreats__price-from {
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.2rem;
}
.oh-retreats__price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 1.25rem;
}

.oh-retreats__grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.oh-rcard {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 2rem 2.25rem;
    background: rgba(255,255,255,0.04);
    transition: background 0.3s ease, border-color 0.3s ease;
}
.oh-rcard:hover { background: rgba(255,255,255,0.07); border-color: rgba(122,148,118,0.25); }

.oh-rcard__date {
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.oh-rcard__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.5rem;
}

.oh-rcard__time {
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255,255,255,0.38);
    margin-bottom: 1rem;
}

.oh-rcard__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.oh-tag {
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sage-light);
    background: rgba(122, 148, 118, 0.15);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.oh-testimonials {
    background: var(--earth-pale);
    padding: var(--section-pad);
}

.oh-testimonials__hdr {
    max-width: var(--max-w);
    margin: 0 auto 4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.oh-testimonials__hdr h2 { margin-bottom: 0.75rem; }
.oh-testimonials__hdr p  { font-size: 0.95rem; color: var(--mid); max-width: 520px; }

.oh-testimonials__grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.oh-tcard {
    background: var(--warm-white);
    border: 1px solid rgba(139,110,78,0.15);
    border-radius: var(--radius);
    padding: 2.25rem 2rem;
}

.oh-tcard__stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.05em; margin-bottom: 1.25rem; }

.oh-tcard__quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.oh-tcard__author {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
}

/* ============================================================
   CONTACT
   ============================================================ */
.oh-contact {
    background: var(--sage-pale);
    padding: var(--section-pad);
}

.oh-contact__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: start;
}

.oh-contact__info h2 { margin-bottom: 1rem; }
.oh-contact__info > p { margin-bottom: 2.5rem; font-size: 0.95rem; line-height: 1.85; }

.oh-contact__details { display: flex; flex-direction: column; gap: 1rem; }

.oh-contact__row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.oh-contact__icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--sage-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.88rem;
    color: var(--sage);
}

.oh-contact__text {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--mid);
}
.oh-contact__text a { color: var(--mid); }
.oh-contact__text a:hover { color: var(--sage); }

/* Contact Form */
.oh-form-wrap {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 24px rgba(42,42,37,0.05);
}

.oh-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.oh-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.oh-form-group label {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
}

.oh-form-group input,
.oh-form-group select,
.oh-form-group textarea {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--charcoal);
    background: var(--warm-white);
    border: 1px solid rgba(122, 148, 118, 0.25);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    outline: none;
    width: 100%;
    transition: border-color 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.oh-form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a9a90' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.oh-form-group input:focus,
.oh-form-group select:focus,
.oh-form-group textarea:focus { border-color: var(--sage); }

.oh-form-group textarea { resize: vertical; min-height: 130px; }
.oh-form-submit { margin-top: 1.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.oh-footer {
    background: var(--charcoal);
    padding: 4rem 3rem;
    text-align: center;
}

.oh-footer__logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    display: block;
    margin-bottom: 0.5rem;
    text-decoration: none;
}
.oh-footer__logo span { color: var(--sage); }

.oh-footer__tagline {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.06em;
    margin-bottom: 2rem;
}

.oh-footer__nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}
.oh-footer__nav a {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.4);
}
.oh-footer__nav a:hover { color: var(--sage-light); }

.oh-footer__divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 1.5rem;
}

.oh-footer__copy {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(255,255,255,0.25);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.oh-page-hero {
    background: var(--sage-pale);
    padding: calc(5rem + var(--nav-h)) 3rem 5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.oh-page-hero h1 { margin-bottom: 1rem; max-width: 720px; }
.oh-page-hero p  { font-size: 1rem; line-height: 1.9; max-width: 580px; }

/* ============================================================
   ABOUT PAGE — EXTENDED
   ============================================================ */
.oh-about-ext {
    background: var(--warm-white);
    padding: var(--section-pad);
}

.oh-about-ext__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 7rem;
    align-items: start;
}

.oh-about-ext__img {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--sage-pale);
    border-radius: var(--radius);
    overflow: hidden;
    position: sticky;
    top: calc(var(--nav-h) + 2rem);
}
.oh-about-ext__img img { width: 100%; height: 100%; object-fit: cover; }

.oh-about-ext__content h2 { margin-bottom: 1.5rem; }
.oh-about-ext__content p  { margin-bottom: 1.25rem; }

.oh-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(122, 148, 118, 0.15);
}

.oh-value {
    padding: 1.5rem;
    background: var(--sage-pale);
    border-radius: var(--radius);
}

.oh-value__icon { font-size: 1.5rem; margin-bottom: 0.75rem; display: block; }
.oh-value__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.4rem;
}
.oh-value__desc {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--mid);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.oh-services-page {
    background: var(--warm-white);
    padding: var(--section-pad);
}

.oh-services-page__inner { max-width: var(--max-w); margin: 0 auto; }

.oh-sblock {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 4.5rem 0;
    border-bottom: 1px solid rgba(122, 148, 118, 0.12);
}
.oh-sblock:last-child { border-bottom: none; padding-bottom: 0; }
.oh-sblock:first-child { padding-top: 0; }
.oh-sblock--reverse { direction: rtl; }
.oh-sblock--reverse > * { direction: ltr; }

.oh-sblock__img {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--sage-pale);
    border-radius: var(--radius);
    overflow: hidden;
}
.oh-sblock__img img { width: 100%; height: 100%; object-fit: cover; }

.oh-sblock__icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.oh-sblock__content h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: 1rem; }
.oh-sblock__content p  { font-size: 0.95rem; line-height: 1.9; margin-bottom: 1.25rem; }
.oh-sblock__content p:last-of-type { margin-bottom: 0; }

/* ============================================================
   RETREATS ARCHIVE PAGE
   ============================================================ */
.oh-archive {
    background: var(--charcoal);
    padding: calc(5rem + var(--nav-h)) 3rem 7rem;
    min-height: 100vh;
    position: relative;
}
.oh-archive::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(122, 148, 118, 0.03);
    pointer-events: none;
}

.oh-archive__hdr {
    max-width: var(--max-w);
    margin: 0 auto 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}
.oh-archive__hdr h1 { color: rgba(255,255,255,0.9); margin-bottom: 1rem; }
.oh-archive__hdr p  { color: rgba(255,255,255,0.5); font-size: 0.95rem; line-height: 1.85; max-width: 540px; margin: 0 auto; }

.oh-archive__grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.oh-archive__none {
    color: rgba(255,255,255,0.4);
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    text-align: center;
    grid-column: 1 / -1;
    padding: 3rem 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.oh-contact-page {
    background: var(--sage-pale);
    padding: calc(5rem + var(--nav-h)) 3rem 7rem;
}

.oh-contact-page__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: start;
}

/* Map embed */
.oh-map {
    margin-top: 2.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    height: 260px;
}
.oh-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ============================================================
   RESPONSIVE — ≤900px
   ============================================================ */
@media (max-width: 900px) {
    :root { --section-pad: 4rem 1.5rem; }

    .oh-container { padding: 0 1.5rem; }

    /* Nav */
    .oh-nav__links,
    .oh-nav__cta { display: none; }
    .oh-nav__hamburger { display: flex; }
    .oh-nav__inner { padding: 0 1.5rem; }

    /* Hero */
    .oh-hero { grid-template-columns: 1fr; }
    .oh-hero__left { padding: 4rem 1.5rem 3.5rem; }
    .oh-hero__right { min-height: 360px; padding: 3.5rem 1.5rem 3.5rem; }
    .oh-hero__badge { position: static; margin-top: 2rem; }

    /* Strip */
    .oh-strip { padding: 1.25rem 1.5rem; }
    .oh-strip__inner { gap: 0.75rem; }

    /* About */
    .oh-about__inner  { grid-template-columns: 1fr; gap: 3rem; }

    /* Services header + grid */
    .oh-services__hdr  { grid-template-columns: 1fr; gap: 1rem; }
    .oh-services__grid { grid-template-columns: 1fr; }

    /* Retreats */
    .oh-retreats__hdr  { grid-template-columns: 1fr; gap: 2rem; }
    .oh-retreats__price { text-align: left; }
    .oh-retreats__grid { grid-template-columns: 1fr; }

    /* Testimonials */
    .oh-testimonials__grid { grid-template-columns: 1fr; }

    /* Contact */
    .oh-contact__inner { grid-template-columns: 1fr; gap: 3rem; }
    .oh-form-row { grid-template-columns: 1fr; }

    /* Footer */
    .oh-footer { padding: 3rem 1.5rem; }
    .oh-footer__nav { flex-wrap: wrap; gap: 1rem; }

    /* Inner pages */
    .oh-page-hero { padding: calc(3.5rem + var(--nav-h)) 1.5rem 3.5rem; }
    .oh-about-ext__inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .oh-about-ext__img { position: static; aspect-ratio: 4/3; }
    .oh-values { grid-template-columns: 1fr; }
    .oh-sblock  { grid-template-columns: 1fr; gap: 2rem; }
    .oh-sblock--reverse { direction: ltr; }
    .oh-archive { padding: calc(3.5rem + var(--nav-h)) 1.5rem 4rem; }
    .oh-archive__grid { grid-template-columns: 1fr; }
    .oh-contact-page { padding: calc(3.5rem + var(--nav-h)) 1.5rem 4rem; }
    .oh-contact-page__inner { grid-template-columns: 1fr; gap: 3rem; }
}
