/*
Theme Name:  Yoga with Manasa
Theme URI:   https://yogawithmanasa.com.au
Author:      Lakshmi Manasa Samudrala
Author URI:  https://yogawithmanasa.com.au
Description: Custom professional theme for Yoga with Manasa — sage green, gold and cream palette with Cormorant Garamond typography. Includes hero, services, about, pricing, gallery and contact sections.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yoga-manasa
Tags:        wellness, yoga, custom-background, custom-logo, custom-menu, featured-images, full-width-template, one-page
*/

/* =============================================
   TABLE OF CONTENTS
   1.  CSS Variables (colours, fonts, spacing)
   2.  Reset & Base
   3.  Typography
   4.  Utility classes
   5.  Navigation
   6.  Hero section
   7.  Section wrappers
   8.  Services grid
   9.  Benefits / How yoga supports you
   10. Class formats (dark section)
   11. About
   12. Pricing
   13. Gallery
   14. Contact & form
   15. Footer
   16. Widgets
   17. WordPress defaults (alignments, captions)
   18. Responsive
   ============================================= */


/* ─────────────────────────────────────────────
   1. CSS VARIABLES
   Change colours here to restyle the whole site
   ───────────────────────────────────────────── */
:root {
    --sage:        #4a6741;
    --sage-light:  #6b8f63;
    --sage-pale:   #e8ede7;
    --sage-mid:    #c5d4c2;
    --cream:       #faf8f3;
    --warm:        #f5f2ec;
    --gold:        #c8a96e;
    --gold-dark:   #a88848;
    --text-dark:   #2c3027;
    --text-mid:    #4a5244;
    --text-light:  #7a8574;
    --white:       #ffffff;

    --font-serif:  'Cormorant Garamond', 'Palatino Linotype', Georgia, serif;
    --font-sans:   'Jost', 'Helvetica Neue', Arial, sans-serif;

    --radius:      4px;
    --shadow:      0 4px 24px rgba(74,103,65,.10);
    --shadow-lg:   0 8px 40px rgba(74,103,65,.14);

    --nav-height:  76px;
    --section-pad: 5rem;
}


/* ─────────────────────────────────────────────
   2. RESET & BASE
   ───────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-sans);
    font-weight: 400;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

img  { display: block; max-width: 100%; height: auto; }
a    { color: var(--sage); text-decoration: none; transition: color .2s; }
a:hover { color: var(--sage-light); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); }


/* ─────────────────────────────────────────────
   3. TYPOGRAPHY
   ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text-dark);
}
h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
h2 { font-size: clamp(2rem,   4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: .92rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
    font-size: .7rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--sage-light);
    font-weight: 500;
    display: block;
    margin-bottom: .6rem;
}

blockquote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.55;
    color: var(--text-dark);
    border-left: 3px solid var(--gold);
    padding-left: 1.4rem;
    margin: 1.5rem 0;
}


/* ─────────────────────────────────────────────
   4. UTILITY CLASSES
   ───────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header p.intro {
    font-size: .92rem;
    color: var(--text-light);
    max-width: 520px;
    margin: .7rem auto 0;
    line-height: 1.7;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--sage);
    color: var(--white);
    border: none;
    padding: .85rem 2.2rem;
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-weight: 500;
    transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--sage-light); color: var(--white); transform: translateY(-2px); }

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--sage);
    border: 1.5px solid var(--sage);
    padding: .85rem 2.2rem;
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-weight: 500;
    transition: background .2s;
}
.btn-outline:hover { background: var(--sage-pale); color: var(--sage); }

.btn-gold {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: .85rem 2.2rem;
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-weight: 500;
    transition: background .2s;
}
.btn-gold:hover { background: var(--gold-dark); color: var(--white); }

/* Tag pill */
.tag {
    display: inline-block;
    background: var(--sage-pale);
    color: var(--sage);
    font-size: .67rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .25rem .85rem;
    border-radius: 20px;
    margin-top: .8rem;
}

