/* ========================================
   PICKERING BIRD RETREAT
   "Zen Minimal" Theme
   Extreme whitespace, stillness, greyscale + moss
   ======================================== */

/* --- GOOGLE FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@300;400;500;600&family=Rubik:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');

/* --- ROOT VARIABLES --- */
:root {
    --color-primary: #6B8F71;
    --color-primary-dark: #527058;
    --color-primary-light: rgba(107,143,113,0.08);
    --color-secondary: #8B6F47;
    --color-accent: #8B6F47;
    --color-cta: #C9685A;
    --color-cta-dark: #B05347;
    --color-bg: #FEFEFE;
    --color-bg-alt: #F8F6F3;
    --color-text: #6B6B6B;
    --color-text-light: #999999;
    --color-heading: #3A3A3A;
    --color-border: #EEEBE7;
    --font-heading: 'Cabin', 'Segoe UI', sans-serif;
    --font-body: 'Rubik', 'Segoe UI', sans-serif;
    --radius: 6px;
    --radius-lg: 10px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 2px 6px rgba(0,0,0,0.05);
    --shadow-lg: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-xl: 0 6px 20px rgba(0,0,0,0.07);
    --transition: 0.3s ease;
    --max-width: 1100px;
    --header-height: 64px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 2.0;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 300;
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-heading);
    line-height: 1.4;
    font-weight: 300;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-size: 1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.25rem; }

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- SHORT DIVIDERS (40px wide, 1px tall, centered) --- */
.section-divider {
    width: 40px;
    height: 1px;
    background: var(--color-border);
    margin: 5rem auto;
    border: none;
}

/* --- BUTTONS (thin 1px borders, 3rem horizontal padding, no transforms) --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 3rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    border-radius: var(--radius);
    border: 1px solid var(--color-primary);
    cursor: pointer;
    text-decoration: none;
    gap: 0.5rem;
    line-height: 1.4;
    letter-spacing: 0.04em;
    background: transparent;
    color: var(--color-primary);
}

.btn-primary {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-cta {
    background: var(--color-cta);
    color: #FFF;
    border: none;
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius);
    cursor: pointer;
    display: inline-block;
    transition: background var(--transition);
    text-decoration: none;
}
.btn-cta:hover {
    background: var(--color-cta-dark);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

.btn-lg {
    padding: 0.85rem 3.5rem;
    font-size: 0.9rem;
}

.btn-full { width: 100%; }

/* --- HEADER (near-invisible, transparent, thin text) --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: none;
}
.site-header.scrolled {
    background: rgba(254,254,254,0.85);
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.02em;
}
.logo-img {
    height: 32px;
    width: auto;
    opacity: 0.8;
}
.logo-text {
    white-space: nowrap;
}

/* Navigation: near-invisible, thin text */
.main-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.25rem;
    padding: 0;
}
.main-nav a {
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-text);
    letter-spacing: 0.03em;
    border-radius: var(--radius);
    opacity: 0.7;
}
.main-nav a.active {
    color: var(--color-heading);
    opacity: 1;
}
.main-nav .nav-cta {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    margin-left: 0.5rem;
    opacity: 1;
    border-radius: var(--radius);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.mobile-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--color-heading);
}

/* --- HERO (shorter 55vh, calm barely-there gradient, centered light-weight text) --- */
.hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height);
    overflow: hidden;
    text-align: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* Calm barely-there gradient overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(254,254,254,0.45) 0%, rgba(248,246,243,0.55) 50%, rgba(254,254,254,0.7) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
    padding: 3rem 2rem;
}
.hero h1 {
    color: var(--color-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    line-height: 1.35;
    font-weight: 300;
    letter-spacing: -0.01em;
}
.hero-sub {
    color: var(--color-text);
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    margin-bottom: 2.5rem;
    line-height: 2.0;
    font-weight: 300;
}
.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Hero variants */
.hero-centered .hero-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.hero-centered .hero-cta-group { justify-content: center; }
.hero-split { min-height: 50vh; }

/* --- PAGE HERO (inner pages) --- */
.page-hero {
    padding: calc(var(--header-height) + 5rem) 0 5rem;
    background: var(--color-bg);
    text-align: center;
}
.page-hero h1 {
    margin-bottom: 1rem;
    font-weight: 300;
}
.page-hero p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    max-width: 500px;
    margin: 0 auto;
    line-height: 2.0;
}

/* --- TRUST BAR (floating text, opacity 0.6, no background) --- */
.trust-bar {
    padding: 3rem 0;
    background: transparent;
    position: relative;
    z-index: 2;
}
.trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    text-align: center;
}
.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 400;
    padding: 0;
    background: transparent;
    border: none;
    color: var(--color-text);
    opacity: 0.6;
    letter-spacing: 0.03em;
}
.trust-icon {
    font-size: 1rem;
    opacity: 0.5;
    color: var(--color-primary);
}

/* --- SECTIONS (extreme spacing: 10rem section padding) --- */
.section {
    padding: 10rem 0;
    position: relative;
}

/* Section labels: tiny 0.7rem, ultra-light, letter-spacing 0.3em */
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    background: transparent;
    padding: 0;
}
.section-label.centered {
    display: block;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 300;
}
.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    max-width: 480px;
    margin: 0 auto 4rem;
    font-size: 0.95rem;
    line-height: 2.0;
    font-weight: 300;
}

