/* ============================================
   ONE LOVE SALON — Styles
   Terracotta + Sand | Vibrant Geometric
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --terracotta: #C2704E;
    --terracotta-dark: #A85A3A;
    --terracotta-light: #E8A87C;
    --sand: #FDF6EE;
    --sand-mid: #F5E6D3;
    --sand-dark: #E8D5C0;
    --charcoal: #2C2420;
    --charcoal-light: #4A3F38;
    --warm-gray: #7A6B60;
    --white: #FFFFFF;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(44, 36, 32, 0.06);
    --shadow-md: 0 8px 30px rgba(44, 36, 32, 0.10);
    --shadow-lg: 0 16px 60px rgba(44, 36, 32, 0.14);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--sand);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--terracotta);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: 600;
}
.skip-link:focus { top: 16px; }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--charcoal);
}

.accent { color: var(--terracotta); }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 12px;
}
.section-label::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--terracotta);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

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

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(194, 112, 78, 0.35);
}
.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(194, 112, 78, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--terracotta);
    transform: translateY(-2px);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 246, 238, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(194, 112, 78, 0.1);
    transition: var(--transition);
}
.header.scrolled {
    background: rgba(253, 246, 238, 0.96);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}
.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
}
.logo-dot {
    color: var(--terracotta);
}

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

/* Nav */
.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-list a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal-light);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}
.nav-list a:hover {
    color: var(--terracotta);
    background: rgba(194, 112, 78, 0.08);
}
.nav-cta {
    background: var(--terracotta) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    margin-left: 8px;
}
.nav-cta:hover {
    background: var(--terracotta-dark) !important;
    transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1001;
}
.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        var(--terracotta) 0%,
        #D4855C 25%,
        var(--terracotta-light) 50%,
        var(--sand-dark) 75%,
        var(--sand-mid) 100%
    );
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.geo {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
}
.geo-1 {
    width: 600px;
    height: 600px;
    background: var(--sand);
    top: -200px;
    right: -150px;
    animation: float 8s ease-in-out infinite;
}
.geo-2 {
    width: 400px;
    height: 400px;
    background: var(--charcoal);
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}
.geo-3 {
    width: 200px;
    height: 200px;
    background: var(--white);
    top: 30%;
    left: 10%;
    animation: float 6s ease-in-out infinite 1s;
}
.geo-4 {
    width: 120px;
    height: 120px;
    background: var(--sand-dark);
    bottom: 25%;
    right: 15%;
    animation: float 7s ease-in-out infinite 2s;
}
.geo-5 {
    width: 80px;
    height: 80px;
    background: var(--charcoal);
    top: 20%;
    right: 30%;
    border-radius: var(--radius-md);
    transform: rotate(45deg);
    animation: float 9s ease-in-out infinite 0.5s;
    opacity: 0.08;
}
.geo-6 {
    width: 160px;
    height: 160px;
    background: var(--white);
    bottom: 15%;
    left: 20%;
    border-radius: var(--radius-lg);
    transform: rotate(30deg);
    animation: float 11s ease-in-out infinite 3s;
    opacity: 0.06;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.08;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    font-weight: 500;
}
.trust-item svg { opacity: 0.8; }

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}
.hero-wave svg {
    width: 100%;
    height: 80px;
}

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

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(194, 112, 78, 0.08);
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--terracotta);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--terracotta), var(--terracotta-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 20px;
}
.service-icon-wrap--sand {
    background: linear-gradient(135deg, var(--sand-dark), var(--sand-mid));
    color: var(--terracotta);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.service-card p {
    font-size: 0.92rem;
    color: var(--warm-gray);
    line-height: 1.65;
    margin-bottom: 16px;
}

.service-tag {
    display: inline-block;
    background: rgba(194, 112, 78, 0.1);
    color: var(--terracotta);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-xl);
}

.services-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.services-shape--left {
    width: 300px;
    height: 300px;
    background: var(--sand-dark);
    opacity: 0.4;
    top: -80px;
    left: -80px;
}
.services-shape--right {
    width: 200px;
    height: 200px;
    background: var(--terracotta-light);
    opacity: 0.08;
    bottom: -50px;
    right: -50px;
}

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

.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-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

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

.about-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--terracotta);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.about-badge-number {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}
.about-badge-text {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 4px;
}

.about-content .section-title { margin-top: 4px; }

.about-text {
    font-size: 1rem;
    color: var(--warm-gray);
    line-height: 1.75;
    margin-bottom: 16px;
}

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

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--charcoal-light);
    font-weight: 500;
}
.about-feature svg { flex-shrink: 0; margin-top: 2px; }

