/* ============================================
   SALON 22 — CSS
   Plum + Amber · Editorial Aesthetic
   ============================================ */

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

:root {
    --plum-deep: #2D0A2E;
    --plum-dark: #4A1942;
    --plum-mid: #6B2158;
    --plum-light: #8B3A6A;
    --plum-pale: #F5E6F0;
    --plum-faint: #FDF2F8;
    --amber-deep: #B8860B;
    --amber: #D4A017;
    --amber-light: #E8C547;
    --amber-pale: #FFF8E7;
    --cream: #FFFBF5;
    --warm-white: #FEFCF9;
    --text-dark: #1A0A14;
    --text-mid: #4A3040;
    --text-light: #7A6070;
    --text-muted: #9A8090;
    --border: rgba(74, 25, 66, 0.12);
    --border-light: rgba(74, 25, 66, 0.06);
    --shadow-sm: 0 1px 3px rgba(45, 10, 46, 0.06), 0 1px 2px rgba(45, 10, 46, 0.04);
    --shadow-md: 0 4px 20px rgba(45, 10, 46, 0.08), 0 2px 8px rgba(45, 10, 46, 0.04);
    --shadow-lg: 0 12px 40px rgba(45, 10, 46, 0.12), 0 4px 16px rgba(45, 10, 46, 0.06);
    --shadow-xl: 0 24px 60px rgba(45, 10, 46, 0.16), 0 8px 24px rgba(45, 10, 46, 0.08);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--warm-white);
    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;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--plum-dark);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-size: 14px;
    font-weight: 500;
}

.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-serif);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber-deep);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: var(--plum-deep);
    margin-bottom: 24px;
}

.title-accent {
    font-style: italic;
    color: var(--plum-light);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: var(--plum-dark);
    color: #fff;
    box-shadow: 0 4px 16px rgba(74, 25, 66, 0.3);
}

.btn-primary:hover {
    background: var(--plum-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 25, 66, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--plum-dark);
    border: 1.5px solid var(--plum-dark);
}

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

.btn--white {
    background: #fff;
    color: var(--plum-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn--white:hover {
    background: var(--plum-pale);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn--white-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn--white-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn--large {
    padding: 18px 36px;
    font-size: 15px;
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
}

.btn--about {
    margin-top: 32px;
}

/* ---------- Header / Navigation ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all var(--transition-smooth);
}

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

.header.scrolled {
    background: rgba(253, 252, 249, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}

.header.scrolled .logo-mark {
    background: var(--plum-dark);
    color: var(--amber);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1001;
}

.logo-mark {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    background: #fff;
    color: var(--plum-deep);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
    transition: color var(--transition-fast);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 16px;
    border-radius: 100px;
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.nav-cta {
    background: var(--amber);
    color: var(--plum-deep) !important;
    font-weight: 600;
    margin-left: 8px;
}

.nav-cta:hover {
    background: var(--amber-light);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.menu-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition-fast);
}

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

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

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

/* ---------- Mobile Menu ---------- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--plum-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

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

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 24px;
    transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--amber);
}

.mobile-cta {
    margin-top: 16px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber) !important;
    padding: 14px 32px;
    border: 1.5px solid var(--amber);
    border-radius: 100px;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum-dark) 50%, #3D1040 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(212, 160, 23, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(139, 58, 106, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 520px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 24px;
    padding: 8px 16px;
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 100px;
    background: rgba(212, 160, 23, 0.08);
}

.hero-headline {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    color: #fff;
    line-height: 1.05;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-accent {
    font-style: italic;
    color: var(--amber);
    font-weight: 500;
}

.hero-sub {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 440px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

/* Hero Cards */
.hero-cards {
    position: relative;
    height: 620px;
    flex-shrink: 0;
}

.hero-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-card--main {
    width: 300px;
    height: 400px;
    top: 0;
    right: 0;
    z-index: 2;
}

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

.hero-card--accent {
    width: 220px;
    height: 160px;
    top: 60px;
    right: 240px;
    z-index: 3;
}

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

.hero-card--stat {
    background: #fff;
    padding: 24px 28px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 180px;
}

.hero-card--stat:nth-child(2) {
    bottom: 200px;
    left: -20px;
}

.hero-card--stat--bottom {
    bottom: 20px;
    right: 20px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--plum-dark);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
}

.hero-scroll span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ---------- Services ---------- */
.services {
    padding: 120px 0;
    background: var(--warm-white);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

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

.service-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--border-light);
    transition: all var(--transition-smooth);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--plum-dark), var(--amber));
    opacity: 0;
    transition: opacity var(--transition-fast);
}

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

.service-card:hover::before {
    opacity: 1;
}

.service-card-accent {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transition: all var(--transition-smooth);
}

.service-card:hover .service-card-accent {
    transform: scale(1.5);
    background: radial-gradient(circle, rgba(74, 25, 66, 0.06) 0%, transparent 70%);
}

.service-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--plum-pale);
    color: var(--plum-dark);
    margin-bottom: 24px;
    transition: all var(--transition-fast);
}