.bg-alt { background: var(--color-bg-alt); }

/* --- INTRO GRID --- */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.intro-text h2 {
    margin-bottom: 1.5rem;
    font-weight: 300;
}
.intro-text p { color: var(--color-text); }
.intro-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 400;
    font-size: 0.85rem;
    margin-top: 1.5rem;
    color: var(--color-primary);
    letter-spacing: 0.03em;
}
.link-arrow::after {
    content: '\2192';
    opacity: 0.5;
}

/* --- SERVICE CARDS (NO borders, barely-there shadows) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}
.service-card {
    position: relative;
    background: var(--color-bg);
    border: none;
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.service-card.featured {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.service-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 500;
    padding: 0.3rem 1rem;
    border-radius: var(--radius);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.service-icon {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    opacity: 0.7;
    display: inline-block;
}
.service-card h3 {
    margin-bottom: 0.75rem;
    font-weight: 400;
}
.service-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 2.0;
}
.service-price {
    font-size: 1.5rem;
    font-weight: 300;
    font-family: var(--font-heading);
    color: var(--color-heading);
    margin-bottom: 1.5rem;
}
.service-price span {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--color-text-light);
}

/* --- SERVICE DETAIL (services page) --- */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 3rem 0;
}
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.service-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}
.service-features li {
    padding: 0.6rem 0 0.6rem 1.5rem;
    position: relative;
    color: var(--color-text);
    line-height: 2.0;
}
.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.4;
}
.service-detail-price {
    margin: 2rem 0;
}
.price-amount {
    font-size: 1.6rem;
    font-weight: 300;
    font-family: var(--font-heading);
    color: var(--color-heading);
}
.price-period {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-left: 0.25rem;
}

/* --- INCLUDED GRID --- */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}
.included-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.included-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-primary);
    opacity: 0.6;
}
.included-item h4 {
    margin-bottom: 0.25rem;
    font-weight: 400;
}
.included-item p { font-size: 0.85rem; color: var(--color-text-light); }

/* --- BIRDS GRID --- */
.birds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: center;
}
.bird-type {
    padding: 2rem 1rem;
    background: var(--color-bg);
    border-radius: var(--radius);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.bird-type-icon { font-size: 1.6rem; margin-bottom: 0.75rem; opacity: 0.6; }
.bird-type-name { font-weight: 400; font-size: 0.82rem; color: var(--color-text); letter-spacing: 0.02em; }

/* --- WHY GRID --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}
.why-item {
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: none;
    background: var(--color-bg);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.why-icon {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    opacity: 0.6;
    display: inline-block;
}
.why-item h3 {
    margin-bottom: 0.75rem;
    font-weight: 400;
}
.why-item p { color: var(--color-text-light); font-size: 0.9rem; line-height: 2.0; }

/* --- TESTIMONIALS (single large centered quote, massive whitespace) --- */
.testimonials-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.testimonial-card {
    background: transparent;
    border: none;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    box-shadow: none;
}
.testimonial-card::before {
    content: '\201C';
    display: block;
    font-size: 4rem;
    line-height: 1;
    color: var(--color-primary);
    opacity: 0.2;
    font-family: Georgia, serif;
    margin-bottom: 1rem;
}
.testimonial-text {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 2rem;
    line-height: 2.2;
    font-size: 1.05rem;
    font-weight: 300;
}
.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}
.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    color: var(--color-text-light);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}
.testimonial-name {
    font-weight: 400;
    color: var(--color-heading);
    font-size: 0.85rem;
}
.testimonial-detail {
    font-size: 0.75rem;
    color: var(--color-text-light);
    letter-spacing: 0.03em;
}
.testimonial-stars {
    color: var(--color-secondary);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
    opacity: 0.5;
}

.testimonials-page-grid {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- AREAS --- */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}
.area-tag {
    padding: 0.6rem 1rem;
    background: transparent;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

/* --- CTA BANNER --- */
.cta-banner {
    padding: 8rem 0;
    background: var(--color-bg-alt);
    color: var(--color-heading);
    text-align: center;
}
.cta-banner h2 {
    color: var(--color-heading);
    margin-bottom: 1rem;
    font-weight: 300;
}
.cta-banner p {
    color: var(--color-text);
    font-size: 0.95rem;
    max-width: 440px;
    margin: 0 auto 3rem;
    line-height: 2.0;
}
.cta-banner .btn-primary {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

/* --- ABOUT PAGE --- */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-story-text h2 {
    margin-bottom: 1.5rem;
    font-weight: 300;
}
.about-story-text p { color: var(--color-text); }
.about-story-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}
.value-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.value-icon {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    opacity: 0.6;
    display: inline-block;
}
.value-card h3 {
    margin-bottom: 0.75rem;
    font-weight: 400;
}
.value-card p { color: var(--color-text-light); font-size: 0.9rem; line-height: 2.0; }

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.approach-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.approach-text h2 {
    margin-bottom: 1.5rem;
    font-weight: 300;
}
.approach-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}
.approach-list li {
    padding: 0.6rem 0 0.6rem 1.5rem;
    position: relative;
    color: var(--color-text);
    line-height: 2.0;
}
.approach-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0.4;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}
.team-member {
    text-align: center;
}
.team-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    background: var(--color-bg-alt);
    opacity: 0.9;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-member h3 { font-size: 1rem; margin-bottom: 0.2rem; font-weight: 400; }
