*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-forest: #1a3a2a;
    --color-forest-light: #2d5a3f;
    --color-forest-dark: #0f2419;
    --color-cream: #f5f0e8;
    --color-cream-light: #faf7f2;
    --color-cream-dark: #e8e0d0;
    --color-gold: #c9a962;
    --color-gold-light: #d4b978;
    --color-text: #1a1a1a;
    --color-text-light: #4a4a4a;
    --color-text-muted: #6a6a6a;
    --color-white: #ffffff;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;
    --radius: 4px;
    --radius-lg: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-cream-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ─── Typography ─── */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-forest);
    margin-bottom: var(--space-md);
}

.section-subheading {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 560px;
    line-height: 1.7;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

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

.btn--primary:hover {
    background: var(--color-forest-light);
    border-color: var(--color-forest-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 58, 42, 0.3);
}

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

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

.btn--light {
    background: var(--color-white);
    color: var(--color-forest);
    border-color: var(--color-white);
}

.btn--light:hover {
    background: var(--color-cream);
    border-color: var(--color-cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn--outline-light {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

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

/* ─── Header ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: all var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(245, 240, 232, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(26, 58, 42, 0.1);
    padding: 0.75rem 0;
}

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

.header__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-white);
    transition: color var(--transition);
}

.header.scrolled .header__logo {
    color: var(--color-forest);
}

.header__logo-icon {
    color: var(--color-gold);
}

/* ─── Navigation ─── */
.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    list-style: none;
}

.nav__link {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-gold);
    transition: width var(--transition);
}

.nav__link:hover::after,
.nav__link:focus::after {
    width: 100%;
}

.nav__link:hover {
    color: var(--color-white);
}

.header.scrolled .nav__link {
    color: var(--color-text-light);
}

.header.scrolled .nav__link:hover {
    color: var(--color-forest);
}

.nav__link--cta {
    padding: 0.5rem 1.25rem;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.nav__link--cta:hover {
    background: var(--color-white);
    color: var(--color-forest) !important;
    border-color: var(--color-white);
}

.header.scrolled .nav__link--cta {
    border-color: var(--color-forest);
    color: var(--color-forest);
}

.header.scrolled .nav__link--cta:hover {
    background: var(--color-forest);
    color: var(--color-white);
}

/* ─── Mobile Nav Toggle ─── */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav__toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition);
    transform-origin: center;
}

.header.scrolled .nav__toggle-line {
    background: var(--color-forest);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 36, 25, 0.75) 0%,
        rgba(26, 58, 42, 0.65) 50%,
        rgba(15, 36, 25, 0.80) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: var(--space-lg) var(--space-md);
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.hero__subheadline {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

.hero__actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero__scroll svg {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ─── Intro ─── */
.intro {
    padding: var(--space-2xl) 0;
    background: var(--color-cream-light);
}

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

.intro__image-wrap {
    position: relative;
}

.intro__image-wrap img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.intro__image-wrap::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.intro__text {
    padding: var(--space-md) 0;
}

.intro__text p {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
    line-height: 1.8;
}

.intro__stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-cream-dark);
}

.stat__number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-forest);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat__label {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ─── Services ─── */
.services {
    padding: var(--space-2xl) 0;
    background: var(--color-cream);
}

.services__header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.services__header .section-subheading {
    margin: 0 auto;
}

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

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

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(26, 58, 42, 0.1);
    border-color: var(--color-gold);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-forest);
    margin-bottom: var(--space-md);
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-forest);
    margin-bottom: var(--space-sm);
}

