/* ============================================
   Styles By Shamila — Custom Styles
   Terracotta + Sand | Vibrant Modern
   ============================================ */

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

:root {
    --terra: #C0603A;
    --terra-dark: #A04E2E;
    --terra-light: #D4856A;
    --sand: #F5E6D3;
    --sand-light: #FAF3EB;
    --sand-dark: #E8D5C0;
    --cream: #FFF9F4;
    --charcoal: #2C2420;
    --charcoal-light: #4A3F38;
    --warm-gray: #7A6B63;
    --white: #FFFFFF;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 2px 8px rgba(44, 36, 32, 0.08);
    --shadow-md: 0 8px 30px rgba(44, 36, 32, 0.12);
    --shadow-lg: 0 16px 60px rgba(44, 36, 32, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --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;
}

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

/* ---------- 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: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
}

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

.btn--primary:hover {
    background: var(--terra-dark);
    border-color: var(--terra-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 96, 58, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}

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

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

.btn--light:hover {
    background: var(--sand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn--lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

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

/* ---------- Section shared ---------- */
.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 12px;
}

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

.section-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--terra), var(--terra-light));
    border-radius: 2px;
    margin-bottom: 32px;
}

.section-underline--left {
    margin-left: 0;
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 249, 244, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--sand-dark);
    transition: box-shadow var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow-sm);
}

.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: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--charcoal);
}

.nav__logo-mark {
    width: 40px;
    height: 40px;
    background: var(--terra);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-style: italic;
}

.nav__logo-text {
    display: none;
}

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

.nav__links a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal-light);
    border-radius: 8px;
    transition: all var(--transition);
}

.nav__links a:hover {
    color: var(--terra);
    background: rgba(192, 96, 58, 0.08);
}

.nav__cta {
    background: var(--terra) !important;
    color: var(--white) !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
}

.nav__cta:hover {
    background: var(--terra-dark) !important;
}

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

