/* ========================================
   Cooks General Contracting — Styles
   Plum + Amber | Warm & Friendly
   ======================================== */

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

:root {
    --plum-deep: #3D1F3D;
    --plum: #5D3A5A;
    --plum-mid: #7B4F7B;
    --plum-light: #A670A0;
    --plum-pale: #F3E8F5;
    --plum-bg: #FBF7FC;
    --amber: #D4943A;
    --amber-light: #E8B96A;
    --amber-pale: #FFF3E0;
    --amber-glow: #FDE8C0;
    --cream: #FFFAF5;
    --warm-white: #FFFDF9;
    --text-dark: #2A1A2E;
    --text-mid: #5C4058;
    --text-light: #8A6B82;
    --text-muted: #B09AAD;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(93, 58, 90, 0.06);
    --shadow-md: 0 4px 20px rgba(93, 58, 90, 0.10);
    --shadow-lg: 0 8px 40px rgba(93, 58, 90, 0.14);
    --shadow-xl: 0 16px 60px rgba(93, 58, 90, 0.18);
    --font-display: 'Frauncie', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--warm-white);
    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;
}

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

/* ---------- Decorative Blobs ---------- */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.blob--1 {
    width: 500px;
    height: 500px;
    background: var(--plum-light);
    top: -100px;
    right: -100px;
}

.blob--2 {
    width: 400px;
    height: 400px;
    background: var(--amber-light);
    bottom: 20%;
    left: -80px;
}

.blob--3 {
    width: 300px;
    height: 300px;
    background: var(--plum-pale);
    top: 50%;
    right: 5%;
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 253, 249, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(93, 58, 90, 0.08);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(255, 253, 249, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav__container {
    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: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--plum-deep);
}

.nav__logo-accent {
    color: var(--amber);
    font-weight: 600;
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--plum);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__links {
    display: flex;
    gap: 4px;
}

.nav__link {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--plum);
    background: var(--plum-pale);
}

.nav__cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--plum);
    color: white;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
    margin-left: 12px;
}

.nav__cta:hover {
    background: var(--plum-deep);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: 0.938rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn--primary {
    background: var(--amber);
    color: white;
    box-shadow: 0 4px 16px rgba(212, 148, 58, 0.35);
}

.btn--primary:hover {
    background: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 148, 58, 0.45);
}

.btn--ghost {
    background: transparent;
    color: var(--plum);
    border: 2px solid var(--plum-light);
}

.btn--ghost:hover {
    background: var(--plum-pale);
    border-color: var(--plum);
}

.btn--outline {
    background: transparent;
    color: var(--plum);
    border: 2px solid var(--plum-light);
}

.btn--outline:hover {
    background: var(--plum-pale);
}

.btn--lg {
    padding: 16px 32px;
    font-size: 1rem;
}

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

/* ---------- Section Shared ---------- */
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--plum-pale);
    color: var(--plum);
    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-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.text-accent {
    color: var(--amber);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-description {
    margin: 0 auto;
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--plum-bg) 50%, var(--amber-glow) 100%);
}

.hero__container {
    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__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--plum);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--amber);
    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-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
    max-width: 520px;
}

.hero__subheadline {
    font-size: 1.125rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 460px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
}

.hero__trust-item svg {
    color: var(--amber);
}

/* Hero Image */
.hero__image {
    position: relative;
}

.hero__image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 520/680;
}

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

.hero__image-float {
    position: absolute;
    background: white;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    animation: float 4s ease-in-out infinite;
}

.hero__image-float svg {
    color: var(--amber);
}

.hero__image-float--1 {
    bottom: 60px;
    left: -30px;
    animation-delay: 0s;
}

.hero__image-float--2 {
    top: 40px;
    right: -20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    animation-delay: 2s;
}

.hero__float-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--amber);
    line-height: 1;
}

.hero__float-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Hero Scroll */
.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--plum-light), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Services ---------- */
.services {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(93, 58, 90, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--plum), var(--amber));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card__icon {
    width: 60px;
    height: 60px;
    background: var(--plum-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-card__icon {
    background: var(--plum);
    color: white;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
}

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

/* ---------- About ---------- */
.about {
    padding: 100px 0;
    background: var(--plum-bg);
    position: relative;
    z-index: 1;
}

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

.about__images {
    position: relative;
}

.about__img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 480/560;
}

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

.about__img-secondary {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--plum-bg);
    aspect-ratio: 320/280;
}

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

.about__experience-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--amber);
    color: white;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about__exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
}

.about__exp-text {
    font-size: 0.813rem;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.3;
}

.about__content .section-tag {
    margin-bottom: 16px;
}

.about__body {
    font-size: 1.063rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

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

.about__value-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    box-shadow: var(--shadow-sm);
}