.service-card:hover .service-card-icon {
    background: var(--plum-dark);
    color: var(--amber);
}

.service-card-title {
    font-size: 1.3rem;
    color: var(--plum-deep);
    margin-bottom: 12px;
    font-weight: 600;
}

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

/* ---------- About ---------- */
.about {
    padding: 120px 0;
    background: var(--plum-faint);
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-col {
    position: relative;
    height: 600px;
}

.about-image-main {
    width: 80%;
    height: 80%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

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

.about-image-float {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--plum-faint);
    z-index: 3;
}

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

.about-image-col::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 2px solid var(--amber);
    border-radius: var(--radius-lg);
    opacity: 0.3;
    z-index: 1;
}

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

.about-title {
    margin-bottom: 28px;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.about-stat {
    text-align: center;
    flex: 1;
}

.about-stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--plum-dark);
    line-height: 1;
    margin-bottom: 6px;
}

.about-stat-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.about-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ---------- Gallery ---------- */
.gallery {
    padding: 120px 0;
    background: var(--warm-white);
}

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

.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 var(--transition-slow);
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 10, 46, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px 24px;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

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

.gallery-item-overlay span {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: #fff;
    font-style: italic;
}

.gallery-item--large {
    grid-column: 1 / 7;
    grid-row: 1 / 3;
}

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

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

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

/* ---------- Testimonials ---------- */
.testimonials {
    padding: 120px 0;
    background: var(--plum-deep);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 50% 50% at 10% 90%, rgba(212, 160, 23, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 90% 10%, rgba(139, 58, 106, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.testimonials .section-header {
    position: relative;
    z-index: 1;
}

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

.testimonials .section-title {
    color: #fff;
}

.testimonials .title-accent {
    color: var(--amber);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    backdrop-filter: blur(10px);
    transition: all var(--transition-smooth);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 160, 23, 0.2);
    transform: translateY(-4px);
}

.testimonial-quote-mark {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--amber);
    opacity: 0.4;
    margin-bottom: -8px;
}

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

.testimonial-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-author {
    font-size: 13px;
    font-weight: 500;
    color: var(--amber);
    letter-spacing: 0.04em;
}

/* ---------- CTA Section ---------- */
.cta-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--plum-dark) 0%, #3D1040 100%);
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(212, 160, 23, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 50%, rgba(139, 58, 106, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.cta-headline {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: #fff;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    max-width: 440px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ---------- Contact ---------- */
.contact {
    padding: 120px 0;
    background: var(--warm-white);
}

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

.contact-title {
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-detail {
    display: flex;
    gap: 16px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--plum-pale);
    color: var(--plum-dark);
}

.contact-detail-label {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

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

.contact-detail a {
    color: var(--plum-dark);
    font-weight: 500;
    transition: color var(--transition-fast);
}

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

/* Contact Form */
.contact-form-col {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 44px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.contact-form-title {
    font-size: 1.6rem;
    color: var(--plum-deep);
    margin-bottom: 28px;
}

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

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

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--text-dark);
    background: var(--warm-white);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    border-color: var(--plum-light);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(107, 33, 88, 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='%237A6070' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

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

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

.success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--plum-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-dark);
}

.form-success p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.6;
}

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

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

.footer-brand .logo-mark {
    background: var(--amber);
    color: var(--plum-deep);
}

.footer-tagline {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--amber);
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 6px;
}

.footer-contact a {
    color: var(--amber);
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--amber-light);
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* ---------- Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s 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 {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-cards {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-sub {
        margin: 0 auto 40px;
    }

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

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

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

    .about-image-col {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-content {
        max-width: 100%;
    }

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

    .gallery-item--large {
        grid-column: 1 / -1;
        grid-row: auto;
    }

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

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

    .gallery-grid .gallery-item {
        height: 240px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-desc {
        margin: 0 auto;
    }

    .cta-actions {
        flex-direction: row;
        justify-content: center;
    }

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

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .menu-toggle {
        display: flex;
    }

    .header-inner {
        height: 70px;
    }

    .hero {
        padding: 100px 0 80px;
        min-height: auto;
    }

    .hero-cards {
        display: none;
    }

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

    .hero-eyebrow {
        margin: 0 auto 20px;
    }

    .hero-sub {
        margin: 0 auto 32px;
    }

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

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

    .services {
        padding: 80px 0;
    }

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

    .service-card {
        padding: 32px 28px;
    }

    .about {
        padding: 80px 0;
    }

    .about-image-col {
        height: 320px;
    }

    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .gallery {
        padding: 80px 0;
    }

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

    .gallery-item--large,
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-grid .gallery-item {
        height: 220px;
    }

    .testimonials {
        padding: 80px 0;
    }

    .cta-section {
        padding: 80px 0;
    }

    .cta-actions {
        flex-direction: column;
    }

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

    .contact {
        padding: 80px 0;
    }

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

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

    .footer {
        padding: 48px 0 0;
    }

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

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-headline {
        font-size: 2.2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .btn--large {
        padding: 14px 28px;
    }
}
