/* ============================================
   Palmetto Beauty Salon — Styles
   Palette: Terracotta + Sand
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --terracotta-50: #fef7f4;
    --terracotta-100: #fdecd4;
    --terracotta-200: #fad5a8;
    --terracotta-300: #f5b46e;
    --terracotta-400: #ee8a3a;
    --terracotta-500: #e06b24;
    --terracotta-600: #c9501a;
    --terracotta-700: #a83d16;
    --terracotta-800: #8a3317;
    --terracotta-900: #712d15;

    --sand-50: #fdfcfa;
    --sand-100: #faf5ed;
    --sand-200: #f3e8d5;
    --sand-300: #e8d5b4;
    --sand-400: #d4b88a;
    --sand-500: #b8956a;
    --sand-600: #96734e;
    --sand-700: #7a5c40;
    --sand-800: #644c37;
    --sand-900: #554130;

    --dark: #1a1209;
    --dark-soft: #2d2014;
    --gray-900: #1c1917;
    --gray-800: #292524;
    --gray-700: #44403c;
    --gray-600: #57534e;
    --gray-500: #78716c;
    --gray-400: #a8a29e;
    --gray-300: #d6d3d1;
    --gray-200: #e7e5e4;
    --gray-100: #f5f5f4;
    --gray-50: #fafaf9;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(26, 18, 9, 0.06);
    --shadow-md: 0 4px 12px rgba(26, 18, 9, 0.08);
    --shadow-lg: 0 8px 30px rgba(26, 18, 9, 0.12);
    --shadow-xl: 0 16px 50px rgba(26, 18, 9, 0.15);
}

/* --- 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(--gray-800);
    background-color: var(--sand-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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;
}

/* --- Container --- */
.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(--dark);
}

/* --- Section Tags --- */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terracotta-600);
    background: var(--terracotta-100);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 16px;
}

.section-title-accent {
    color: var(--terracotta-600);
    font-style: italic;
}

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

/* --- 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-full);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-primary {
    background: var(--terracotta-600);
    color: #fff;
    box-shadow: 0 4px 14px rgba(201, 80, 26, 0.35);
}

.btn-primary:hover {
    background: var(--terracotta-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 80, 26, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--dark);
    border: 2px solid rgba(26, 18, 9, 0.2);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
    transform: translateY(-2px);
}

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

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 252, 250, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(26, 18, 9, 0.06);
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(253, 252, 250, 0.95);
    box-shadow: var(--shadow-md);
}

.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.2rem;
    font-weight: 700;
    color: var(--dark);
}

.nav-logo-icon {
    color: var(--terracotta-600);
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: var(--terracotta-600);
    background: var(--terracotta-50);
}

.nav-cta {
    background: var(--terracotta-600) !important;
    color: #fff !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 8px rgba(201, 80, 26, 0.3);
}

.nav-cta:hover {
    background: var(--terracotta-700) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

/* --- Nav Toggle --- */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

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

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

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

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

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--sand-50);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: var(--dark);
    padding: 8px;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.mobile-menu-link:hover {
    color: var(--terracotta-600);
    background: var(--terracotta-50);
}

.mobile-menu-cta {
    margin-top: 24px;
}

.mobile-menu-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: var(--terracotta-600);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 14px rgba(201, 80, 26, 0.35);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--sand-100) 0%, var(--terracotta-100) 50%, var(--sand-200) 100%);
    overflow: hidden;
    padding-top: 72px;
}

/* Geometric background shapes */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--terracotta-400);
    top: -200px;
    right: -100px;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--sand-400);
    bottom: 10%;
    left: -50px;
    border-radius: var(--radius-lg);
    transform: rotate(45deg);
    opacity: 0.15;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    background: var(--terracotta-500);
    top: 30%;
    left: 15%;
    border-radius: var(--radius-md);
    transform: rotate(30deg);
    opacity: 0.1;
}