/* Divider accent line */
.divider-line {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 1rem auto;
    border-radius: 2px;
}


/* ─────────────────────────────────────────────
   5. NAVIGATION
   ───────────────────────────────────────────── */
#site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--cream);
    border-bottom: 1px solid var(--sage-mid);
    height: var(--nav-height);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}

/* Logo */
.site-logo img {
    height: 58px;
    width: auto;
    display: block;
}
.site-logo:hover { opacity: .85; }

/* Primary nav links */
#primary-navigation ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}
#primary-navigation ul li a {
    font-size: .76rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-mid);
    font-weight: 400;
    padding: .3rem 0;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
}
#primary-navigation ul li a:hover,
#primary-navigation ul li.current-menu-item a {
    color: var(--sage);
    border-bottom-color: var(--sage);
}

/* Hamburger (mobile) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ─────────────────────────────────────────────
   6. HERO SECTION
   ───────────────────────────────────────────── */
.hero-section {
    min-height: calc(92vh - var(--nav-height));
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: 4rem 5rem;
    background: linear-gradient(135deg, var(--cream) 52%, var(--sage-pale) 100%);
    position: relative;
    overflow: hidden;
}
/* Decorative circle */
.hero-section::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: var(--sage-mid);
    opacity: .15;
    pointer-events: none;
}

.hero-eyebrow {
    font-size: .7rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--sage-light);
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.hero-section h1 { margin-bottom: 1rem; }
.hero-section h1 em { font-style: italic; color: var(--sage); }

.hero-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--text-light);
    border-left: 2px solid var(--gold);
    padding-left: 1rem;
    margin-bottom: 1.4rem;
    line-height: 1.65;
}

.hero-desc {
    font-size: .92rem;
    color: var(--text-mid);
    line-height: 1.85;
    max-width: 440px;
    margin-bottom: 2rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.hero-visual img {
    width: 100%;
    max-width: 380px;
    filter: drop-shadow(0 8px 28px rgba(74,103,65,.12));
}


/* ─────────────────────────────────────────────
   7. SECTION WRAPPERS
   ───────────────────────────────────────────── */
.section { padding: var(--section-pad) 5rem; }
.section--alt  { background: var(--warm); }
.section--dark {
    background: var(--sage);
    color: var(--white);
}
.section--dark h2  { color: var(--white); }
.section--dark p   { color: rgba(255,255,255,.72); }
.section--dark .eyebrow { color: #e8d4a8; }
.section--dark .section-header p.intro { color: rgba(255,255,255,.65); }


/* ─────────────────────────────────────────────
   8. SERVICES GRID
   ───────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--sage-mid);
    border-left: 3px solid var(--sage);
    border-radius: var(--radius);
    padding: 1.8rem;
    transition: transform .2s, box-shadow .2s;
}
.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.service-card h3 { margin-bottom: .5rem; }
.service-card p  { font-size: .86rem; }

/* Credential card — badge style */
.service-card--cred {
    background: var(--sage-pale);
    border-left-color: var(--sage-mid);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: .7rem;
}
.service-card--cred img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}
.service-card--cred h3 { font-size: 1.05rem; }


/* ─────────────────────────────────────────────
   9. BENEFITS
   ───────────────────────────────────────────── */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.benefits-list { display: flex; flex-direction: column; gap: 1.2rem; }
.benefit-item  { display: flex; align-items: flex-start; gap: .9rem; }
.benefit-check {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--sage);
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.benefit-item h4 { margin-bottom: .2rem; }
.benefit-item p  { font-size: .85rem; margin: 0; }

.benefit-aside {
    background: var(--sage-pale);
    border-radius: 10px;
    padding: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}
.benefit-aside img    { width: 80px; height: 80px; object-fit: contain; }
.benefit-aside blockquote {
    font-size: 1.35rem;
    border: none;
    padding: 0;
    margin: 0;
}
.benefit-aside cite {
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-light);
    font-style: normal;
}
.mat-note {
    font-size: .82rem;
    color: var(--text-mid);
    line-height: 1.7;
    border-top: 1px solid var(--sage-mid);
    padding-top: 1rem;
    margin-top: .5rem;
    width: 100%;
}