.team-role { font-size: 0.78rem; color: var(--color-primary); font-weight: 400; opacity: 0.7; letter-spacing: 0.05em; }
.team-bio { font-size: 0.85rem; color: var(--color-text-light); margin-top: 0.5rem; line-height: 2.0; }

/* --- FAQ --- */
.faq-container { max-width: 680px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
    border: none;
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
    background: transparent;
}
.faq-item:first-child {
    border-top: 1px solid var(--color-border);
}
.faq-item.active {
    background: transparent;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    font-weight: 400;
    color: var(--color-heading);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.95rem;
    gap: 1rem;
    letter-spacing: 0.01em;
}
.faq-toggle {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
    opacity: 0.3;
}
.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--color-heading);
}
.faq-toggle::before {
    width: 12px;
    height: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.faq-toggle::after {
    width: 1px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}
.faq-item.active .faq-toggle::after { opacity: 0; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer-inner {
    padding: 0 0 1.5rem;
    color: var(--color-text-light);
    line-height: 2.0;
    font-size: 0.9rem;
}

/* --- CONTACT --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}
.contact-form-wrap h2 {
    margin-bottom: 0.5rem;
    font-weight: 300;
}
.contact-form-wrap > p { color: var(--color-text-light); margin-bottom: 2.5rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--color-text);
    letter-spacing: 0.03em;
}
.required { color: var(--color-primary); }
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text);
    background: var(--color-bg);
    font-weight: 300;
}
.form-group textarea {
    border-radius: var(--radius);
    resize: vertical;
    min-height: 140px;
    line-height: 2.0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-status {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
    display: none;
}
.form-status.success {
    display: block;
    background: rgba(107,143,113,0.08);
    color: var(--color-primary-dark);
    border: 1px solid rgba(107,143,113,0.2);
}
.form-status.error {
    display: block;
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.info-card {
    padding: 2rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-border);
}
.info-card:last-child {
    border-bottom: none;
}
.info-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--color-heading);
    font-weight: 400;
}
.info-card p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 2.0;
}

/* --- ARTICLES --- */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}
.article-card {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.article-card-image {
    height: 200px;
    overflow: hidden;
}
.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article-card-body {
    padding: 2rem;
}
.article-card-body h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}
.article-card-body h3 a {
    color: var(--color-heading);
}
.article-card-excerpt {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 2.0;
}
.article-card-meta {
    font-size: 0.72rem;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
    opacity: 0.6;
}

/* Article page */
.article-page { padding-top: calc(var(--header-height) + 5rem); }
.article-header {
    max-width: 640px;
    margin: 0 auto 3rem;
    text-align: center;
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    margin-bottom: 2rem;
    color: var(--color-text-light);
    letter-spacing: 0.03em;
}
.article-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    color: var(--color-text-light);
    font-size: 0.78rem;
    margin-top: 1rem;
    letter-spacing: 0.03em;
    opacity: 0.6;
}
.article-featured-image {
    max-width: 640px;
    margin: 0 auto 4rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.article-body {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 2.2;
    font-weight: 300;
}
.article-body h2 { margin: 3rem 0 1.5rem; font-size: 1.35rem; font-weight: 300; }
.article-body h3 { margin: 2rem 0 1rem; font-size: 1.15rem; font-weight: 400; }
.article-body ul, .article-body ol { margin: 1.5rem 0; padding-left: 1.5rem; }
.article-body li { margin-bottom: 0.5rem; }
.article-body blockquote {
    border-left: 1px solid var(--color-primary);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: transparent;
    font-style: italic;
    color: var(--color-text-light);
    opacity: 0.8;
}
.article-footer {
    max-width: 640px;
    margin: 5rem auto 0;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border);
}

/* --- FOOTER (barely there, light bg, muted text) --- */
.site-footer {
    background: var(--color-bg-alt);
    color: var(--color-text-light);
    padding: 6rem 0 0;
    position: relative;
    margin-top: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 4rem;
}
.footer-logo {
    height: 28px;
    margin-bottom: 1rem;
    opacity: 0.4;
}
.footer-brand p {
    font-size: 0.82rem;
    line-height: 2.0;
    color: var(--color-text-light);
}
.footer-nav h4,
.footer-info h4 {
    color: var(--color-heading);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}
.footer-nav ul {
    list-style: none;
    padding: 0;
}
.footer-nav li { margin-bottom: 0.6rem; }
.footer-nav a {
    color: var(--color-text-light);
    font-size: 0.82rem;
}
.footer-info p {
    font-size: 0.82rem;
    line-height: 2.0;
    color: var(--color-text-light);
}
.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-light);
    opacity: 0.5;
    letter-spacing: 0.03em;
}

/* Drop-off readiness checklist */
.checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}
.checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: background var(--transition);
}
.checklist li.checked {
    background: var(--color-primary-light);
    border-color: var(--color-primary);
}
.checklist li input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
    cursor: pointer;
    accent-color: var(--color-primary);
}
.checklist-ready {
    display: none;
    padding: 1rem;
    background: var(--color-primary);
    color: #FFF;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 500;
    margin-top: 1rem;
}
.checklist-ready.visible { display: block; }

