/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #1a1a1a;
    background: #FFFAF5;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Color Tokens ── */
:root {
    --burgundy: #781F2E;
    --burgundy-dark: #5A1521;
    --burgundy-light: #9B2D42;
    --blush: #F8C8D4;
    --blush-light: #FDE4EA;
    --blush-dark: #E8A0B4;
    --cream: #FFF8F0;
    --cream-dark: #F5EDE3;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #7A7A7A;
    --white: #FFFFFF;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}
.btn-primary {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}
.btn-primary:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(120, 31, 46, 0.3);
}
.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}
.btn-secondary:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ── Section Eyebrow & Title ── */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--burgundy);
    margin-bottom: 16px;
}
.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--burgundy);
}
.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    color: var(--text-dark);
    margin-bottom: 20px;
}
.title-accent { color: var(--burgundy); }
.section-desc {
    font-size: 1.0625rem;
    color: var(--text-mid);
    max-width: 560px;
    line-height: 1.7;
}
.section-header { margin-bottom: 56px; }

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 250, 245, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(120, 31, 46, 0.08);
    transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(120, 31, 46, 0.1); }
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--burgundy);
}
.nav-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--burgundy);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: color 0.2s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--burgundy);
    transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--burgundy); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: var(--burgundy) !important;
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.875rem !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--burgundy-dark) !important; transform: translateY(-1px); }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.geo { position: absolute; }
.geo-circle-1 {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--blush);
    top: -120px;
    right: -100px;
    opacity: 0.5;
}
.geo-rect-1 {
    width: 200px;
    height: 300px;
    background: var(--burgundy);
    opacity: 0.06;
    bottom: 60px;
    left: -40px;
    transform: rotate(15deg);
    border-radius: 20px;
}
.geo-circle-2 {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--blush-dark);
    opacity: 0.3;
    bottom: 120px;
    right: 30%;
}
.geo-triangle-1 {
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid var(--burgundy);
    opacity: 0.07;
    top: 25%;
    left: 10%;
    transform: rotate(-20deg);
}
.geo-dots {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 5%;
    background-image: radial-gradient(circle, var(--burgundy) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.2;
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content { max-width: 520px; }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--burgundy);
    margin-bottom: 28px;
}
.hero-eyebrow-line {
    width: 40px;
    height: 2px;
    background: var(--burgundy);
}
.hero-headline {
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    line-height: 1.05;
    color: var(--text-dark);
    margin-bottom: 24px;
}
.hero-headline-accent {
    color: var(--burgundy);
    font-style: italic;
}
.hero-subheadline {
    font-size: 1.125rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 440px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--burgundy);
}
.hero-stat-label {
    font-size: 0.8125rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--blush-dark);
}
.hero-visual { position: relative; }
.hero-image-stack { position: relative; }
.hero-img-main {
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(120, 31, 46, 0.15);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-accent {
    position: absolute;
    bottom: -30px;
    left: -60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
    border: 4px solid var(--cream);
}
.hero-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
    position: absolute;
    top: 40px;
    right: -30px;
    background: var(--burgundy);
    color: var(--white);
    padding: 20px 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(120, 31, 46, 0.3);
    z-index: 2;
}
.hero-badge svg { opacity: 0.9; }
.hero-badge span {
    font-family: 'Playfair Display', serif;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.3;
}

/* ── Services ── */
.services {
    padding: 100px 0 0;
    background: var(--white);
    position: relative;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 0;
}
.service-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    border: 1px solid transparent;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(120, 31, 46, 0.12);
    border-color: var(--blush);
}
.service-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy), var(--blush));
    opacity: 0;
    transition: opacity 0.35s ease;
}
.service-card:hover .service-card-accent { opacity: 1; }
.service-icon {
    width: 56px;
    height: 56px;
    background: var(--burgundy);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-3deg); }
.service-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.service-card p {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.65;
}
.accent-bar {
    display: flex;
    height: 6px;
    margin-top: 0;
}
.accent-bar-segment { flex: 1; }
.accent-bar-burgundy { background: var(--burgundy); }
.accent-bar-blush { background: var(--blush-dark); }
.accent-bar-cream { background: var(--cream-dark); }

/* ── Gallery ── */
.gallery {
    padding: 100px 0;
    background: var(--cream);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}