/* ─────────────────────────────────────────────
   10. CLASS FORMATS (dark section)
   ───────────────────────────────────────────── */
.classes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
}
.class-card {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius);
    padding: 1.8rem;
}
.class-card h3 { color: var(--white); margin-bottom: .4rem; font-size: 1.3rem; }
.class-card p  { font-size: .86rem; margin-bottom: .8rem; }
.class-detail  {
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #e8d4a8;
}


/* ─────────────────────────────────────────────
   11. ABOUT
   ───────────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 5rem;
    align-items: start;
}
.about-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}
.about-logo  { max-width: 240px; width: 100%; }
.about-badge { width: 100px; height: 100px; object-fit: contain; }

.about-text h2 { margin-bottom: 1.2rem; }
.about-creds {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1.5rem;
}
.about-cred {
    font-size: .76rem;
    color: var(--text-mid);
    background: var(--sage-pale);
    padding: .3rem .85rem;
    border-radius: 20px;
    border: 1px solid var(--sage-mid);
}


/* ─────────────────────────────────────────────
   12. PRICING
   ───────────────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.price-card {
    background: var(--white);
    border: 1px solid var(--sage-mid);
    border-radius: var(--radius);
    padding: 2rem 1.8rem;
    text-align: center;
}
.price-card--featured {
    border: 2px solid var(--sage);
    position: relative;
}
.price-featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sage);
    color: var(--white);
    font-size: .63rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .25rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
}
.price-label  {
    font-size: .68rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: .8rem;
    display: block;
}
.price-amount {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--sage);
    line-height: 1;
    display: block;
}
.price-amount sup { font-size: 1rem; color: var(--text-light); }
.price-amount--custom { font-size: 2rem; padding-top: .3rem; }
.price-per    {
    font-size: .75rem;
    color: var(--text-light);
    margin: .3rem 0 1.2rem;
    display: block;
}
.price-features {
    text-align: left;
    margin-bottom: 1.5rem;
}
.price-features li {
    font-size: .84rem;
    color: var(--text-mid);
    padding: .4rem 0 .4rem .9rem;
    border-bottom: 1px solid var(--sage-pale);
    position: relative;
}
.price-features li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--sage-light);
}
.price-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: .78rem;
    color: var(--text-light);
}


/* ─────────────────────────────────────────────
   13. GALLERY PAGE
   ───────────────────────────────────────────── */
.gallery-page-header {
    background: linear-gradient(135deg, var(--sage-pale), var(--cream));
    padding: 3rem 5rem 2.5rem;
    border-bottom: 1px solid var(--sage-mid);
}
.gallery-page-header h1 { margin-bottom: .3rem; }

/* Two-column layout: tree | photos */
.gallery-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: calc(100vh - 280px);
}

/* Event tree panel */
.tree-panel {
    background: var(--warm);
    border-right: 1px solid var(--sage-mid);
    padding: 1.5rem;
}
.tree-panel-title {
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1rem;
}
.tree-cat-btn {
    width: 100%; background: none; border: none;
    display: flex; align-items: center; justify-content: space-between;
    padding: .55rem .6rem; border-radius: var(--radius);
    font-family: var(--font-sans); font-size: .82rem;
    font-weight: 500; color: var(--text-mid);
    transition: background .15s; text-align: left; cursor: pointer;
}
.tree-cat-btn:hover { background: var(--sage-pale); }
.tree-arrow { font-size: .6rem; transition: transform .2s; }
.tree-arrow.open { transform: rotate(90deg); }
.tree-events { padding-left: .8rem; display: none; }
.tree-events.open { display: block; }
.tree-event-btn {
    width: 100%; background: none; border: none;
    display: flex; align-items: center; justify-content: space-between;
    padding: .42rem .6rem; border-radius: var(--radius);
    font-family: var(--font-sans); font-size: .8rem; color: var(--text-mid);
    transition: background .15s; text-align: left; cursor: pointer;
}
.tree-event-btn:hover  { background: var(--sage-pale); }
.tree-event-btn.active { background: var(--sage); color: var(--white); }
.tree-event-count { font-size: .65rem; opacity: .6; }