/* Size finder */
.size-finder {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 2rem 0;
}
.size-finder-step { display: none; }
.size-finder-step.active { display: block; }
.size-finder-result {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--color-primary-light);
    border-radius: var(--radius);
    text-align: center;
}
.size-finder-result h3 { color: var(--color-primary-dark); margin-bottom: 0.5rem; }
.size-finder-result .tier-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-cta);
    margin: 0.5rem 0;
}
.size-finder-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}
.size-finder-option {
    background: #FFF;
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1rem;
    cursor: pointer;
    text-align: center;
    transition: all var(--transition);
}
.size-finder-option:hover {
    border-color: var(--color-primary);
    background: var(--color-primary-light);
}

/* Pricing table (for boarding.html) */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: #FFF;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}
.pricing-table th {
    background: var(--color-primary);
    color: #FFF;
    font-weight: 500;
}
.pricing-table td.price {
    font-weight: 600;
    color: var(--color-cta);
    white-space: nowrap;
}
.pricing-table tr:last-child td { border-bottom: none; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .intro-grid,
    .about-story-grid,
    .approach-grid,
    .service-detail {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .service-detail.reverse { direction: ltr; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .section {
        padding: 7rem 0;
    }
    .cta-banner {
        padding: 6rem 0;
    }
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(254,254,254,0.98);
        backdrop-filter: blur(20px);
        padding: 1.5rem 0;
        border-bottom: 1px solid var(--color-border);
    }
    .main-nav.open { display: block; }
    .main-nav ul {
        flex-direction: column;
        padding: 0 2rem;
    }
    .main-nav a {
        display: block;
        padding: 0.6rem 0;
        opacity: 0.7;
    }
    .main-nav .nav-cta {
        margin-left: 0;
        margin-top: 0.5rem;
        text-align: center;
        display: inline-block;
    }

    .hero { min-height: 50vh; }
    .hero h1 { font-size: clamp(1.6rem, 5vw, 2.2rem); }

    .trust-items {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .services-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }

    .section { padding: 5rem 0; }
    .cta-banner { padding: 5rem 0; }

    .container { padding: 0 1.5rem; }

    .testimonials-slider { max-width: 100%; }
    .testimonials-page-grid { max-width: 100%; }
}

@media (max-width: 480px) {
    .hero { min-height: 45vh; }
    .hero-content { padding: 2rem 1rem; }
    .hero-cta-group {
        flex-direction: column;
    }
    .hero-cta-group .btn { width: 100%; }
    .trust-items { gap: 1rem; }
    .testimonials-slider { gap: 3rem; }
    .articles-grid { grid-template-columns: 1fr; }
    .testimonials-page-grid { gap: 3rem; }

    .section { padding: 4rem 0; }
    .cta-banner { padding: 4rem 0; }

    .service-card { padding: 2.5rem 1.5rem; }
    .testimonial-card { padding: 2rem 1rem; }
}

/* --- LAYOUT VARIANTS --- */
.layout-B .hero { min-height: 60vh; }
.layout-B .hero-overlay {
    background: linear-gradient(180deg, rgba(58,58,58,0.35) 0%, rgba(58,58,58,0.55) 60%, rgba(58,58,58,0.7) 100%);
}
.layout-B .hero h1,
.layout-B .hero-sub {
    color: #FFFFFF !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.layout-B .hero .btn-primary {
    background: rgba(255,255,255,0.12);
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(4px);
}
.layout-B .hero .btn-primary:hover {
    background: rgba(255,255,255,0.22);
}

.layout-C .section-label {
    color: var(--color-primary);
    opacity: 0.5;
}

.layout-D .hero h1 { font-weight: 300; letter-spacing: -0.02em; }
.layout-D .section-title { font-weight: 300; }

.layout-E .hero { min-height: 60vh; }
.layout-E .hero-overlay {
    background: linear-gradient(180deg, rgba(58,58,58,0.3) 0%, rgba(248,246,243,0.5) 100%);
}
.layout-E .trust-bar { background: transparent; }
.layout-E .trust-item { opacity: 0.5; }
.layout-E .cta-banner { background: var(--color-bg-alt); }

/* Mobile header fix — hide long brand name, ensure hamburger visible */
@media (max-width: 768px) {
    .logo-text { display: none; }
    .logo-img { height: 32px; }
    .site-header .container { padding: 0 1rem; }
}
@media (max-width: 480px) {
    .logo-text { display: none; }
}

/* === VISUAL ENHANCEMENTS === */

/* --- Ultra-subtle breathing animation on body --- */
@keyframes enh-zen-breathe {
    0%, 100% { opacity: 1.0; }
    50% { opacity: 0.98; }
}
body {
    animation: enh-zen-breathe 8s ease-in-out infinite;
}

/* --- Zen circle motif on section backgrounds --- */
.section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid var(--color-primary);
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

/* --- Hero text: slow fade-in on load (opacity only, no movement) --- */
@keyframes enh-zen-fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}
.hero-content {
    animation: enh-zen-fadein 2s ease-out both;
}

/* --- Service dividers: thin ink-brush-style asymmetric lines between cards --- */
.service-card + .service-card::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-primary) 20%, var(--color-primary) 50%, transparent 85%);
    opacity: 0.15;
    margin-bottom: 2.5rem;
    position: absolute;
    top: -1.25rem;
    left: 0;
}
.service-card {
    position: relative;
}