.hero-shape-4 {
    width: 80px;
    height: 80px;
    background: var(--sand-500);
    bottom: 25%;
    right: 30%;
    border-radius: var(--radius-sm);
    transform: rotate(60deg);
    opacity: 0.2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--terracotta-700);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
    border: 1px solid rgba(224, 107, 36, 0.15);
}

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

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

.hero-headline {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-headline-accent {
    display: block;
    color: var(--terracotta-600);
    font-style: italic;
    font-weight: 700;
}

.hero-subheadline {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--gray-700);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 44px;
}

.hero-trust {
    display: flex;
    gap: 28px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-700);
}

.hero-trust-item svg {
    color: var(--terracotta-500);
    flex-shrink: 0;
}

/* Hero Image Column */
.hero-image-col {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 420px;
}

.hero-image-main img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.hero-image-accent {
    position: absolute;
    inset: 12px 12px auto auto;
    width: 80px;
    height: 80px;
    background: var(--terracotta-500);
    border-radius: var(--radius-lg);
    transform: rotate(12deg);
    z-index: -1;
}

.hero-image-float {
    position: absolute;
    bottom: -30px;
    left: -40px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    width: 200px;
    border: 4px solid var(--sand-50);
}

.hero-image-float img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.hero-float-card {
    position: absolute;
    top: 60px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 14px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    animation: float-card 4s ease-in-out infinite;
}

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

.float-card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--terracotta-400), var(--terracotta-600));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.float-card-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.float-card-value {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
}

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

.services-bg-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--terracotta-100);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    opacity: 0.5;
    pointer-events: none;
}

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

.services .section-subtitle {
    margin: 0 auto;
}

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

.service-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--gray-200);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--terracotta-400), var(--terracotta-600));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

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

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

.service-card-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: var(--terracotta-100);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-card:hover .service-card-accent {
    opacity: 0.6;
}

.service-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--terracotta-50), var(--terracotta-100));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-600);
    margin-bottom: 20px;
    transition: all 0.35s ease;
}

.service-card:hover .service-card-icon {
    background: linear-gradient(135deg, var(--terracotta-500), var(--terracotta-700));
    color: #fff;
    transform: scale(1.05);
}

.service-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-card-desc {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.65;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 100px 0;
    background: var(--sand-100);
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-stack {
    position: relative;
    height: 620px;
}

.about-img-main {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    width: 75%;
    height: 75%;
}

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

.about-img-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    width: 55%;
    height: 55%;
    border: 5px solid var(--sand-100);
}

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

.about-geo-shape {
    position: absolute;
    bottom: 30%;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--terracotta-500);
    border-radius: var(--radius-lg);
    transform: rotate(45deg);
    opacity: 0.2;
    z-index: -1;
}

.about-content {
    max-width: 480px;
}

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

.about-content .section-title {
    margin-bottom: 24px;
}

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

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

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--gray-800);
}

.about-feature-icon {
    width: 28px;
    height: 28px;
    background: var(--terracotta-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-600);
    flex-shrink: 0;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    padding: 100px 0;
    background: var(--sand-50);
}

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

.gallery .section-subtitle {
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 200px);
    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(26, 18, 9, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

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

.gallery-item-tall img {
    height: 100%;
}

.gallery-item-wide {
    grid-column: 8 / 13;
    grid-row: 2;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(4) {
    grid-column: span 4;
    grid-row: 1;
}

/* ============================================
   TESTIMONIAL STRIP
   ============================================ */
.testimonial-strip {
    position: relative;
    padding: 80px 0;
    background: var(--dark);
    overflow: hidden;
}

.testimonial-strip-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(224, 107, 36, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(184, 149, 106, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote-icon {
    color: var(--terracotta-400);
    margin-bottom: 28px;
    opacity: 0.6;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--sand-100);
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.testimonial-author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--terracotta-400), var(--terracotta-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.testimonial-author-name {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.testimonial-author-location {
    display: block;
    font-size: 0.85rem;
    color: var(--sand-400);
}

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

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    max-width: 500px;
}

.contact-info .section-title {
    margin-bottom: 16px;
}

.contact-intro {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--gray-600);
    margin-bottom: 36px;
}

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

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

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: var(--terracotta-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-600);
    flex-shrink: 0;
}

.contact-detail-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-detail-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-500);
}