/* Photo panel */
.photo-panel { padding: 2.5rem 3rem; }
.panel-empty {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    min-height: 300px; text-align: center;
    color: var(--text-light);
}
.panel-empty h3 { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 300; }

.event-heading { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 300; }
.event-meta    { font-size: .8rem; color: var(--text-light); margin: .3rem 0 1.5rem; }

/* Photo grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: .8rem;
}
.photo-thumb {
    aspect-ratio: 1;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: var(--sage-pale);
}
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s; }
.photo-thumb:hover img { transform: scale(1.04); }
.photo-del {
    display: none;
    position: absolute; top: 5px; right: 5px;
    background: rgba(0,0,0,.55); color: var(--white);
    border: none; border-radius: 50%;
    width: 22px; height: 22px; font-size: 13px;
    cursor: pointer; align-items: center; justify-content: center;
}
body.admin-on .photo-del { display: flex; }

/* Admin elements */
.admin-bar {
    display: none;
    background: var(--sage); color: var(--white);
    padding: .6rem 2rem;
    align-items: center; gap: 1rem;
    font-size: .76rem; letter-spacing: .06em;
}
body.admin-on .admin-bar { display: flex; }
.admin-bar button {
    background: rgba(255,255,255,.2); color: var(--white);
    border: 1px solid rgba(255,255,255,.35);
    padding: .3rem .9rem; font-family: var(--font-sans);
    font-size: .73rem; cursor: pointer; border-radius: var(--radius);
}
.tree-del {
    display: none;
    background: none; border: none; cursor: pointer;
    font-size: .75rem; opacity: .55; padding: 0 .2rem;
}
body.admin-on .tree-del { display: inline; }
body.admin-on .add-photos-label { display: inline-flex; align-items: center; }
.add-photos-label { display: none; cursor: pointer; margin-bottom: 1.5rem; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.92);
    align-items: center; justify-content: center;
    z-index: 500;
}
.lightbox.open { display: flex; }
.lightbox img  { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 3px; }
.lb-close { position: absolute; top: 1.2rem; right: 1.5rem; color: var(--white); font-size: 2rem; background: none; border: none; cursor: pointer; opacity: .7; }
.lb-close:hover { opacity: 1; }
.lb-prev, .lb-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,.12); color: var(--white); border: none;
    font-size: 1.6rem; padding: .5rem .9rem; cursor: pointer; border-radius: 3px;
}
.lb-prev { left: 1rem; } .lb-next { right: 1rem; }

/* Admin toggle button */
.admin-toggle {
    position: fixed; bottom: 1.5rem; right: 1.5rem;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--sage); color: var(--white); font-size: 1.1rem;
    border: none; cursor: pointer;
    box-shadow: 0 4px 14px rgba(74,103,65,.4);
    z-index: 300;
}
body.admin-on .admin-toggle { background: var(--gold); }