/* --- Testimonial quotes: single large calligraphic quotation mark at 5% opacity --- */
.testimonial-card::after {
    content: '\201D';
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    font-size: 6rem;
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--color-primary);
    opacity: 0.05;
    line-height: 1;
    pointer-events: none;
}

/* --- CTA section: single centered horizontal line above and below --- */
.cta-banner {
    position: relative;
}
.cta-banner::before,
.cta-banner::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--color-primary);
    opacity: 0.25;
}
.cta-banner::before {
    top: 2.5rem;
}
.cta-banner::after {
    bottom: 2.5rem;
}

/* --- Links: color transition so slow it feels like ink bleeding (1s) --- */
a {
    transition: color 1s ease;
}
.footer-nav a {
    transition: color 1s ease;
}
.link-arrow {
    transition: color 1s ease;
}

/* --- Section labels: fade in with extreme subtlety --- */
@keyframes enh-zen-label-fade {
    from { opacity: 0.4; }
    to { opacity: 0.7; }
}
.section-label {
    opacity: 0.4;
    animation: enh-zen-label-fade 1.5s ease-out forwards;
    animation-delay: 0.3s;
}

/* --- Footer: barely-visible thin border top --- */
.site-footer {
    border-top: 1px solid rgba(107,143,113,0.08);
}

/* --- All hover effects extremely understated: color changes only --- */
a:hover {
    color: var(--color-primary-dark);
}
.footer-nav a:hover {
    color: var(--color-primary);
    opacity: 0.9;
}
.service-card:hover {
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.bird-type:hover {
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.why-item:hover {
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.area-tag:hover {
    color: var(--color-primary);
    border-color: rgba(107,143,113,0.3);
}
.article-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.value-card:hover {
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* === END VISUAL ENHANCEMENTS === */

/* ======================================================
   UNIQUE ZEN SVG PATTERNS — Enso Circles & Bamboo Lines
   ====================================================== */

/* Enso (zen circle) watermark on intro section */
.intro-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    width: 350px;
    height: 350px;
    opacity: 0.035;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M100 15 C155 15 185 55 185 100 C185 150 150 185 100 185 C50 185 15 150 15 100 C15 60 40 25 80 18' fill='none' stroke='%236B8F71' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}
.intro-grid {
    position: relative;
}

/* Bamboo-like vertical lines on the why section */
.why-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: -3%;
    width: 40px;
    height: 100%;
    opacity: 0.04;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 300'%3E%3Cline x1='12' y1='0' x2='12' y2='300' stroke='%236B8F71' stroke-width='2'/%3E%3Cline x1='28' y1='10' x2='28' y2='300' stroke='%238B6F47' stroke-width='1.5'/%3E%3Ccircle cx='12' cy='60' r='3' fill='none' stroke='%236B8F71' stroke-width='1'/%3E%3Ccircle cx='12' cy='150' r='3' fill='none' stroke='%236B8F71' stroke-width='1'/%3E%3Ccircle cx='12' cy='240' r='3' fill='none' stroke='%236B8F71' stroke-width='1'/%3E%3Ccircle cx='28' cy='100' r='2.5' fill='none' stroke='%238B6F47' stroke-width='1'/%3E%3Ccircle cx='28' cy='200' r='2.5' fill='none' stroke='%238B6F47' stroke-width='1'/%3E%3C/svg%3E") repeat-y;
}
.why-grid {
    position: relative;
}

/* Pebble/stone pattern on areas section */
.areas-grid::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 30px;
    opacity: 0.06;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 30'%3E%3Cellipse cx='30' cy='15' rx='18' ry='10' fill='none' stroke='%236B8F71' stroke-width='1'/%3E%3Cellipse cx='75' cy='18' rx='14' ry='8' fill='none' stroke='%238B6F47' stroke-width='1'/%3E%3Cellipse cx='115' cy='13' rx='16' ry='9' fill='none' stroke='%236B8F71' stroke-width='1'/%3E%3Cellipse cx='160' cy='16' rx='13' ry='7' fill='none' stroke='%238B6F47' stroke-width='1'/%3E%3C/svg%3E") no-repeat center;
}
.areas-grid {
    position: relative;
}

/* Gentle wave/water line above CTA */
.cta-banner::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    opacity: 0.06;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 20' preserveAspectRatio='none'%3E%3Cpath d='M0 10 Q150 0 300 10 Q450 20 600 10 Q750 0 900 10 Q1050 20 1200 10' fill='none' stroke='%236B8F71' stroke-width='1.5'/%3E%3C/svg%3E") repeat-x;
    background-size: 600px 20px;
}
.cta-banner {
    position: relative;
}

/* Leaf motif on testimonials section */
.testimonials-slider::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    right: 5%;
    width: 60px;
    height: 60px;
    opacity: 0.04;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'%3E%3Cpath d='M30 5 C45 15 55 30 50 50 C40 45 25 40 10 50 C15 30 20 15 30 5Z' fill='none' stroke='%236B8F71' stroke-width='1.5'/%3E%3Cline x1='30' y1='5' x2='30' y2='50' stroke='%236B8F71' stroke-width='1' opacity='0.5'/%3E%3C/svg%3E") no-repeat;
}
.testimonials-slider {
    position: relative;
}

