/* ============================================
   BYRNE HOLLOW FARM — Custom Styles
   Palette: Terracotta + Sand | Fresh & Airy
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
    --color-terracotta: #C4775B;
    --color-terracotta-dark: #A8614A;
    --color-terracotta-light: #D4917A;
    --color-sand: #F5EDE4;
    --color-sand-light: #FBF7F3;
    --color-cream: #FDF8F4;
    --color-white: #FFFFFF;
    --color-text: #3D2C24;
    --color-text-light: #7A6458;
    --color-text-muted: #A89488;
    --color-border: #EDE3DA;
    --color-success: #5B8C5A;
    --color-bg-accent: #F9F0EA;

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 2.5rem;
    --fs-4xl: 3.25rem;
    --fs-5xl: 4rem;

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 1px 3px rgba(61, 44, 36, 0.06);
    --shadow-md: 0 4px 16px rgba(61, 44, 36, 0.08);
    --shadow-lg: 0 8px 32px rgba(61, 44, 36, 0.10);
    --shadow-xl: 0 16px 48px rgba(61, 44, 36, 0.12);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- 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: var(--fs-base);
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--color-terracotta-dark);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

address {
    font-style: normal;
}

/* ---- Utility ---- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    background: var(--color-terracotta);
    color: var(--color-white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-size: var(--fs-sm);
}

.skip-link:focus {
    top: var(--space-md);
}

/* ---- Section Eyebrow ---- */
.section-eyebrow {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--color-terracotta);
}

/* ---- Section Title ---- */
.section-title {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.8em 1.8em;
    border-radius: 50px;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-terracotta);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(196, 119, 91, 0.3);
}

.btn--primary:hover {
    background: var(--color-terracotta-dark);
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(196, 119, 91, 0.4);
    transform: translateY(-1px);
}

.btn--terracotta {
    background: var(--color-terracotta);
    color: var(--color-white);
}

.btn--terracotta:hover {
    background: var(--color-terracotta-dark);
    color: var(--color-white);
}

.btn--ghost {
    background: transparent;
    color: var(--color-terracotta);
    border: 1.5px solid var(--color-terracotta);
}

.btn--ghost:hover {
    background: var(--color-terracotta);
    color: var(--color-white);
}

.btn--nav {
    background: var(--color-terracotta);
    color: var(--color-white);
    padding: 0.6em 1.4em;
    font-size: var(--fs-sm);
}

.btn--nav:hover {
    background: var(--color-terracotta-dark);
    color: var(--color-white);
}

.btn--lg {
    padding: 1em 2.2em;
    font-size: var(--fs-base);
}

.btn--full {
    width: 100%;
}

/* ---- Header ---- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 248, 244, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--color-text);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.logo-mark {
    flex-shrink: 0;
}

/* ---- Navigation ---- */
.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-list a {
    color: var(--color-text-light);
    font-size: var(--fs-sm);
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    border-radius: 50px;
    transition: all var(--transition);
}

.nav-list a:hover {
    color: var(--color-terracotta);
    background: var(--color-bg-accent);
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    margin-left: auto;
}

.hamburger {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-text);
    position: relative;
    transition: all var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--color-text);
    left: 0;
    transition: all var(--transition);
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ---- Hero ---- */
.hero {
    padding-top: 120px;
    padding-bottom: var(--space-4xl);
    background: linear-gradient(160deg, var(--color-cream) 0%, var(--color-sand-light) 50%, var(--color-bg-accent) 100%);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-content {
    max-width: 540px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    margin-bottom: var(--space-lg);
}

.hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-terracotta);
    display: inline-block;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4vw, var(--fs-5xl));
    font-weight: 300;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.hero-accent {
    font-weight: 400;
    font-style: italic;
    color: var(--color-terracotta);
}

.hero-sub {
    font-size: var(--fs-md);
    line-height: 1.75;
    color: var(--color-text-light);
    margin-bottom: var(--space-2xl);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-num {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: 500;
    color: var(--color-terracotta);
    line-height: 1;
}

.hero-stat-label {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: var(--space-xs);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-img-stack {
    position: relative;
    padding-left: var(--space-3xl);
}

.hero-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-img--main {
    width: 100%;
    aspect-ratio: 600 / 750;
}

.hero-img--main img,
.hero-img--accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img--accent {
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: 55%;
    aspect-ratio: 400 / 300;
    border: 6px solid var(--color-cream);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.hero-accent-shape {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--color-terracotta);
    opacity: 0.08;
    z-index: 0;
}

.hero-accent-shape::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-terracotta);
    opacity: 0.05;
}

/* ---- About ---- */
.about {
    padding: var(--space-5xl) 0;
    background: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 560 / 640;
}

.about-accent-block {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--color-sand);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content {
    max-width: 480px;
}

.about-content p {
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    font-size: var(--fs-base);
}

.about-values {
    display: grid;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.about-values li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    font-size: var(--fs-base);
    color: var(--color-text);
}

.about-values-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ---- Services ---- */
.services {
    padding: var(--space-5xl) 0;
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-sand-light) 100%);
}

.services-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-3xl);
}

.services-header .section-eyebrow {
    justify-content: center;
}

