/* =====================================================
   Shaw Creative Group — Styles
   Bold editorial style · Burgundy + Blush palette
   ===================================================== */

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

:root {
    --burgundy: #7B2D3B;
    --burgundy-dark: #5C1F2C;
    --burgundy-deeper: #3D141C;
    --blush: #C4707A;
    --blush-light: #E8A5AB;
    --blush-pale: #F5D5D8;
    --cream: #FDF6F0;
    --cream-dark: #F7EDE4;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #7A7A7A;
    --text-inverse: #FDF6F0;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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-dark);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-dark);
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: var(--space-sm);
}

.section-eyebrow-light {
    color: var(--blush-pale);
}

.section-headline {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.section-headline-light {
    color: var(--white);
}

.section-subhead {
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 600px;
    line-height: 1.7;
}

.section-subhead-light {
    color: rgba(253, 246, 240, 0.75);
}

.section-header {
    margin-bottom: var(--space-2xl);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background-color: var(--burgundy-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(123, 45, 59, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.08);
}

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

.btn-light:hover {
    background-color: var(--cream);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

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

.btn-small {
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
    background-color: var(--white);
    color: var(--burgundy);
    border-radius: var(--radius-sm);
}

.btn-small:hover {
    background-color: var(--cream);
}

/* ---------- Header / Navigation ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
}

.site-header.scrolled {
    background-color: rgba(253, 246, 240, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(123, 45, 59, 0.08);
}

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

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

.logo-mark {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--white);
    background: linear-gradient(135deg, var(--burgundy), var(--blush));
    padding: 0.4rem 0.55rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.site-header.scrolled .logo-mark {
    color: var(--white);
}

.logo-wordmark {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    transition: var(--transition);
}

.site-header.scrolled .logo-wordmark {
    color: var(--text-dark);
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(253, 246, 240, 0.85);
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--blush-light);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a:focus::after {
    width: 100%;
}

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

.site-header.scrolled .nav-menu a {
    color: var(--text-mid);
}

.site-header.scrolled .nav-menu a:hover {
    color: var(--burgundy);
}

.nav-cta {
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    color: var(--white) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.site-header.scrolled .nav-cta {
    border-color: var(--burgundy);
    color: var(--burgundy) !important;
}

.site-header.scrolled .nav-cta:hover {
    background-color: var(--burgundy);
    color: var(--white) !important;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background-color: var(--white);
    transition: var(--transition);
    transform-origin: center;
}

.site-header.scrolled .hamburger-line {
    background-color: var(--text-dark);
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile nav overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: linear-gradient(135deg, var(--burgundy-deeper), var(--burgundy));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-overlay-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.nav-overlay-link {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--white);
    transition: var(--transition);
}

.nav-overlay-link:hover {
    color: var(--blush-light);
}

.nav-overlay-cta {
    margin-top: 1rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-overlay-cta:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--space-3xl) var(--space-md);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        var(--burgundy-deeper) 0%,
        var(--burgundy) 35%,
        var(--blush) 70%,
        var(--blush-light) 100%
    );
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
    padding-top: var(--space-xl);
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(253, 246, 240, 0.7);
    margin-bottom: var(--space-lg);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.hero-headline .accent-italic {
    font-style: italic;
    font-weight: 400;
    color: var(--blush-pale);
}

.hero-subheadline {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(253, 246, 240, 0.8);
    max-width: 620px;
    margin: 0 auto var(--space-xl);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(253, 246, 240, 0.5);
    margin-bottom: 0.25rem;
}

.stat-value {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
}

.stat-divider {
    width: 1px;
    height: 32px;
    background-color: rgba(253, 246, 240, 0.2);
    align-self: center;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
}

.hero-scroll-indicator span {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(253, 246, 240, 0.4);
}

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

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

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

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

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(123, 45, 59, 0.1);
    border-color: var(--blush-pale);
}

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

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(123, 45, 59, 0.08), rgba(196, 112, 122, 0.08));
    color: var(--burgundy);
    margin-bottom: var(--space-md);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--burgundy), var(--blush));
    color: var(--white);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.service-description {
    font-size: 0.925rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-list li {
    font-size: 0.85rem;
    color: var(--text-mid);
    padding-left: 1.25rem;
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--burgundy), var(--blush));
}

/* ---------- About Section ---------- */
.about {
    padding: var(--space-3xl) 0;
    background-color: var(--cream-dark);
}

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

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

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(123, 45, 59, 0.15);
}

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

.about-image-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(123, 45, 59, 0.2);
    border: 4px solid var(--cream-dark);
}

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

.about-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: linear-gradient(135deg, var(--burgundy), var(--blush));
    color: var(--white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 8px 24px rgba(123, 45, 59, 0.3);
}

.badge-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.badge-value {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 500;
}

.about-content {
    padding: var(--space-md) 0;
}

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

.about-values {
    margin-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

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

.value-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(123, 45, 59, 0.08), rgba(196, 112, 122, 0.08));
    color: var(--burgundy);
}