/* Password overlay */
.pw-overlay {
    display: none;
    position: fixed; inset: 0; background: rgba(0,0,0,.45);
    align-items: center; justify-content: center; z-index: 400;
}
.pw-overlay.open { display: flex; }
.pw-box {
    background: var(--white); border-radius: 8px; padding: 2rem;
    width: 90%; max-width: 340px; text-align: center;
    box-shadow: 0 16px 48px rgba(0,0,0,.18);
}
.pw-box h3 { font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: .5rem; }
.pw-box p  { font-size: .82rem; color: var(--text-light); margin-bottom: 1.2rem; }
.pw-box input {
    width: 100%; border: 1px solid var(--sage-mid); border-radius: 3px;
    padding: .65rem .85rem; font-family: var(--font-sans);
    font-size: .9rem; outline: none; margin-bottom: .9rem; text-align: center;
}
.pw-box input:focus { border-color: var(--sage); }
.pw-error { font-size: .78rem; color: #b03030; min-height: 1.2rem; margin-top: .5rem; }

/* Modal */
.modal-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.45);
    align-items: center; justify-content: center; z-index: 400;
}
.modal-overlay.open { display: flex; }
.modal-box {
    background: var(--white); border-radius: 8px; padding: 1.8rem;
    width: 90%; max-width: 420px;
    box-shadow: 0 16px 48px rgba(0,0,0,.18);
}
.modal-box h3 { font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 1rem; }
.modal-box label {
    display: block; font-size: .68rem; letter-spacing: .1em;
    text-transform: uppercase; color: var(--text-light);
    margin-bottom: .3rem; margin-top: .7rem;
}
.modal-box input, .modal-box select {
    width: 100%; background: var(--cream);
    border: 1px solid var(--sage-mid); border-radius: 3px;
    padding: .6rem .8rem; font-family: var(--font-sans);
    font-size: .86rem; outline: none; color: var(--text-dark);
}
.modal-box input:focus { border-color: var(--sage); }
.modal-actions { display: flex; gap: .6rem; justify-content: flex-end; margin-top: 1.2rem; }
.btn-sm        { background: var(--sage); color: var(--white); border: none; padding: .4rem 1.1rem; font-family: var(--font-sans); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; border-radius: var(--radius); }
.btn-sm-o      { background: transparent; color: var(--sage); border: 1px solid var(--sage); padding: .4rem 1.1rem; font-family: var(--font-sans); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; border-radius: var(--radius); }
.btn-sm-danger { background: #b03030; color: var(--white); border: none; padding: .4rem 1.1rem; font-family: var(--font-sans); font-size: .74rem; cursor: pointer; border-radius: var(--radius); }


/* ─────────────────────────────────────────────
   14. CONTACT
   ───────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-info h2 { margin-bottom: .8rem; }
.contact-info > p { margin-bottom: 1.5rem; }

.contact-item {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: .9rem;
}
.contact-icon {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--sage-pale);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 1rem;
}
.contact-label { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-light); }
.contact-value { font-size: .87rem; color: var(--text-dark); }

/* Form */
.enquiry-form {
    background: var(--white);
    border: 1px solid var(--sage-mid);
    border-radius: 6px;
    padding: 2rem;
}
.enquiry-form h3 { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 1.2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .3rem; margin-bottom: .9rem; }
.form-group label {
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-light);
}
.form-group input,
.form-group select,
.form-group textarea,
.wpcf7 input:not([type="submit"]),
.wpcf7 select,
.wpcf7 textarea {
    background: var(--cream);
    border: 1px solid var(--sage-mid);
    border-radius: var(--radius);
    padding: .65rem .85rem;
    font-family: var(--font-sans);
    font-size: .86rem;
    color: var(--text-dark);
    outline: none;
    width: 100%;
    transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus { border-color: var(--sage); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-note { font-size: .72rem; color: var(--text-light); text-align: center; margin-top: .8rem; }

.wpcf7-submit, input[type="submit"] {
    width: 100%; padding: 1rem;
    background: var(--sage); color: var(--white);
    border: none; font-family: var(--font-sans);
    font-size: .8rem; letter-spacing: .12em;
    text-transform: uppercase; cursor: pointer;
    border-radius: var(--radius); transition: background .2s;
}
.wpcf7-submit:hover, input[type="submit"]:hover { background: var(--sage-light); }


/* ─────────────────────────────────────────────
   15. FOOTER
   ───────────────────────────────────────────── */
#site-footer {
    background: var(--text-dark);
    color: rgba(255,255,255,.55);
    padding: 3rem 5rem 1.5rem;
}
.footer-cols {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}
.footer-brand-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: rgba(255,255,255,.9);
}
.footer-brand-sub {
    font-size: .62rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    margin-top: 2px;
    margin-bottom: .8rem;
}
.footer-brand p { font-size: .82rem; line-height: 1.75; }
.footer-col h4 {
    font-size: .68rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    margin-bottom: .8rem;
    font-weight: 500;
}
.footer-col li { font-size: .82rem; margin-bottom: .45rem; }
.footer-col a  { color: rgba(255,255,255,.55); }
.footer-col a:hover { color: var(--gold); }

