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

:root {
    --teal: #0d9488;
    --teal-light: #14b8a6;
    --teal-dark: #0f766e;
    --teal-pale: #ccfbf1;
    --slate: #1e293b;
    --slate-light: #334155;
    --slate-pale: #f1f5f9;
    --white: #ffffff;
    --black: #0f172a;
    --gray: #64748b;
    --font-display: 'Red Hat Display', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--slate);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== GEOMETRIC BACKGROUND ===== */
.geometric-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: var(--teal);
    top: -200px;
    right: -150px;
}

.geo-circle--2 {
    width: 400px;
    height: 400px;
    background: var(--teal);
    bottom: 10%;
    left: -100px;
}

.geo-rect {
    position: absolute;
    opacity: 0.03;
    background: var(--slate);
}

.geo-rect--1 {
    width: 200px;
    height: 500px;
    top: 30%;
    right: 5%;
    transform: rotate(15deg);
}

.geo-rect--2 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    right: 20%;
    transform: rotate(45deg);
    background: var(--teal);
}

.page-wrapper {
    position: relative;
    z-index: 1;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(13, 148, 136, 0.1);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

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

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

.logo-icon {
    color: var(--teal);
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: var(--slate-light);
    font-weight: 500;
    font-size: 0.938rem;
    position: relative;
    transition: color 0.2s;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--teal);
}

.nav a:hover::after {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.938rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn--header {
    background: var(--teal);
    color: var(--white);
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn--header:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.3);
}

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

.btn--primary:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.3);
}

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

.btn--secondary:hover {
    background: var(--slate);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--white);
    color: var(--teal-dark);
    border-color: var(--white);
}

.btn--white:hover {
    background: var(--teal-pale);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.btn--outline-white:hover {
    background: var(--white);
    color: var(--teal-dark);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 1rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--slate);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--white) 0%, var(--teal-pale) 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(13, 148, 136, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(13, 148, 136, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid rgba(13, 148, 136, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.813rem;
    font-weight: 500;
    color: var(--teal-dark);
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.06);
}

.hero-tag-dot {
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-headline {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.05;
    color: var(--slate);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-headline .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: wordIn 0.6s ease forwards;
}

.hero-headline .word--1 { animation-delay: 0.2s; }
.hero-headline .word--2 { animation-delay: 0.4s; color: var(--teal); }
.hero-headline .word--3 { animation-delay: 0.6s; }
.hero-headline .word--4 { animation-delay: 0.8s; color: var(--teal); }

@keyframes wordIn {
    to { opacity: 1; transform: translateY(0); }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 24px;
    align-items: center;
}

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

.stat-number {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--teal);
    line-height: 1;
}

.stat-label {
    font-size: 0.813rem;
    color: var(--gray);
    margin-top: 4px;
}

.stat-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(13, 148, 136, 0.2);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    padding-left: 40px;
    padding-top: 40px;
}

.hero-image-stack {
    position: relative;
}

.hero-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.hero-img--main {
    width: 100%;
    max-width: 500px;
}

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

.hero-img--accent {
    position: absolute;
    bottom: -30px;
    left: -50px;
    width: 260px;
    border: 6px solid var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: -20px;
    background: var(--teal);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.3);
    z-index: 2;
}

/* ===== COLOR BLOCKS ===== */
.color-block {
    padding: 100px 0;
    position: relative;
}

.color-block--teal {
    background: var(--teal);
    color: var(--white);
}

.color-block--slate {
    background: var(--slate);
    color: var(--white);
}

/* ===== SERVICES ===== */
.services-header {
    margin-bottom: 48px;
    max-width: 520px;
}

.services-header .section-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.services-header .section-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--white);
}