.value-title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.value-desc {
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ---------- Approach Section ---------- */
.approach {
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
}

.approach-bg {
    position: absolute;
    inset: 0;
}

.approach-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        var(--burgundy-deeper) 0%,
        var(--burgundy) 50%,
        var(--blush) 100%
    );
}

.approach-steps {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.approach-step {
    position: relative;
}

.step-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(253, 246, 240, 0.1);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.step-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.step-description {
    font-size: 0.9rem;
    color: rgba(253, 246, 240, 0.7);
    line-height: 1.75;
}

/* ---------- Testimonial Section ---------- */
.testimonial-section {
    padding: var(--space-3xl) 0;
    background-color: var(--white);
}

.testimonial-wrap {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial-quote-mark {
    font-family: var(--font-serif);
    font-size: 8rem;
    line-height: 0.8;
    color: var(--blush-pale);
    position: absolute;
    top: -2rem;
    left: -1rem;
    user-select: none;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    margin-bottom: var(--space-lg);
}

.testimonial-content p {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-dark);
}

.testimonial-attribution {
    margin-bottom: var(--space-lg);
}

.testimonial-source {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.testimonial-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--burgundy), var(--blush));
    margin: 0 auto var(--space-lg);
    border-radius: 1px;
}

.testimonial-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-cta p {
    font-size: 1rem;
    color: var(--text-mid);
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.contact-info {
    padding: var(--space-md) 0;
}

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

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

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

.contact-detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(123, 45, 59, 0.08), rgba(196, 112, 122, 0.08));
    color: var(--burgundy);
}

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

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

.contact-detail-value a {
    color: var(--burgundy);
    transition: var(--transition);
}

.contact-detail-value a:hover {
    color: var(--burgundy-dark);
    text-decoration: underline;
}

.contact-hours {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    border: 1px solid var(--blush-pale);
}

.hours-title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--cream-dark);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-day {
    color: var(--text-mid);
}

.hours-time {
    color: var(--text-dark);
    font-weight: 500;
}

/* Contact Form */
.contact-form-wrap {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 8px 32px rgba(123, 45, 59, 0.08);
    border: 1px solid var(--blush-pale);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}

.required {
    color: var(--burgundy);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-dark);
    background-color: var(--cream);
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blush);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(196, 112, 122, 0.15);
}

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

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

.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 12 12' fill='none'%3E%3Cpath d='M3 4.5l3 3 3-3' stroke='%237A7A7A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

.form-success {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
}

.success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-md);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(123, 45, 59, 0.08), rgba(196, 112, 122, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
}

.success-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.success-text {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ---------- Map Section ---------- */
.map-section {
    position: relative;
    height: 350px;
    border-top: 1px solid var(--blush-pale);
}

.map-section iframe {
    filter: grayscale(30%) contrast(1.05);
}

.map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 var(--space-xl);
    background: linear-gradient(90deg, rgba(253, 246, 240, 0.9) 0%, rgba(253, 246, 240, 0.7) 50%, transparent 100%);
}

.map-info {
    max-width: 320px;
}

.map-info h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.map-info p {
    font-size: 0.9rem;
    color: var(--text-mid);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

/* ---------- Footer ---------- */
.footer {
    background-color: var(--burgundy-deeper);
    color: var(--text-inverse);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand .logo-wordmark {
    color: var(--white);
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(253, 246, 240, 0.6);
    line-height: 1.7;
    margin-top: var(--space-md);
    max-width: 280px;
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(253, 246, 240, 0.4);
    margin-bottom: var(--space-md);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(253, 246, 240, 0.7);
    transition: var(--transition);
}

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

.footer-address {
    font-size: 0.875rem;
    color: rgba(253, 246, 240, 0.7);
    line-height: 1.8;
    font-style: normal;
}

.footer-address a {
    color: var(--blush-light);
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(253, 246, 240, 0.1);
    padding-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(253, 246, 240, 0.4);
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: rgba(253, 246, 240, 0.3);
    line-height: 1.6;
}

/* ---------- Reveal Animations ---------- */
.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);
    }

    .approach-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: linear-gradient(180deg, var(--burgundy-deeper), var(--burgundy));
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transform: translateX(100%);
        transition: var(--transition);
        z-index: 1000;
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .nav-menu {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-menu a {
        font-size: 1.1rem;
        color: rgba(253, 246, 240, 0.85);
    }

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

    .nav-cta {
        margin-top: 1rem;
    }

    .hero {
        min-height: 100svh;
        padding: var(--space-2xl) var(--space-md);
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

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

    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

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

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

    .about-image-accent {
        width: 60%;
        bottom: -1.5rem;
        right: -0.5rem;
    }

    .about-badge {
        top: -0.5rem;
        right: 0.5rem;
    }

    .approach-steps {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

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

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

    .map-overlay {
        background: linear-gradient(180deg, rgba(253, 246, 240, 0.95) 0%, rgba(253, 246, 240, 0.8) 60%, transparent 100%);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-bottom {
        flex-direction: column;
    }
}

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

    .hero-headline {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
    }

    .service-card {
        padding: var(--space-lg);
    }

    .contact-form-wrap {
        padding: var(--space-lg);
    }
}