.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(transparent, rgba(120, 31, 46, 0.85));
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}
.gallery-item:hover .gallery-item-overlay { transform: translateY(0); }
.gallery-item--large { grid-column: 1 / 8; grid-row: 1 / 3; }
.gallery-item--large img { height: 100%; min-height: 500px; }
.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) { height: 240px; }
.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) img { height: 100%; }
.gallery-item--wide { grid-column: 1 / 13; height: 280px; }
.gallery-item--wide img { height: 100%; }

/* ── About ── */
.about {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-visual {
    position: relative;
    min-height: 600px;
}
.about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(120, 31, 46, 0.12);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
    border: 4px solid var(--white);
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-geo-shape {
    position: absolute;
    width: 160px;
    height: 160px;
    background: var(--blush);
    border-radius: 50%;
    top: -40px;
    left: -40px;
    opacity: 0.4;
    z-index: -1;
}
.about-content { max-width: 520px; }
.about-text {
    font-size: 1.0625rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 20px;
}
.about-text strong { color: var(--text-dark); }
.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}
.about-value {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
}
.about-value-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--blush-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
}

/* ── Quote Section ── */
.quote-section {
    padding: 80px 0;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}
.quote-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    top: -200px;
    right: -100px;
}
.quote-section::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    bottom: -100px;
    left: 10%;
}
.quote-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.quote-mark { color: var(--blush); margin-bottom: 24px; opacity: 0.6; }
.quote-content blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.375rem, 3vw, 2rem);
    font-style: italic;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 28px;
}
.quote-attr {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}
.quote-attr-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--blush);
}
.quote-attr-location {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}

/* ── Contact ── */
.contact {
    padding: 100px 0;
    background: var(--cream);
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info { max-width: 480px; }
.contact-desc {
    font-size: 1.0625rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-detail-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--burgundy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.contact-detail-label {
    display: block;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 4px;
}
.contact-detail-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
}
.contact-detail-value a { color: var(--burgundy); transition: color 0.2s; }
.contact-detail-value a:hover { color: var(--burgundy-dark); text-decoration: underline; }

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 40px rgba(120, 31, 46, 0.08);
}
.contact-form-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-mid);
    margin-bottom: 8px;
}
.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--cream-dark);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: border-color 0.2s, background 0.2s;
    outline: none;
}
.form-input:focus {
    border-color: var(--burgundy);
    background: var(--white);
}
.form-input::placeholder { color: var(--text-light); }
.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23781F2E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    text-align: center;
    color: var(--burgundy);
}
.form-success svg { color: var(--burgundy); }
.form-success p { font-size: 1rem; font-weight: 500; }

/* ── Location ── */
.location { padding: 0; }

/* ── Footer ── */
.footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.7);
    padding: 72px 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--burgundy);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
}
.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 300px;
    color: rgba(255,255,255,0.5);
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--blush); }
.footer-col address {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 8px;
}
.footer-col a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col a:hover { color: var(--blush); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--blush); }

/* ── Back to Top ── */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--burgundy);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(120, 31, 46, 0.3);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--burgundy-dark); transform: translateY(-2px); }

/* ── Scroll Reveal ── */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal[data-state="hidden"] {
    opacity: 0;
    transform: translateY(32px);
}
@media (prefers-reduced-motion: no-preference) {
    .reveal[data-state="hidden"] {
        opacity: 0;
        transform: translateY(32px);
    }
    .reveal[data-state="visible"] {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-content { max-width: 100%; }
    .hero-visual { max-width: 480px; }
    .hero-img-accent { left: -20px; }
    .hero-badge { right: -10px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-layout { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { min-height: 400px; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 250, 245, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(120, 31, 46, 0.08);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
    .nav-toggle { display: flex; }
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-headline { font-size: clamp(2.25rem, 8vw, 3.5rem); }
    .hero-img-accent { position: relative; left: 0; bottom: 0; margin-top: 16px; }
    .hero-image-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .hero-img-main { border-radius: 20px; }
    .hero-badge { position: relative; top: auto; right: auto; grid-column: 1 / -1; border-radius: 12px; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item--large { grid-column: 1; grid-row: auto; }
    .gallery-item--large img, .gallery-item--large { min-height: 300px; height: auto; }
    .gallery-item--wide { grid-column: 1; }
    .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) { height: 200px; }
    .about-visual { min-height: 300px; }
    .about-img-float { right: 0; bottom: -20px; }
    .about-values { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px; }
    .footer-links { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; align-items: flex-start; gap: 12px; }
    .hero-stat-divider { width: 40px; height: 1px; }
    .footer-links { grid-template-columns: 1fr; }
    .hero-image-stack { grid-template-columns: 1fr; }
    .hero-badge { grid-column: auto; }
}
