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

:root {
    --coral:        #E8634B;
    --coral-light:  #f4a261;
    --coral-dark:   #c94e38;
    --charcoal:     #2D2D2D;
    --charcoal-light: #3D3D3D;
    --cream:        #FFF8F5;
    --cream-dark:   #F5EDE8;
    --white:        #FFFFFF;
    --gray-100:     #F7F7F7;
    --gray-200:     #E8E8E8;
    --gray-400:     #999999;
    --gray-600:     #666666;
    --radius-sm:    12px;
    --radius-md:    20px;
    --radius-lg:    32px;
    --shadow-sm:    0 2px 8px rgba(45,45,45,0.06);
    --shadow-md:    0 8px 30px rgba(45,45,45,0.10);
    --shadow-lg:    0 20px 60px rgba(45,45,45,0.14);
    --font-body:    'Nunito', sans-serif;
    --font-display: 'Playfair Display', 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(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

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

.text-coral { color: var(--coral); }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--coral);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(232,99,75,0.35);
}
.btn--primary:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232,99,75,0.45);
}

.btn--ghost {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(4px);
}
.btn--ghost:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}

.btn--white {
    background: var(--white);
    color: var(--coral);
    box-shadow: var(--shadow-md);
}
.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--ghost-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn--ghost-light:hover {
    background: var(--white);
    color: var(--coral);
}

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

/* ── Section shared ── */
.section {
    padding: 100px 0;
}

.section__tag {
    display: inline-block;
    background: rgba(232,99,75,0.1);
    color: var(--coral);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.section__subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    line-height: 1.7;
}

.section__header {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,248,245,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(232,99,75,0.08);
    transition: var(--transition);
}

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

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--charcoal);
}

.nav__logo-icon {
    width: 36px;
    height: 36px;
    color: var(--coral);
}

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

.nav__link {
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--charcoal-light);
    transition: var(--transition);
}
.nav__link:hover {
    background: rgba(232,99,75,0.08);
    color: var(--coral);
}

.nav__cta {
    background: var(--coral);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(232,99,75,0.3);
}
.nav__cta:hover {
    background: var(--coral-dark);
    transform: translateY(-1px);
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.nav__burger span {
    display: block;
    height: 2.5px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}
.nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── MOBILE MENU ── */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,248,245,0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}
.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.mobile-menu__link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    padding: 12px 32px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.mobile-menu__link:hover {
    color: var(--coral);
    background: rgba(232,99,75,0.06);
}
.mobile-menu__phone {
    margin-top: 16px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--coral);
}

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

.hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2D2D2D 0%, #4A3728 30%, #E8634B 70%, #f4a261 100%);
    z-index: 0;
}

.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(232,99,75,0.4) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(244,162,97,0.3) 0%, transparent 50%);
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.hero__badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

.hero__title-accent {
    color: var(--coral-light);
    font-style: italic;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero__trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 600;
}
.hero__trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--coral-light);
    flex-shrink: 0;
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}
.hero__scroll svg {
    width: 20px;
    height: 20px;
}

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

/* ── SERVICES ── */
.services { background: var(--cream); }

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

.card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: var(--transition);
    border: 1px solid transparent;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232,99,75,0.15);
}

.card__icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.card__icon svg {
    width: 28px;
    height: 28px;
}

.card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.card__desc {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ── ABOUT ── */
.about { background: var(--white); }

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

.about__images {
    position: relative;
}

.about__img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about__img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__img-secondary {
    position: absolute;
    bottom: -40px;
    right: -30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--white);
}
.about__img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__experience-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--coral);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(232,99,75,0.4);
}
.about__exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}
.about__exp-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.about__text { max-width: 520px; }

.about__p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about__value {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--charcoal);
}
.about__value svg {
    width: 22px;
    height: 22px;
    color: var(--coral);
    flex-shrink: 0;
}

/* ── GALLERY ── */
.gallery { background: var(--cream); }

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

.gallery__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}
.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__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45,45,45,0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}
.gallery__item:hover .gallery__overlay {
    opacity: 1;
}
.gallery__overlay span {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.gallery__item--wide { grid-column: span 7; }
.gallery__item:not(.gallery__item--wide) { grid-column: span 5; }

/* ── CTA BANNER ── */
.cta-banner {
    background: linear-gradient(135deg, #2D2D2D 0%, #4A3728 50%, #E8634B 100%);
    padding: 80px 0;
}

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

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

.cta-banner__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-banner__desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

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

/* ── CONTACT ── */
.contact { background: var(--white); }

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

.contact__desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact__detail {
    display: flex;
    gap: 16px;
}

.contact__detail-icon {
    width: 52px;
    height: 52px;
    background: rgba(232,99,75,0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact__detail-icon svg {
    width: 24px;
    height: 24px;
    color: var(--coral);
}

.contact__detail strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.contact__detail p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}
.contact__detail a {
    color: var(--coral);
    font-weight: 700;
    transition: var(--transition);
}
.contact__detail a:hover { color: var(--coral-dark); }

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

/* ── FORM ── */
.contact__form-wrapper {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--gray-200);
}

.contact__form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact__form-subtitle {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.form__input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--charcoal);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form__input:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 4px rgba(232,99,75,0.1);
}
.form__input::placeholder { color: var(--gray-400); }

.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='%23999' stroke-width='2' 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 16px center;
    padding-right: 44px;
}

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

.form__success {
    margin-top: 24px;
    background: rgba(232,99,75,0.08);
    border: 2px solid rgba(232,99,75,0.2);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.form__success svg {
    width: 24px;
    height: 24px;
    color: var(--coral);
    flex-shrink: 0;
}
.form__success strong {
    display: block;
    color: var(--coral);
    margin-bottom: 2px;
}
.form__success p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

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

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

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 12px;
}
.footer__logo-icon {
    width: 32px;
    height: 32px;
    color: var(--coral-light);
}

.footer__tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__links strong {
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}
.footer__links a {
    font-size: 0.95rem;
    transition: var(--transition);
}
.footer__links a:hover { color: var(--coral-light); }

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer__contact strong {
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}
.footer__contact a {
    transition: var(--transition);
}
.footer__contact a:hover { color: var(--coral-light); }

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0;
    font-size: 0.85rem;
}

/* ── 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);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .about__layout { gap: 48px; }
    .gallery__item--wide { grid-column: span 12; }
    .gallery__item:not(.gallery__item--wide) { grid-column: span 6; }
}

@media (max-width: 768px) {
    .nav__menu, .nav__cta { display: none; }
    .nav__burger { display: flex; }

    .section { padding: 72px 0; }

    .hero { padding: 100px 24px 60px; min-height: 100svh; }
    .hero__actions { flex-direction: column; align-items: center; }
    .hero__actions .btn { width: 100%; max-width: 280px; }
    .hero__trust { flex-direction: column; align-items: center; gap: 12px; }

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

    .about__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about__images { max-width: 480px; margin: 0 auto; }
    .about__img-secondary { right: -10px; bottom: -20px; }
    .about__experience-badge { top: -12px; right: 20px; }
    .about__values { grid-template-columns: 1fr; }

    .gallery__grid { grid-template-columns: 1fr; }
    .gallery__item--wide { grid-column: span 1; }
    .gallery__item:not(.gallery__item--wide) { grid-column: span 1; }

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

    .contact__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .contact__form-wrapper { padding: 28px; }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero__title { font-size: 2.2rem; }
    .section__title { font-size: 1.8rem; }
    .card { padding: 28px 22px; }
    .contact__form-wrapper { padding: 20px; }
}