.services-header p {
    font-size: 1.063rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.service-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.service-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 28px;
    text-decoration: none;
    color: var(--slate);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.service-card--dark {
    background: var(--slate);
    color: var(--white);
}

.service-card--dark::before {
    background: var(--teal-light);
}

.service-card--dark:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.service-card-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: var(--teal-pale);
    border-radius: 50%;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.service-card--dark .service-card-accent {
    background: rgba(20, 184, 166, 0.2);
}

.service-card:hover .service-card-accent {
    transform: scale(1.5);
    opacity: 0.3;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--teal-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    position: relative;
    z-index: 1;
}

.service-card--dark .service-icon {
    background: rgba(20, 184, 166, 0.2);
    color: var(--teal-light);
}

.service-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.063rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.service-card--dark p {
    color: rgba(255, 255, 255, 0.7);
}

.service-link {
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--teal);
    margin-top: 4px;
    position: relative;
    z-index: 1;
    transition: gap 0.2s;
}

.service-card:hover .service-link {
    gap: 8px;
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.about-img-main img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-float {
    position: absolute;
    bottom: -40px;
    right: -30px;
    border-radius: 16px;
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.about-img-float img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-geometric {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--teal);
    border-radius: 20px;
    opacity: 0.15;
    z-index: 0;
}

.about-content .section-tag {
    display: inline-block;
    background: var(--teal-pale);
    color: var(--teal-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    color: var(--slate);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-title--light {
    color: var(--white);
}

.about-lead {
    font-size: 1.125rem;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-content > p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.938rem;
    color: var(--slate-light);
}

.about-list li svg {
    color: var(--teal);
    flex-shrink: 0;
}

/* ===== GALLERY ===== */
.gallery-grid {
    padding-top: 0;
}

.gallery-header {
    margin-bottom: 40px;
}

.section-tag--light {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.gallery-items {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item--large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
    min-height: 360px;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--tall) {
    grid-column: span 6;
    min-height: 200px;
}

.gallery-item--tall {
    grid-column: 10 / 13;
    grid-row: 1 / 3;
    min-height: 100%;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-geometric {
    position: absolute;
    top: -40px;
    right: 10%;
    width: 200px;
    height: 200px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    transform: rotate(30deg);
}

.cta-content h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1.063rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 400px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--slate-pale);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-tag {
    display: inline-block;
    background: var(--teal-pale);
    color: var(--teal-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.contact-detail strong {
    display: block;
    font-size: 0.813rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray);
    margin-bottom: 4px;
}

.contact-detail span,
.contact-detail a {
    font-size: 1rem;
    color: var(--slate);
    text-decoration: none;
    font-weight: 500;
}

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

/* Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    position: relative;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.938rem;
    color: var(--slate);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    gap: 16px;
}

.form-success svg {
    color: var(--teal);
}

.form-success h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--slate);
}

.form-success p {
    color: var(--gray);
    font-size: 0.938rem;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo--light {
    color: var(--white);
}

.logo--light .logo-icon {
    color: var(--teal-light);
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.938rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links strong,
.footer-contact strong {
    color: var(--white);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.938rem;
    transition: color 0.2s;
}

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

.footer-contact span {
    font-size: 0.938rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
    .mobile-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 2px solid var(--teal-pale);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }

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

    .btn--header {
        display: none;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        padding-left: 0;
        padding-top: 0;
        order: -1;
    }

    .hero-img--accent {
        left: auto;
        right: -10px;
        width: 200px;
        bottom: -20px;
    }

    .hero-badge {
        right: 10px;
    }

    .hero-stats {
        gap: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-img-float {
        right: 0;
        bottom: -30px;
    }

    .gallery-items {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item--large {
        grid-column: 1 / -1;
        min-height: 240px;
    }

    .gallery-item:not(.gallery-item--large):not(.gallery-item--tall) {
        grid-column: span 1;
        min-height: 180px;
    }

    .gallery-item--tall {
        grid-column: 1 / -1;
        min-height: 280px;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-headline {
        font-size: 2.75rem;
    }

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

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

    .contact-form-wrap {
        padding: 24px;
    }

    .color-block {
        padding: 64px 0;
    }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