.nav__burger span {
    width: 24px;
    height: 2.5px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 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;
    background: var(--cream);
    border-bottom: 2px solid var(--sand-dark);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 999;
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu__link {
    padding: 14px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.mobile-menu__link:hover {
    background: rgba(192, 96, 58, 0.08);
    color: var(--terra);
}

.mobile-menu__cta {
    margin-top: 8px;
    padding: 16px;
    background: var(--terra);
    color: var(--white);
    text-align: center;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 24px 60px;
    background: var(--sand-light);
    position: relative;
    overflow: hidden;
}

/* Geometric shapes */
.hero__shape {
    position: absolute;
    pointer-events: none;
}

.hero__shape--circle1 {
    width: 400px;
    height: 400px;
    background: var(--terra);
    border-radius: 50%;
    top: -100px;
    right: -80px;
    opacity: 0.12;
}

.hero__shape--circle2 {
    width: 200px;
    height: 200px;
    background: var(--terra-light);
    border-radius: 50%;
    bottom: 10%;
    left: 5%;
    opacity: 0.15;
}

.hero__shape--rect {
    width: 120px;
    height: 120px;
    background: var(--sand-dark);
    top: 20%;
    left: 15%;
    border-radius: 20px;
    transform: rotate(30deg);
    opacity: 0.5;
}

.hero__shape--dot {
    width: 16px;
    height: 16px;
    background: var(--terra);
    border-radius: 50%;
    top: 30%;
    left: 8%;
    opacity: 0.6;
}

.hero__shape--triangle {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid var(--terra);
    opacity: 0.08;
    bottom: 15%;
    right: 35%;
    transform: rotate(-15deg);
}

.hero__content {
    flex: 1;
    max-width: 580px;
    z-index: 2;
}

.hero__eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero__eyebrow::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--terra);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.hero__title em {
    color: var(--terra);
    font-style: italic;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

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

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

.hero__info span {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    font-weight: 500;
}

.hero__image {
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
    margin-left: auto;
}

.hero__image img {
    width: 420px;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero__image-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge__number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--terra);
    line-height: 1;
}

.badge__label {
    font-size: 0.75rem;
    color: var(--warm-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- Services ---------- */
.services {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.services__deco {
    position: absolute;
    pointer-events: none;
}

.services__deco--left {
    width: 200px;
    height: 200px;
    background: var(--sand);
    border-radius: 50%;
    top: 10%;
    left: -60px;
    opacity: 0.5;
}

.services__deco--right {
    width: 150px;
    height: 150px;
    background: var(--terra);
    border-radius: 50%;
    bottom: 5%;
    right: -40px;
    opacity: 0.08;
}

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

.section-header .section-underline {
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 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(--terra), var(--terra-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

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

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

.service-card__icon {
    width: 64px;
    height: 64px;
    background: var(--sand-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terra);
    margin-bottom: 24px;
    transition: all var(--transition);
}

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

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

/* ---------- About ---------- */
.about {
    padding: 100px 0;
    background: var(--sand-light);
    position: relative;
}

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

.about__image-wrap {
    position: relative;
}

.about__image-wrap img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about__floating-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--terra);
    color: var(--white);
    padding: 24px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.floating-card__number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.floating-card__label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about__text-col {
    max-width: 520px;
}

.about__body {
    font-size: 1.05rem;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about__features {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-bottom: 36px;
}

.about__features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--charcoal-light);
    font-weight: 500;
}

.about__features svg {
    color: var(--terra);
    flex-shrink: 0;
}

/* ---------- Gallery ---------- */
.gallery {
    padding: 100px 0 80px;
    background: var(--cream);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: auto;
}

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

.gallery__item:nth-child(1) img { height: 500px; }
.gallery__item:nth-child(2) img { height: 350px; }
.gallery__item:nth-child(3) img { height: 350px; }
.gallery__item:nth-child(4) img { height: 500px; }
.gallery__item:nth-child(5) img { height: 350px; }
.gallery__item:nth-child(6) img { height: 350px; }

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

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 36, 32, 0.7), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery__overlay span {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

/* ---------- Testimonials ---------- */
.testimonials {
    padding: 100px 0;
    background: var(--sand-light);
    position: relative;
    overflow: hidden;
}

.testimonials__shape {
    position: absolute;
    pointer-events: none;
}

.testimonials__shape--circle {
    width: 300px;
    height: 300px;
    background: var(--terra);
    border-radius: 50%;
    top: -80px;
    right: -80px;
    opacity: 0.06;
}

.testimonials__shape--square {
    width: 100px;
    height: 100px;
    background: var(--sand-dark);
    border-radius: 20px;
    bottom: 10%;
    left: 5%;
    transform: rotate(25deg);
    opacity: 0.6;
}

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

.testimonial-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
    font-size: 1.1rem;
    color: #F5A623;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.testimonial-card__text {
    font-size: 1rem;
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    background: var(--terra);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-card__author span {
    font-weight: 600;
    color: var(--charcoal);
}

/* ---------- CTA ---------- */
.cta {
    padding: 100px 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.cta__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta__shape {
    position: absolute;
    border-radius: 50%;
}

.cta__shape--1 {
    width: 400px;
    height: 400px;
    background: var(--terra);
    top: -150px;
    left: -100px;
    opacity: 0.15;
}

.cta__shape--2 {
    width: 250px;
    height: 250px;
    background: var(--terra-light);
    bottom: -80px;
    right: 10%;
    opacity: 0.1;
}

.cta__shape--3 {
    width: 80px;
    height: 80px;
    background: var(--sand);
    top: 20%;
    right: 25%;
    opacity: 0.15;
    border-radius: 16px;
    transform: rotate(45deg);
}

.cta .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta__eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--terra-light);
    margin-bottom: 16px;
}

.cta__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* ---------- Contact ---------- */
.contact {
    padding: 100px 0;
    background: var(--cream);
}

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

.contact__body {
    font-size: 1.05rem;
    color: var(--warm-gray);
    line-height: 1.8;
    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: 52px;
    height: 52px;
    background: var(--sand-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terra);
    flex-shrink: 0;
}

.contact__detail strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--terra);
    margin-bottom: 4px;
}

.contact__detail span,
.contact__detail a {
    font-size: 0.95rem;
    color: var(--charcoal-light);
}

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

/* Contact Form */
.contact__form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact__form h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 28px;
}

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

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--sand-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--sand-light);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--terra);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(192, 96, 58, 0.1);
}

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

.form-success {
    text-align: center;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

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

/* ---------- Map ---------- */
.map {
    background: var(--sand-dark);
}

.map iframe {
    width: 100%;
    height: 320px;
    filter: grayscale(30%);
}

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

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    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: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__logo-mark {
    width: 40px;
    height: 40px;
    background: var(--terra);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-style: italic;
}

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

.footer__links strong,
.footer__contact strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--terra-light);
    margin-bottom: 16px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.footer__links a:hover {
    color: var(--terra-light);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.footer__contact a:hover {
    color: var(--terra-light);
}

.footer__bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ---------- Scroll to top ---------- */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--terra);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 100;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--terra-dark);
    transform: translateY(-4px);
}

/* ---------- Responsive ---------- */
@media (min-width: 768px) {
    .nav__logo-text {
        display: block;
    }
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
        gap: 48px;
    }

    .hero__eyebrow {
        justify-content: center;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__info {
        justify-content: center;
    }

    .hero__image {
        margin-left: 0;
    }

    .hero__image img {
        width: 340px;
        height: 420px;
    }

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

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

    .about__text-col {
        max-width: 100%;
    }

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

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

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

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .nav__burger {
        display: flex;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero__image img {
        width: 280px;
        height: 350px;
    }

    .hero__image-badge {
        bottom: -16px;
        left: -8px;
        padding: 14px 18px;
    }

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

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

    .gallery__item:nth-child(1) img,
    .gallery__item:nth-child(4) img {
        height: 350px;
    }

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

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

    .contact__form {
        padding: 28px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.9rem;
    }

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

    .btn {
        width: 100%;
    }

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

    .gallery__item img {
        height: 280px !important;
    }
}

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

    html {
        scroll-behavior: auto;
    }
}
