/* ========================================
   PROGRESSIVE SKINCARE — STYLESHEET
   Classic & Elegant | Plum + Amber
   ======================================== */

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

:root {
    /* Palette */
    --plum-deep: #3D1C30;
    --plum: #6B2F5B;
    --plum-light: #8B4578;
    --plum-muted: #A86B8E;
    --plum-pale: #F3E8EE;
    --plum-bg: #FAF5F7;
    
    --amber: #C8956C;
    --amber-light: #D4A87C;
    --amber-pale: #FDF0E6;
    --amber-muted: #B8845C;
    
    --cream: #FDF8F5;
    --warm-white: #FEFCFB;
    --off-white: #F7F0EC;
    --sand: #EDE4DD;
    
    --text-dark: #1A0E14;
    --text-body: #3D2832;
    --text-muted: #7A5E6E;
    --text-light: #A8909C;
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--text-body);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ── Loader ───────────────────────────── */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--plum-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

#page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-line {
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--amber), var(--plum-light));
    animation: loaderPulse 1.2s ease-in-out infinite;
    border-radius: 2px;
}

@keyframes loaderPulse {
    0%, 100% { transform: scaleX(0.4); opacity: 0.4; }
    50% { transform: scaleX(1); opacity: 1; }
}

/* ── Navigation ───────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(253, 248, 245, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--space-sm) 0;
    box-shadow: 0 1px 0 rgba(107, 47, 91, 0.08);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--warm-white);
    letter-spacing: 0.01em;
    transition: color 0.3s;
}

.nav.scrolled .nav-logo {
    color: var(--plum-deep);
}

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

.nav-logo-text {
    font-style: italic;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(253, 248, 245, 0.8);
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--amber);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--warm-white);
}

.nav.scrolled .nav-link {
    color: var(--text-muted);
}

.nav.scrolled .nav-link:hover {
    color: var(--plum);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--amber);
    border: 1px solid rgba(200, 149, 108, 0.4);
    padding: 8px 16px;
    border-radius: 100px;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.nav-cta:hover {
    background: var(--amber);
    color: var(--warm-white);
    border-color: var(--amber);
}

.nav.scrolled .nav-cta {
    color: var(--plum);
    border-color: rgba(107, 47, 91, 0.2);
}

.nav.scrolled .nav-cta:hover {
    background: var(--plum);
    color: var(--warm-white);
    border-color: var(--plum);
}

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

.nav-toggle-line {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--warm-white);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav.scrolled .nav-toggle-line {
    background: var(--plum-deep);
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

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

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--plum-deep);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

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

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--warm-white);
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.3s var(--ease-out);
}

.mobile-nav-link:hover {
    opacity: 1;
}

.mobile-nav-divider {
    width: 40px;
    height: 1px;
    background: rgba(200, 149, 108, 0.3);
    margin: var(--space-sm) 0;
}

.mobile-nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--amber);
    letter-spacing: 0.05em;
}

.mobile-nav-cta {
    margin-top: var(--space-sm);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--warm-white);
    border: 1px solid rgba(253, 248, 245, 0.3);
    padding: 14px 32px;
    border-radius: 100px;
    transition: background 0.3s, border-color 0.3s;
}

.mobile-nav-cta:hover {
    background: var(--amber);
    border-color: var(--amber);
}

/* ── Buttons ──────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
}

.btn-primary {
    background: var(--plum);
    color: var(--warm-white);
    border: 1px solid var(--plum);
}

.btn-primary:hover {
    background: var(--plum-deep);
    border-color: var(--plum-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(61, 28, 48, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--warm-white);
    border: 1px solid rgba(253, 248, 245, 0.35);
}

.btn-ghost:hover {
    border-color: var(--amber);
    color: var(--amber);
}

.btn-ghost-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--plum);
    border-bottom: 1px solid var(--plum);
    padding-bottom: 2px;
    margin-top: var(--space-md);
    transition: color 0.3s, border-color 0.3s;
}

.btn-ghost-map:hover {
    color: var(--amber-muted);
    border-color: var(--amber-muted);
}

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

/* ── Hero ─────────────────────────────── */
.hero {
    min-height: 100vh;
    background: var(--plum-deep);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(107, 47, 91, 0.6) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 20% 60%, rgba(200, 149, 108, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px var(--space-lg) 80px;
    position: relative;
    z-index: 1;
}

.hero-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: var(--space-xl);
    align-items: center;
}

/* Hero Images */
.hero-image-col {
    position: relative;
}

.hero-image-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}

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

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 28, 48, 0.4) 0%, transparent 50%);
    border-radius: var(--radius-lg);
}

.hero-image-accent {
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    border: 4px solid rgba(61, 28, 48, 0.8);
}

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

.hero-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-badge-ring {
    position: absolute;
    inset: 0;
    border: 1.5px solid var(--amber);
    border-radius: 50%;
    animation: badgeRotate 20s linear infinite;
}

@keyframes badgeRotate {
    to { transform: rotate(360deg); }
}

.hero-badge-text {
    font-family: var(--font-serif);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--amber);
    text-align: center;
    line-height: 1.3;
}

/* Hero Content */
.hero-content-col {
    padding-left: var(--space-lg);
}

.hero-content-inner {
    max-width: 560px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: var(--space-md);
}

.hero-headline {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: var(--space-lg);
}

.headline-line {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--warm-white);
}