.about-shape {
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--sand-mid);
    border-radius: var(--radius-xl);
    transform: rotate(25deg);
    bottom: -60px;
    right: -60px;
    pointer-events: none;
    opacity: 0.5;
}

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

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    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.08);
}
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 36, 32, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px 24px;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
}

.gallery-item--tall {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
}
.gallery-item--wide {
    grid-column: 8 / 13;
}

/* ---------- Testimonials ---------- */
.testimonials {
    position: relative;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
    padding: 100px 0;
    overflow: hidden;
}

.testimonials .section-label { color: var(--terracotta-light); }
.testimonials .section-label::before { background: var(--terracotta-light); }
.testimonials .section-title { color: var(--white); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--terracotta-light);
    opacity: 0.4;
    margin-bottom: -12px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--terracotta), var(--terracotta-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.testimonial-name {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonials-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--terracotta);
    border-radius: 50%;
    opacity: 0.04;
    top: -100px;
    right: -100px;
    pointer-events: none;
}

/* ---------- CTA Section ---------- */
.cta-section {
    position: relative;
    background: linear-gradient(
        135deg,
        var(--terracotta) 0%,
        var(--terracotta-light) 60%,
        var(--sand-dark) 100%
    );
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}
.cta-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--white);
    top: -80px;
    left: -80px;
}
.cta-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--charcoal);
    bottom: -60px;
    right: 10%;
}
.cta-shape-3 {
    width: 100px;
    height: 100px;
    background: var(--white);
    top: 20%;
    right: 25%;
    border-radius: var(--radius-md);
    transform: rotate(45deg);
    opacity: 0.06;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 640px;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 36px;
}

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

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

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

.contact-intro {
    font-size: 1rem;
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 36px;
}

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

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--terracotta), var(--terracotta-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}
.contact-detail strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 4px;
}
.contact-detail p {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    line-height: 1.6;
}
.contact-detail a {
    color: var(--charcoal);
    border-bottom: 1px solid rgba(194, 112, 78, 0.3);
    transition: var(--transition);
}
.contact-detail a:hover { color: var(--terracotta); border-color: var(--terracotta); }

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

/* Contact Form */
.contact-form-wrap {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(194, 112, 78, 0.08);
}

.form-decoration {
    position: absolute;
    top: -1px;
    left: 40px;
    right: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--terracotta), var(--terracotta-light));
    border-radius: 0 0 4px 4px;
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 28px;
    color: var(--charcoal);
}

.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--sand-dark);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--sand);
    transition: var(--transition);
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--warm-gray);
    opacity: 0.6;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(194, 112, 78, 0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
    text-align: center;
    padding: 40px 20px;
}
.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(194, 112, 78, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 12px;
}
.form-success p {
    color: var(--warm-gray);
    line-height: 1.6;
}
.form-success a {
    color: var(--terracotta);
    font-weight: 600;
}

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

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 48px;
    padding-bottom: 48px;
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terracotta-light);
    margin-bottom: 16px;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}
.footer-col ul a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}
.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}
.footer-bottom a:hover { color: var(--white); }

/* ---------- Scroll to Top ---------- */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--terracotta);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--transition);
    z-index: 999;
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover {
    background: var(--terracotta-dark);
    transform: translateY(-4px);
}

/* ---------- Reveal Animations ---------- */
@media (prefers-reduced-motion: no-preference) {
    .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.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
    .about-layout { gap: 48px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--sand);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    .nav.open { opacity: 1; visibility: visible; }
    .nav-list {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .nav-list a {
        font-size: 1.2rem;
        padding: 12px 24px;
    }
    .nav-cta { margin-left: 0 !important; margin-top: 8px; }

    .hero { padding: 100px 24px 60px; min-height: auto; }
    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }

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

    .about-layout {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .about-img-accent { right: 10px; bottom: -20px; }
    .about-badge { left: 10px; top: -10px; }
    .about-features { grid-template-columns: 1fr; }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item--tall { grid-column: 1 / -1; grid-row: auto; }
    .gallery-item--tall img,
    .gallery-item img { height: 220px; }
    .gallery-item--wide { grid-column: 1 / -1; }

    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonials-grid .testimonial-card:last-child { max-width: 100%; }

    .contact-layout { grid-template-columns: 1fr; gap: 48px; }
    .contact-form-wrap { padding: 28px; }

    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; justify-content: center; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item--tall,
    .gallery-item--wide { grid-column: auto; }
    .footer-links { grid-template-columns: 1fr; }
}