.contact-detail-value,
.contact-detail-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    transition: color 0.2s ease;
}

.contact-detail-link:hover {
    color: var(--terracotta-600);
    text-decoration: underline;
}

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

/* --- Contact Form --- */
.contact-form-wrap {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.contact-form-header {
    margin-bottom: 28px;
}

.contact-form-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.6;
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-900);
    background: var(--sand-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    outline: none;
}

.form-input::placeholder {
    color: var(--gray-400);
}

.form-input:focus {
    border-color: var(--terracotta-400);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(224, 107, 36, 0.1);
}

.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='%2378716c' 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 14px center;
    padding-right: 40px;
}

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

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
}

.form-success-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

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

.form-success-text a {
    color: var(--terracotta-600);
    font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: var(--sand-200);
    padding: 60px 0 0;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    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-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.footer-logo svg {
    color: var(--terracotta-400);
}

.footer-tagline {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--sand-400);
    max-width: 300px;
}

.footer-links-title,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sand-300);
    margin-bottom: 16px;
}

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

.footer-links a,
.footer-contact a,
.footer-contact li {
    font-size: 0.9rem;
    color: var(--sand-400);
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 24px 0;
    font-size: 0.82rem;
    color: var(--gray-500);
    text-align: center;
}

.footer-bottom a {
    color: var(--terracotta-400);
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: var(--terracotta-300);
}

/* ============================================
   SCROLL REVEAL (progressive enhancement)
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal.revealed {
        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;
    }

    .hero-image-float {
        left: -20px;
        width: 160px;
    }

    .hero-image-float img {
        height: 200px;
    }

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

    .about-container {
        gap: 48px;
    }

    .about-image-stack {
        height: 480px;
    }

    .gallery-grid {
        grid-template-rows: repeat(2, 180px);
    }

    .gallery-item-tall {
        grid-column: 1 / 5;
    }

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4) {
        grid-column: span 4;
    }

    .gallery-item-wide {
        grid-column: 8 / 13;
    }
}

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

    .nav-links {
        display: none;
    }

    .hero {
        padding-top: 72px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        gap: 48px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-subheadline {
        max-width: 100%;
    }

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

    .hero-trust {
        justify-content: center;
    }

    .hero-image-col {
        max-width: 380px;
        margin: 0 auto;
    }

    .hero-image-main img {
        height: 420px;
    }

    .hero-image-float {
        left: -10px;
        bottom: -20px;
        width: 140px;
    }

    .hero-image-float img {
        height: 180px;
    }

    .hero-float-card {
        right: -10px;
        top: 40px;
    }

    .services {
        padding: 70px 0;
    }

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

    .about {
        padding: 70px 0;
    }

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

    .about-visual {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-image-stack {
        height: 400px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .gallery {
        padding: 70px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 180px);
    }

    .gallery-item-tall {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3) {
        grid-column: span 1;
        grid-row: 2;
    }

    .gallery-item:nth-child(4) {
        grid-column: 1 / 3;
        grid-row: 3;
    }

    .gallery-item-wide {
        grid-column: 1 / 3;
        grid-row: 4;
    }

    .contact {
        padding: 70px 0;
    }

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

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

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

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }

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

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

    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }

    .hero-image-float,
    .hero-float-card {
        display: none;
    }

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

    .gallery-item-tall,
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item-wide {
        grid-column: 1;
        grid-row: auto;
        height: 220px;
    }

    .gallery-item-tall img,
    .gallery-item:nth-child(2) img,
    .gallery-item:nth-child(3) img,
    .gallery-item:nth-child(4) img,
    .gallery-item-wide img {
        height: 220px;
    }
}