.headline-line em {
    font-style: italic;
    color: var(--amber-light);
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(253, 248, 245, 0.7);
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(253, 248, 245, 0.1);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--warm-white);
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(253, 248, 245, 0.15);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(253, 248, 245, 0.4);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

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

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

/* ── Section Shared ───────────────────── */
.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber-muted);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.section-title em {
    font-style: italic;
    color: var(--plum);
}

.section-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--amber), transparent);
    margin: 0 auto;
}

/* ── Services ─────────────────────────── */
.services {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.service-card {
    background: var(--warm-white);
    border: 1px solid var(--sand);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(107, 47, 91, 0.1);
    border-color: var(--plum-pale);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--plum-pale), var(--amber-pale));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    margin-bottom: var(--space-md);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.service-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ── About ────────────────────────────── */
.about {
    padding: var(--space-3xl) 0;
    background: var(--plum-deep);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 20%, rgba(107, 47, 91, 0.5) 0%, transparent 70%);
    pointer-events: none;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-image-section {
    position: relative;
}

.about-image-primary {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
    aspect-ratio: 4/5;
}

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

.about-image-secondary {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    border: 4px solid var(--plum-deep);
}

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

.about-experience-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--amber);
    color: var(--warm-white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 8px 24px rgba(200, 149, 108, 0.4);
}

.experience-label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.85;
}

.experience-value {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.2;
}

.experience-sublabel {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    opacity: 0.8;
    margin-top: 2px;
}

.about-content-section {
    color: var(--warm-white);
}

.about .section-eyebrow {
    color: var(--amber);
}

.about .section-title {
    color: var(--warm-white);
}

.about .section-title em {
    color: var(--amber-light);
}

.about-text p {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(253, 248, 245, 0.75);
    margin-bottom: var(--space-md);
}

.about-values {
    display: grid;
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
}

.value-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
    color: rgba(253, 248, 245, 0.85);
}

.value-marker {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: var(--amber);
    border-radius: 50%;
}

.about .btn-primary {
    margin-top: var(--space-md);
}

/* ── Gallery ──────────────────────────── */
.gallery {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-md);
}

.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.6s var(--ease-out);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 28, 48, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

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

.gallery-item-overlay span {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--warm-white);
    font-style: italic;
}

.gallery-item--tall {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
    aspect-ratio: auto;
    min-height: 500px;
}

.gallery-item:not(.gallery-item--tall) {
    aspect-ratio: 3/2;
}

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

/* ── Testimonials ─────────────────────── */
.testimonials {
    padding: var(--space-3xl) 0;
    background: var(--off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--warm-white);
    border: 1px solid var(--sand);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(107, 47, 91, 0.08);
}

.testimonial-quote-mark {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--plum-pale);
    position: absolute;
    top: var(--space-sm);
    left: var(--space-md);
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

/* ── Contact ──────────────────────────── */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.contact-info {
    padding-right: var(--space-lg);
}

.contact-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--plum-pale), var(--amber-pale));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
}

.contact-detail-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.6;
}

.contact-detail-value a {
    color: var(--plum);
    transition: color 0.3s;
}

.contact-detail-value a:hover {
    color: var(--amber-muted);
}

/* Form */
.contact-form-section {
    background: var(--warm-white);
    border: 1px solid var(--sand);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--text-dark);
    background: var(--cream);
    border: 1px solid var(--sand);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum);
    box-shadow: 0 0 0 3px rgba(107, 47, 91, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

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

.form-group 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='%237A5E6E' 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: 36px;
}

/* Success Message */
.form-success {
    text-align: center;
    padding: var(--space-xl);
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--plum-pale), var(--amber-pale));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
}

.success-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

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

/* ── Footer ───────────────────────────── */
.footer {
    background: var(--plum-deep);
    color: var(--warm-white);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(253, 248, 245, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--warm-white);
    margin-bottom: var(--space-sm);
}

.footer-logo-icon {
    color: var(--amber);
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(253, 248, 245, 0.55);
    max-width: 280px;
}

.footer-nav-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: var(--space-sm);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-nav a {
    font-size: 0.9rem;
    color: rgba(253, 248, 245, 0.6);
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--warm-white);
}

.footer-contact-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: var(--space-sm);
}

.footer-contact address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(253, 248, 245, 0.6);
    margin-bottom: var(--space-xs);
}

.footer-contact a {
    font-size: 0.9rem;
    color: var(--amber-light);
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--warm-white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-lg);
    font-size: 0.8rem;
    color: rgba(253, 248, 245, 0.35);
}

/* ── Reveal Animations ────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ───────────────────────── */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
    
    .hero-content-col {
        padding-left: 0;
    }
    
    .hero-image-col {
        max-width: 400px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
    
    .contact-layout {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    :root {
        --space-lg: 1.25rem;
        --space-xl: 2.5rem;
        --space-2xl: 4rem;
        --space-3xl: 5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding-top: 80px;
    }
    
    .hero-inner {
        padding: 60px var(--space-lg) 100px;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .hero-image-col {
        max-width: 100%;
        order: -1;
    }
    
    .hero-content-col {
        padding-left: 0;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image-accent {
        right: 0;
        bottom: -20px;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
    }
    
    .about-image-section {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-item--tall {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 300px;
    }
    
    .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;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-xs);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .headline-line {
        font-size: 2rem;
    }
    
    .hero-image-accent {
        width: 65%;
        right: -10px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item--tall {
        min-height: 250px;
    }
}