/* Hide all decorative patterns on mobile to keep zen clean */
@media (max-width: 768px) {
    .intro-grid::before,
    .why-grid::before,
    .areas-grid::after,
    .testimonials-slider::after {
        display: none;
    }
}

/* ======================================================
   UNIQUE CONTACT PAGE — Zen Garden Minimal Form
   ====================================================== */

/* Form container — breathing space, barely there */
.contact-form-wrap {
    background: transparent !important;
    padding: 0 !important;
    max-width: 560px;
}
.contact-form-wrap h2 {
    font-weight: 300 !important;
    font-size: 1.8rem !important;
    letter-spacing: 0.01em;
    color: var(--color-heading) !important;
    margin-bottom: 0.25rem !important;
}
.contact-form-wrap > p {
    font-size: 0.95rem !important;
    color: #999 !important;
    margin-bottom: 3rem !important;
}

/* Labels — whisper-quiet */
.contact-form .form-group label {
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2em !important;
    color: #aaa !important;
    font-weight: 400 !important;
}
.required { color: var(--color-primary) !important; opacity: 0.6; }

/* Inputs — single bottom line, nothing else */
.contact-form .form-group input,
.contact-form .form-group select {
    border: none !important;
    border-bottom: 1px solid #ddd !important;
    border-radius: 0 !important;
    background: transparent !important;
    padding: 0.75rem 0 !important;
    font-size: 1rem;
    color: var(--color-heading) !important;
    transition: border-color 0.6s ease;
}
.contact-form .form-group input:focus,
.contact-form .form-group select:focus {
    border-bottom-color: var(--color-primary) !important;
    box-shadow: none !important;
    outline: none;
}
.contact-form .form-group input::placeholder {
    color: #ccc !important;
    font-weight: 300;
}

/* Textarea — thin border, lots of space */
.contact-form .form-group textarea {
    border: 1px solid #eee !important;
    border-radius: 4px !important;
    background: transparent !important;
    padding: 1rem !important;
    font-size: 1rem;
    color: var(--color-heading) !important;
    min-height: 140px !important;
    transition: border-color 0.6s ease;
}
.contact-form .form-group textarea:focus {
    border-color: var(--color-primary) !important;
    box-shadow: none !important;
}
.contact-form .form-group textarea::placeholder {
    color: #ccc !important;
    font-weight: 300;
}

/* Form row — extra spacing */
.contact-form .form-row {
    gap: 2rem !important;
}
.contact-form .form-group {
    gap: 0.6rem !important;
}

/* Submit — barely there, just text with underline */
.contact-form .btn-primary {
    background: transparent !important;
    color: var(--color-primary) !important;
    border: none !important;
    border-bottom: 1px solid var(--color-primary) !important;
    border-radius: 0 !important;
    padding: 0.75rem 0 !important;
    font-weight: 400 !important;
    font-size: 1rem;
    letter-spacing: 0.1em;
    width: auto !important;
    box-shadow: none !important;
    transition: all 1s ease;
}
.contact-form .btn-primary:hover {
    color: var(--color-heading) !important;
    border-bottom-color: var(--color-heading) !important;
    transform: none !important;
    letter-spacing: 0.15em;
}

/* Info cards — ultra minimal */
.contact-info-side .info-card {
    background: transparent !important;
    border: none !important;
    border-top: 1px solid #eee !important;
    border-radius: 0 !important;
    padding: 1.5rem 0 !important;
    box-shadow: none !important;
}
.contact-info-side .info-card h3 {
    font-weight: 300 !important;
    font-size: 0.8rem !important;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #aaa !important;
    margin-bottom: 0.5rem !important;
}
.contact-info-side .info-card p {
    color: #888 !important;
    font-size: 0.9rem;
    line-height: 1.8;
}

/* Map — ultra subtle */
.contact-map iframe {
    border-radius: 4px !important;
    opacity: 0.7;
    transition: opacity 1s ease;
    border: none !important;
}
.contact-map iframe:hover {
    opacity: 1;
}

/* Form status — minimal */
.form-status.success {
    background: transparent !important;
    border: none !important;
    border-top: 1px solid var(--color-primary) !important;
    color: var(--color-primary) !important;
    border-radius: 0 !important;
    padding: 1rem 0 !important;
}

@media (max-width: 768px) {
    .contact-form-wrap > p {
        margin-bottom: 2rem !important;
    }
    .contact-form .form-row {
        gap: 1.25rem !important;
    }
}

/* ======================================================
   UNIQUE BLOG ARTICLE — Zen Minimal Reading Experience
   ====================================================== */

/* Article header — barely there, just text and breath */
.article-header {
    border: none !important;
    padding: 0 0 3rem !important;
    margin-bottom: 3.5rem !important;
    text-align: center;
}
.article-header h1 {
    font-weight: 300 !important;
    font-size: clamp(1.8rem, 4.5vw, 2.6rem) !important;
    letter-spacing: 0.01em;
    line-height: 1.35 !important;
    color: var(--color-heading) !important;
    max-width: 600px;
    margin: 0 auto;
}

/* Meta — ultra-quiet, centered */
.article-meta {
    justify-content: center !important;
    gap: 2rem !important;
    margin-top: 1.5rem !important;
}
.article-meta span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #bbb;
    font-weight: 300;
}