.service-card__desc {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ─── Materials ─── */
.materials {
    padding: var(--space-2xl) 0;
    background: var(--color-cream-light);
}

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

.materials__image img {
    width: 100%;
    height: 900px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.materials__content {
    padding: var(--space-md) 0;
}

.materials__desc {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.materials__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.materials__list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.materials__list-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin-top: 2px;
}

/* ─── Gallery ─── */
.gallery {
    padding: var(--space-2xl) 0;
    background: var(--color-cream);
}

.gallery__header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.gallery__header .section-subheading {
    margin: 0 auto;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-sm);
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 36, 25, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-overlay span {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--color-white);
    font-weight: 700;
}

.gallery__item--large {
    grid-column: span 7;
    grid-row: span 2;
    min-height: 500px;
}

.gallery__item--large img {
    min-height: 500px;
}

.gallery__item:not(.gallery__item--large) {
    min-height: 240px;
}

.gallery__item--wide {
    grid-column: span 12;
}

.gallery__item--wide img {
    height: 300px;
}

/* ─── Process ─── */
.process {
    padding: var(--space-2xl) 0;
    background: var(--color-forest);
}

.process .section-eyebrow {
    color: var(--color-gold);
}

.process .section-heading {
    color: var(--color-white);
}

.process .section-subheading {
    color: rgba(255, 255, 255, 0.6);
}

.process__header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.process__header .section-subheading {
    margin: 0 auto;
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.process__step {
    position: relative;
    padding: var(--space-md);
}

.process__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -12px;
    width: 24px;
    height: 2px;
    background: var(--color-gold);
    opacity: 0.5;
}

.process__step-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-gold);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.process__step-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.process__step-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ─── CTA Banner ─── */
.cta-banner {
    padding: var(--space-2xl) 0;
    background: var(--color-cream);
}

.cta-banner__inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.cta-banner__headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-forest);
    margin-bottom: var(--space-md);
}

.cta-banner__text {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

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

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

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.contact__info {
    padding: var(--space-md) 0;
}

.contact__desc {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.contact__detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-forest);
    border-radius: var(--radius);
    color: var(--color-gold);
}

.contact__detail strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-forest);
    margin-bottom: 0.25rem;
}

.contact__detail span,
.contact__detail a {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.contact__detail a:hover {
    color: var(--color-forest);
    text-decoration: underline;
}

/* ─── Contact Form ─── */
.contact__form-wrap {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px rgba(26, 58, 42, 0.06);
}

.contact__form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-forest);
    margin-bottom: var(--space-md);
}

.form__group {
    margin-bottom: var(--space-sm);
}

.form__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.375rem;
}

.form__input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--color-text);
    background: var(--color-cream-light);
    border: 1.5px solid var(--color-cream-dark);
    border-radius: var(--radius);
    transition: all var(--transition);
    outline: none;
}

.form__input:focus {
    border-color: var(--color-forest);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(26, 58, 42, 0.1);
}

.form__input::placeholder {
    color: var(--color-text-muted);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236a6a6a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__success {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
    padding: var(--space-sm);
    background: rgba(26, 58, 42, 0.06);
    border-radius: var(--radius);
    color: var(--color-forest);
    font-size: 0.9375rem;
}

.form__success svg {
    flex-shrink: 0;
    color: var(--color-forest);
}

/* ─── Footer ─── */
.footer {
    background: var(--color-forest-dark);
    padding: var(--space-xl) 0 var(--space-md);
    color: rgba(255, 255, 255, 0.7);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.footer__logo svg {
    color: var(--color-gold);
}

.footer__brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer__col h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.footer__col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__col a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer__col a:hover {
    color: var(--color-white);
}

.footer__bottom {
    padding-top: var(--space-md);
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process__steps {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .process__step:not(:last-child)::after {
        display: none;
    }
    
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }
    
    .nav__list {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-md);
        background: var(--color-forest-dark);
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 1000;
    }
    
    .nav__list.open {
        transform: translateX(0);
    }
    
    .nav__link {
        color: rgba(255, 255, 255, 0.85) !important;
        font-size: 1rem;
    }
    
    .nav__link--cta {
        border-color: rgba(255, 255, 255, 0.4) !important;
        color: var(--color-white) !important;
    }
    
    .nav__link--cta:hover {
        background: var(--color-white) !important;
        color: var(--color-forest) !important;
    }
    
    .hero__headline {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }
    
    .intro__grid,
    .materials__split,
    .contact__grid {
        grid-template-columns: 1fr;
    }
    
    .intro__image-wrap img {
        height: 400px;
    }
    
    .materials__image img {
        height: 500px;
    }
    
    .intro__image-wrap::before {
        top: -10px;
        left: -10px;
        right: 10px;
        bottom: 10px;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery__item--large {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 300px;
    }
    
    .gallery__item--large img {
        min-height: 300px;
    }
    
    .gallery__item--wide {
        grid-column: span 2;
    }
    
    .process__steps {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-banner__actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .intro__stats {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .gallery__grid {
        grid-template-columns: 1fr;
    }
    
    .gallery__item--large,
    .gallery__item--wide {
        grid-column: span 1;
    }
    
    .contact__form-wrap {
        padding: var(--space-md);
    }
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