.about__value strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.about__value span {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ---------- Gallery ---------- */
.gallery {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

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

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

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s 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(61, 31, 61, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery__item-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.gallery__item--large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
    aspect-ratio: 640/480;
}

.gallery__item:not(.gallery__item--large):not(.gallery__item--wide) {
    aspect-ratio: 1;
}

.gallery__item--wide {
    grid-column: 1 / 8;
    grid-row: 2 / 3;
    aspect-ratio: 640/360;
}

.gallery__item:nth-child(3),
.gallery__item:nth-child(4),
.gallery__item:nth-child(5) {
    grid-column: 8 / 13;
}

.gallery__item:nth-child(3) { grid-row: 1 / 2; }
.gallery__item:nth-child(4) { grid-row: 2 / 3; }

/* ---------- CTA Banner ---------- */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum) 60%, var(--plum-mid) 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 148, 58, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(166, 112, 160, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

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

.cta-banner__content {
    flex: 1;
    min-width: 280px;
}

.cta-banner__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 500;
    color: white;
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-banner__desc {
    font-size: 1.063rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 480px;
}

.cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.cta-banner .btn--primary {
    background: var(--amber);
}

.cta-banner .btn--primary:hover {
    background: var(--amber-light);
}

.cta-banner .btn--outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

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

/* ---------- Contact ---------- */
.contact {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background: var(--warm-white);
}

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

.contact__info .section-tag {
    margin-bottom: 16px;
}

.contact__desc {
    font-size: 1.063rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

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

.contact__detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--plum-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
}

.contact__detail strong {
    display: block;
    font-size: 0.875rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

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

.contact__detail a:hover {
    color: var(--amber);
}

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

/* Form */
.contact__form-wrapper {
    position: relative;
}

.contact__form-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(93, 58, 90, 0.06);
}

.contact__form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact__form-subtitle {
    font-size: 0.938rem;
    color: var(--text-light);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(93, 58, 90, 0.15);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.938rem;
    color: var(--text-dark);
    background: var(--warm-white);
    transition: var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--plum);
    background: white;
    box-shadow: 0 0 0 3px rgba(93, 58, 90, 0.08);
}

.form-input::placeholder {
    color: var(--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='%235D3A5A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

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

/* Success Message */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success__icon {
    width: 64px;
    height: 64px;
    background: var(--amber-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--amber);
}

.form-success__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

/* ---------- Footer ---------- */
.footer {
    background: var(--plum-deep);
    color: white;
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: white;
    margin-bottom: 16px;
}

.footer__logo-accent {
    color: var(--amber-light);
}

.footer__tagline {
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 280px;
}

.footer__heading {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.footer__links ul,
.footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a,
.footer__contact a,
.footer__contact li {
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__links a:hover,
.footer__contact a:hover {
    color: var(--amber-light);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

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

/* ---------- Scroll Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    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; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero__container {
        gap: 40px;
    }

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

    .about__grid {
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav__menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 253, 249, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px 24px;
        border-bottom: 1px solid rgba(93, 58, 90, 0.08);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }

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

    .nav__links {
        flex-direction: column;
        gap: 4px;
        margin-bottom: 16px;
    }

    .nav__link {
        padding: 12px 16px;
    }

    .nav__cta {
        margin-left: 0;
        justify-content: center;
    }

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

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

    .hero__content {
        text-align: center;
    }

    .hero__headline {
        max-width: 100%;
    }

    .hero__subheadline {
        max-width: 100%;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__trust {
        justify-content: center;
    }

    .hero__image {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero__image-float--1 {
        left: -10px;
        bottom: 30px;
    }

    .hero__image-float--2 {
        right: -10px;
        top: 20px;
    }

    .hero__scroll {
        display: none;
    }

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

    .about__grid {
        grid-template-columns: 1fr;
    }

    .about__images {
        max-width: 400px;
        margin: 0 auto;
    }

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery__item--large,
    .gallery__item--wide {
        grid-column: 1 / -1;
    }

    .gallery__item:nth-child(3),
    .gallery__item:nth-child(4),
    .gallery__item:nth-child(5) {
        grid-column: span 1;
    }

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

    .cta-banner__desc {
        margin: 0 auto;
    }

    .contact__grid {
        grid-template-columns: 1fr;
    }

    .contact__form-card {
        padding: 28px;
    }

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

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

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

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

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

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

    .hero__image-float {
        display: none;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .gallery__item--large,
    .gallery__item--wide {
        grid-column: 1;
    }

    .gallery__item:nth-child(3),
    .gallery__item:nth-child(4),
    .gallery__item:nth-child(5) {
        grid-column: 1;
    }
}