/* Back link — just text, no decoration */
.back-link {
    font-size: 0.8rem !important;
    color: #bbb !important;
    font-weight: 300 !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 1s ease;
    display: block;
    text-align: center;
    margin-bottom: 3rem !important;
}
.back-link:hover { color: var(--color-primary) !important; }

/* Featured image — no frame, just the image with fade edges */
.article-featured-image {
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    max-width: 100% !important;
    margin: 0 -1.5rem 4rem !important;
    width: calc(100% + 3rem);
}
.article-featured-image img {
    width: 100%;
}

/* Body — maximum readability */
.article-body {
    max-width: 640px !important;
    font-size: 1.08rem !important;
    line-height: 2.1 !important;
    color: #555 !important;
    font-weight: 400;
}

/* h2 — just text, centered, wide space above */
.article-body h2 {
    font-weight: 300 !important;
    font-size: 1.4rem !important;
    text-align: center !important;
    margin: 5rem 0 1.5rem !important;
    color: var(--color-heading) !important;
    position: relative;
    padding-top: 3rem;
}
.article-body h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background: #ccc;
}

/* h3 — light, with space */
.article-body h3 {
    font-weight: 400 !important;
    color: #777 !important;
    margin: 3rem 0 1rem !important;
    font-size: 1.15rem !important;
}

/* Blockquotes — centered, no border, just space and italics */
.article-body blockquote {
    border: none !important;
    background: transparent !important;
    padding: 2rem 0 !important;
    margin: 3rem auto !important;
    max-width: 85%;
    text-align: center;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 2;
    color: #888 !important;
    position: relative;
}
.article-body blockquote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 1px;
    background: var(--color-primary);
    opacity: 0.4;
}
.article-body blockquote::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 1px;
    background: var(--color-primary);
    opacity: 0.4;
}

/* Lists — simple, quiet */
.article-body ul { list-style: none !important; padding-left: 0 !important; }
.article-body ul li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
    color: #666;
}
.article-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 5px;
    height: 1px;
    background: #ccc;
}

/* Article footer — single thin line */
.article-footer {
    border-top: none !important;
    padding-top: 4rem !important;
    position: relative;
}
.article-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background: #ccc;
}

/* Related articles — minimal cards */
.article-page .article-card {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}
.article-page .article-card-body h3 a {
    font-weight: 400 !important;
    color: #888 !important;
}
.article-page .article-card-body h3 a:hover {
    color: var(--color-primary) !important;
}

@media (max-width: 768px) {
    .article-featured-image {
        margin: 0 0 3rem !important;
        width: 100%;
    }
    .article-body h2 {
        margin: 3.5rem 0 1.25rem !important;
        padding-top: 2rem;
    }
}

/* ======================================================
   UNIQUE NAV HOVER — Zen Ink Fade
   ====================================================== */

/* Nav links — slow ink color bleed, no movement */
.main-nav a {
    position: relative;
    transition: color 0.8s ease !important;
}
.main-nav a:hover {
    color: var(--color-primary) !important;
    background: transparent !important;
}

/* Subtle thin line fades in below — like ink settling */
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    opacity: 0;
    transform: translateX(-50%);
    transition: width 0.6s ease 0.1s, opacity 0.6s ease 0.1s;
}
.main-nav a:hover::after {
    width: 60%;
    opacity: 0.5;
}

/* Active — persistent faint underline */
.main-nav a.active {
    color: var(--color-heading) !important;
}
.main-nav a.active::after {
    width: 40%;
    opacity: 0.3;
}

/* CTA — just color change, nothing more */
.main-nav .nav-cta {
    transition: all 0.6s ease !important;
}
.main-nav .nav-cta::after { display: none !important; }
.main-nav .nav-cta:hover {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    box-shadow: none !important;
}

/* Header — barely visible border appears on scroll */
.site-header {
    border-bottom: 1px solid transparent !important;
    transition: border-color 1s ease;
}
.site-header.scrolled {
    border-bottom-color: rgba(107,143,113,0.1) !important;
    box-shadow: none !important;
}

/* Mobile — ink left bar, ultra slow */
@media (max-width: 768px) {
    .main-nav a::after { display: none; }
    .main-nav a {
        border-left: 2px solid transparent;
        transition: all 0.6s ease !important;
        padding-left: 0.5rem !important;
    }
    .main-nav a:hover {
        border-left-color: rgba(107,143,113,0.4) !important;
        padding-left: 0.75rem !important;
    }
    .main-nav a.active {
        border-left-color: rgba(107,143,113,0.3) !important;
    }
}

/* ======================================================
   MOBILE FAQ PAGE — Zen Minimal Accordion
   ====================================================== */