/* ABN strip — one place only */
.footer-abn {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 1.2rem;
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
    font-size: .72rem;
    color: rgba(255,255,255,.3);
}
.footer-abn em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold);
    font-size: .85rem;
}


/* ─────────────────────────────────────────────
   16. WORDPRESS STANDARD ALIGNMENT CLASSES
   ───────────────────────────────────────────── */
.alignleft  { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.aligncenter { display: block; margin: 1rem auto; text-align: center; }
.alignfull   { margin-left: calc(-5rem); margin-right: calc(-5rem); }

.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .8rem; color: var(--text-light); text-align: center; margin-top: .5rem; }

.screen-reader-text {
    position: absolute; width: 1px; height: 1px;
    padding: 0; overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}


/* ─────────────────────────────────────────────
   17. RESPONSIVE
   ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-section, .section { padding-left: 2.5rem; padding-right: 2.5rem; }
    .services-grid   { grid-template-columns: 1fr 1fr; }
    .pricing-grid    { grid-template-columns: 1fr 1fr; }
    .footer-cols     { grid-template-columns: 1fr 1fr; }
    #site-footer     { padding-left: 2.5rem; padding-right: 2.5rem; }
}

@media (max-width: 860px) {
    :root { --section-pad: 3rem; }

    .nav-toggle { display: flex; }
    #primary-navigation {
        display: none;
        position: absolute;
        top: var(--nav-height); left: 0; right: 0;
        background: var(--cream);
        border-bottom: 1px solid var(--sage-mid);
        padding: 1rem 2rem 1.5rem;
        box-shadow: var(--shadow);
    }
    #primary-navigation.open { display: block; }
    #primary-navigation ul   { flex-direction: column; gap: .8rem; }
    #site-header { position: relative; }

    .hero-section     { grid-template-columns: 1fr; min-height: auto; padding: 3rem 1.5rem; }
    .hero-visual      { display: none; }
    .section          { padding-left: 1.5rem; padding-right: 1.5rem; }
    .services-grid    { grid-template-columns: 1fr; }
    .benefits-grid    { grid-template-columns: 1fr; }
    .classes-grid     { grid-template-columns: 1fr; }
    .about-grid       { grid-template-columns: 1fr; gap: 2rem; }
    .pricing-grid     { grid-template-columns: 1fr; }
    .contact-grid     { grid-template-columns: 1fr; }
    .form-row         { grid-template-columns: 1fr; }
    .footer-cols      { grid-template-columns: 1fr; gap: 2rem; }
    #site-footer      { padding: 2.5rem 1.5rem 1.5rem; }
    .gallery-layout   { grid-template-columns: 1fr; }
    .tree-panel       { border-right: none; border-bottom: 1px solid var(--sage-mid); }
    .photo-panel      { padding: 1.5rem; }
    .gallery-page-header { padding: 2rem 1.5rem 1.5rem; }
    .alignfull        { margin-left: -1.5rem; margin-right: -1.5rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 2.4rem; }
    .pricing-grid { grid-template-columns: 1fr; }
}