.services-header .section-eyebrow::before {
    display: none;
}

.services-intro {
    font-size: var(--fs-md);
    color: var(--color-text-light);
    line-height: 1.75;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--color-bg-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.service-card p {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
    line-height: 1.75;
}

/* ---- Approach ---- */
.approach {
    padding: var(--space-5xl) 0;
    background: var(--color-white);
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.approach-content {
    max-width: 520px;
}

.approach-steps {
    display: grid;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
}

.approach-step {
    display: flex;
    gap: var(--space-xl);
    align-items: flex-start;
}

.approach-step-num {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    font-weight: 300;
    color: var(--color-terracotta);
    opacity: 0.5;
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
}

.approach-step-title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.approach-step p {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
    line-height: 1.75;
}

.approach-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.approach-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 520 / 680;
}

/* ---- Community ---- */
.community {
    padding: var(--space-5xl) 0;
    background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-bg-accent) 100%);
}

.community-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.community-content {
    max-width: 480px;
}

.community-content p {
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    font-size: var(--fs-base);
}

.community-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.community-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 560 / 400;
}

/* ---- CTA ---- */
.cta {
    padding: var(--space-5xl) 0;
    background: var(--color-terracotta);
    text-align: center;
}

.cta-inner {
    max-width: 680px;
    margin: 0 auto;
}

.cta .section-eyebrow {
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
}

.cta .section-eyebrow::before {
    background: rgba(255, 255, 255, 0.5);
    display: none;
}

.cta-headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, var(--fs-4xl));
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.cta-sub {
    font-size: var(--fs-md);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin-bottom: var(--space-2xl);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

.cta .btn--primary {
    background: var(--color-white);
    color: var(--color-terracotta);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.cta .btn--primary:hover {
    background: var(--color-sand-light);
    color: var(--color-terracotta-dark);
    transform: translateY(-1px);
}

.cta .btn--ghost {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--color-white);
}

.cta .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-white);
    color: var(--color-white);
}

/* ---- Contact ---- */
.contact {
    padding: var(--space-5xl) 0;
    background: var(--color-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
}

.contact-info {
    max-width: 480px;
}

.contact-intro {
    font-size: var(--fs-base);
    color: var(--color-text-light);
    margin-bottom: var(--space-2xl);
    line-height: 1.75;
}

.contact-details {
    display: grid;
    gap: var(--space-xl);
}

.contact-detail {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--color-bg-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 2px;
}

.contact-detail span,
.contact-detail a {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
    line-height: 1.6;
}

.contact-detail a:hover {
    color: var(--color-terracotta);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.contact-form {
    display: grid;
    gap: var(--space-lg);
}

.form-group {
    display: grid;
    gap: var(--space-sm);
}

.form-group label {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    color: var(--color-text);
    background: var(--color-sand-light);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 0.75em 1em;
    width: 100%;
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-terracotta);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(196, 119, 91, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

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

.form-note {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    text-align: center;
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-2xl);
    text-align: center;
    color: var(--color-success);
}

.form-success svg {
    flex-shrink: 0;
}

.form-success p {
    font-size: var(--fs-base);
    color: var(--color-text);
}

/* ---- Footer ---- */
.site-footer {
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand .logo-text {
    color: var(--color-white);
}

.footer-brand p {
    margin-top: var(--space-md);
    font-size: var(--fs-sm);
    line-height: 1.75;
    max-width: 280px;
}

.footer-links strong,
.footer-contact strong {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    display: grid;
    gap: var(--space-sm);
}

.footer-links a,
.footer-contact a {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-white);
}

.footer-contact p {
    font-size: var(--fs-sm);
    line-height: 1.75;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom p {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.4);
}

/* ---- Scroll Animations ---- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero-grid {
        gap: var(--space-2xl);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    :root {
        --fs-3xl: 2rem;
        --fs-4xl: 2.5rem;
        --fs-5xl: 3rem;
    }

    .container {
        padding: 0 var(--space-lg);
    }

    /* Mobile nav */
    .nav-toggle {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 248, 244, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: var(--space-lg);
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition);
    }

    .nav-list.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-list a {
        padding: var(--space-md);
        width: 100%;
        text-align: center;
    }

    .btn--nav {
        margin-top: var(--space-md);
    }

    /* Hero */
    .hero {
        padding-top: 100px;
        padding-bottom: var(--space-3xl);
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: var(--space-lg);
    }

    .hero-visual {
        order: -1;
    }

    .hero-img-stack {
        padding-left: 0;
    }

    .hero-img--accent {
        left: 0;
        bottom: -20px;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .about-visual {
        order: -1;
    }

    .about-content {
        max-width: 100%;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Approach */
    .approach-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .approach-visual {
        order: -1;
    }

    .approach-step-num {
        font-size: var(--fs-2xl);
        width: 36px;
    }

    /* Community */
    .community-inner {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .community-content {
        max-width: 100%;
    }

    /* CTA */
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta .btn--lg {
        width: 100%;
        justify-content: center;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .contact-info {
        max-width: 100%;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-img--accent {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }

    .hero-stat-divider {
        display: none;
    }
}