@media (max-width: 768px) {
    /* FAQ container — breathing room */
    .faq-container {
        max-width: 100% !important;
        padding: 0 !important;
    }

    /* FAQ items — borderless, just space and thin separators */
    .faq-item {
        border: none !important;
        border-bottom: 1px solid #eee !important;
        border-radius: 0 !important;
        background: transparent !important;
    }
    .faq-item:last-child {
        border-bottom: none !important;
    }

    /* Question — generous height, ultra-light */
    .faq-question {
        padding: 1.25rem 0.5rem 1.25rem 0 !important;
        font-weight: 400 !important;
        font-size: 0.95rem !important;
        color: var(--color-heading) !important;
        min-height: 52px;
    }
    .faq-item.active .faq-question {
        color: var(--color-primary) !important;
    }

    /* Toggle — minimal thin plus */
    .faq-toggle {
        width: 20px !important;
        height: 20px !important;
        opacity: 0.4;
    }
    .faq-item.active .faq-toggle {
        opacity: 0.7;
    }

    /* Answer — soft indent, generous breathing */
    .faq-answer-inner {
        padding: 0 0 1.5rem 0 !important;
        font-size: 0.9rem !important;
        line-height: 2 !important;
        color: #888 !important;
    }

    /* Page hero — minimal */
    .page-hero {
        padding: calc(var(--header-height) + 2.5rem) 0 2.5rem !important;
        background: transparent !important;
        border: none !important;
    }
    .page-hero h1 {
        font-weight: 300 !important;
        font-size: 1.5rem !important;
        color: var(--color-heading) !important;
    }
    .page-hero p {
        font-size: 0.9rem !important;
        color: #aaa !important;
    }

    /* Still-have-questions section — barely there */
    .section.bg-alt {
        background: transparent !important;
    }
}

@media (max-width: 480px) {
    .faq-question {
        font-size: 0.9rem !important;
        padding: 1rem 0.25rem 1rem 0 !important;
    }
    .faq-answer-inner {
        font-size: 0.85rem !important;
        line-height: 1.9 !important;
    }
}

/* ======================================================
   ZEN TYPOGRAPHY REFINEMENTS
   ====================================================== */

/* Hero — ultra-thin, breathing space */
.hero h1 {
    font-weight: 200 !important;
    font-size: clamp(2rem, 5.5vw, 3.2rem) !important;
    letter-spacing: 0.03em !important;
    line-height: 1.35 !important;
    word-spacing: 0.05em;
}
.hero-sub {
    font-weight: 300 !important;
    letter-spacing: 0.02em;
    line-height: 1.9;
    opacity: 0.85;
}

/* Section labels — whisper thin, wide spaced */
.section-label {
    font-size: 0.65rem !important;
    font-weight: 300 !important;
    letter-spacing: 0.35em !important;
    color: #aaa !important;
    text-transform: uppercase !important;
}

/* Section titles — barely there weight */
.section-title {
    font-weight: 200 !important;
    letter-spacing: 0.02em;
    line-height: 1.35;
    color: #444 !important;
}

/* Service headings — light */
.service-card h3 {
    font-weight: 400 !important;
    letter-spacing: 0.01em;
    color: #555 !important;
}

/* Prices — thin, understated */
.service-price {
    font-weight: 300 !important;
    color: #666 !important;
}
.service-price span {
    color: #999 !important;
}

/* Why/value headings — quiet */
.why-item h3, .value-card h3 {
    font-weight: 400 !important;
    color: #555 !important;
}

/* Testimonials — quiet italic body serif */
.testimonial-text {
    font-family: 'Cabin', sans-serif !important;
    font-weight: 300 !important;
    font-style: normal !important;
    font-size: 0.95rem !important;
    line-height: 2 !important;
    color: #777 !important;
}
.testimonial-name {
    font-weight: 500 !important;
    font-size: 0.85rem !important;
    color: #555 !important;
    letter-spacing: 0.03em;
}
.testimonial-detail {
    color: #aaa !important;
}

/* FAQ — light question weight */
.faq-question {
    font-weight: 400 !important;
    color: #555 !important;
}

/* Footer — fading into background */
.footer-nav h4, .footer-info h4 {
    font-size: 0.7rem !important;
    letter-spacing: 0.25em !important;
    text-transform: uppercase !important;
    font-weight: 300 !important;
    color: #999 !important;
}
.footer-nav a {
    color: #888 !important;
    font-weight: 300;
}
.footer-bottom p {
    font-size: 0.7rem !important;
    letter-spacing: 0.15em;
    opacity: 0.4 !important;
}

/* CTA — thin, calm */
.cta-banner h2 {
    font-weight: 200 !important;
    letter-spacing: 0.02em;
}
.cta-banner p {
    font-weight: 300;
    opacity: 0.8;
}

/* Flock leaders */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.team-member {
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--color-border);
}
.team-photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}
.team-name {
    color: var(--color-primary-dark);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}
.team-role {
    color: var(--color-cta);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.team-bio { font-size: 0.98rem; }

/* Page header (inner pages) */
.page-header {
    background: var(--color-primary-light);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}
.page-header h1 {
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
}
.page-header .lead {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* FAQ details */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.faq-item summary {
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--color-heading);
    list-style: none;
    position: relative;
}
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: var(--color-primary);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-answer { padding: 0 1.25rem 1.25rem; }

/* Page hero */
.page-hero h1 {
    font-weight: 200 !important;
    letter-spacing: 0.02em;
}
.page-hero p {
    font-weight: 300;
    color: #999 !important;
}

/* Body text — soft grey, generous height */
.intro-text p,
.about-story-text p,
.approach-text p {
    color: #6B6B6B !important;
    line-height: 2 !important;
    font-weight: 400;
}

@media (max-width: 768px) {
    .hero h1 {
        font-weight: 300 !important;
        font-size: clamp(1.6rem, 7vw, 2.4rem) !important;
    }
}
