/* ========================================
   GW & Wade — Premium Dark Luxury Styles
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    --color-bg-primary: #0D0D0D;
    --color-bg-secondary: #141414;
    --color-bg-tertiary: #1A1A1A;
    --color-bg-card: #161616;
    --color-bg-card-hover: #1C1C1C;
    
    --color-burgundy: #722F37;
    --color-burgundy-light: #8B3A42;
    --color-burgundy-dark: #5A252C;
    --color-burgundy-muted: rgba(114, 47, 55, 0.15);
    
    --color-blush: #E8C4B8;
    --color-blush-light: #F2D5CC;
    --color-blush-muted: rgba(232, 196, 184, 0.1);
    
    --color-gold: #C9A962;
    --color-gold-light: #D4B978;
    --color-gold-dark: #A8894E;
    --color-gold-muted: rgba(201, 169, 98, 0.12);
    
    --color-text-primary: #F5F0EB;
    --color-text-secondary: #B8B0A8;
    --color-text-muted: #7A726A;
    --color-text-inverse: #1A1A1A;
    
    --color-border: rgba(201, 169, 98, 0.15);
    --color-border-light: rgba(255, 255, 255, 0.06);
    
    --font-serif: 'Cormorant Garamond', 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: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --max-width: 1280px;
}

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

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

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

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

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

ul {
    list-style: none;
}

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

/* --- Container --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* --- Custom Cursor --- */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(201, 169, 98, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

@media (max-width: 768px) {
    .cursor-dot, .cursor-ring {
        display: none;
    }
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: background-color var(--transition-base), padding var(--transition-base), border-color var(--transition-base);
}

.header.scrolled {
    background-color: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* --- Logo --- */
.logo {
    display: flex;
    align-items: baseline;
    gap: 0.15em;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--color-text-primary);
    transition: opacity var(--transition-fast);
}

.logo:hover {
    opacity: 0.8;
}

.logo__mark {
    color: var(--color-gold);
}

.logo__amp {
    color: var(--color-blush);
    font-style: italic;
    font-weight: 300;
    font-size: 1.2rem;
}

/* --- Navigation --- */
.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav__list {
    display: flex;
    gap: var(--space-lg);
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition-base);
}

.nav__link:hover {
    color: var(--color-gold);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.nav__cta:hover {
    background: var(--color-gold);
    color: var(--color-text-inverse);
}

/* --- Mobile Toggle --- */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-xs);
    z-index: 1001;
}

.mobile-toggle__line {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--color-text-primary);
    transition: all var(--transition-base);
    transform-origin: center;
}

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

.mobile-toggle.active .mobile-toggle__line:nth-child(2) {
    opacity: 0;
}

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

/* --- Mobile Overlay --- */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

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

.mobile-overlay__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mobile-overlay__link {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-text-primary);
    transition: color var(--transition-fast);
}

.mobile-overlay__link:hover {
    color: var(--color-gold);
}

.mobile-overlay__divider {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
    margin: var(--space-sm) auto;
}

.mobile-overlay__info {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.mobile-overlay__phone {
    font-size: 1.125rem;
    color: var(--color-gold);
    font-weight: 500;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(114, 47, 55, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(201, 169, 98, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 30% 30% at 90% 10%, rgba(232, 196, 184, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
}

.hero__eyebrow-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--color-gold);
    flex-shrink: 0;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-text-primary);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.01em;
}

.hero__headline em {
    font-style: italic;
    color: var(--color-blush);
}

.hero__subheadline {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 540px;
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

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

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero__stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
    flex-shrink: 0;
}

/* Hero Visual */
.hero__visual {
    position: relative;
    padding-top: var(--space-3xl);
}

.hero__image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.hero__image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.hero__image-accent {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-burgundy), var(--color-gold), var(--color-blush));
}

.hero__image-secondary {
    position: absolute;
    bottom: var(--space-2xl);
    left: calc(-50% - var(--space-lg));
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--color-border);
}

.hero__image-secondary img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--gold {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-text-inverse);
    border: none;
}

.btn--gold:hover {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 98, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
}

.btn--outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
}

.btn--outline-light {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--outline-light:hover {
    border-color: var(--color-blush);
    color: var(--color-blush);
    transform: translateY(-2px);
}

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

/* --- Section Eyebrow --- */
.section-eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.section-eyebrow-line {
    display: block;
    width: 32px;
    height: 1px;
    background: var(--color-gold);
    flex-shrink: 0;
}

/* --- Section Headline --- */
.section-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text-primary);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.01em;
}

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

/* --- About Section --- */
.about {
    padding: var(--space-4xl) 0;
    position: relative;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.about__body {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

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

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

.about__value-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--color-gold);
    margin-top: 0.125rem;
}

.about__value-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
}

.about__value-text {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* --- Services Section --- */
.services {
    padding: var(--space-4xl) 0;
    position: relative;
    background: var(--color-bg-secondary);
}

.services__bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(114, 47, 55, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(201, 169, 98, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
    position: relative;
    z-index: 1;
}

.services__lead {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

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

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

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

.service-card:hover {
    background: var(--color-bg-card-hover);
    border-color: var(--color-border);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.service-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--color-gold-muted);
    border: 1px solid var(--color-border);
    margin-bottom: var(--space-md);
    color: var(--color-gold);
}

.service-card__icon svg {
    width: 24px;
    height: 24px;
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.service-card__desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
}

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

.service-card__list li {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    padding-left: 1rem;
    position: relative;
}

.service-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 4px;
    height: 1px;
    background: var(--color-gold);
}

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

.approach__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

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

.approach__steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5% + var(--space-sm));
    right: calc(12.5% + var(--space-sm));
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-gold), transparent);
    z-index: 0;
}

.approach__step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.approach__step-number {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.approach__step-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

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

/* --- CTA Section --- */
.cta {
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(114, 47, 55, 0.2) 0%, rgba(13, 13, 13, 0.9) 50%, rgba(201, 169, 98, 0.08) 100%);
    pointer-events: none;
}

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

.cta__content .section-eyebrow {
    justify-content: center;
}

.cta__headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--color-text-primary);
    margin-bottom: var(--space-lg);
}

.cta__body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
}

.cta__actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

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

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact__body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

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

.contact__detail-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-gold);
    margin-top: 0.125rem;
}

.contact__detail-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}

.contact__detail-value {
    font-size: 1rem;
    color: var(--color-text-primary);
    line-height: 1.6;
}

.contact__detail-value a {
    transition: color var(--transition-fast);
}

.contact__detail-value a:hover {
    color: var(--color-gold);
}

/* --- Contact Form --- */
.contact__form-wrapper {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

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

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

.form__label {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.form__input {
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--color-text-primary);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
    width: 100%;
}

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

.form__input:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 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='%237A726A' 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 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form__select option {
    background: var(--color-bg-tertiary);
    color: var(--color-text-primary);
}

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

.form__privacy {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: var(--space-sm);
}

/* Form Success */
.form__success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
    gap: var(--space-md);
}

.form__success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-gold-muted);
    border: 1px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.form__success-icon svg {
    width: 32px;
    height: 32px;
}

.form__success-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.form__success-text {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 360px;
}

/* --- Footer --- */
.footer {
    padding: var(--space-3xl) 0 var(--space-lg);
    border-top: 1px solid var(--color-border-light);
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-2xl);
    margin-bottom: var(--space-xl);
    border-bottom: 1px solid var(--color-border-light);
}

.footer__tagline {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-top: var(--space-sm);
    max-width: 280px;
}

.footer__links {
    display: flex;
    gap: var(--space-3xl);
}

.footer__link-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__link-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
}

.footer__link-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer__link-list a {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer__link-list a:hover {
    color: var(--color-text-primary);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer__copyright {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.footer__address {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

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

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .hero__content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero__subheadline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero__actions {
        justify-content: center;
    }
    
    .hero__stats {
        justify-content: center;
    }
    
    .hero__visual {
        max-width: 500px;
        margin: 0 auto;
        padding-top: 0;
    }
    
    .hero__image-secondary {
        left: auto;
        right: 0;
        bottom: var(--space-lg);
    }
    
    .about__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach__steps {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2xl);
    }
    
    .approach__steps::before {
        display: none;
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .footer__top {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .nav, .nav__cta {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero {
        padding: 7rem 0 3rem;
        min-height: auto;
    }
    
    .hero__headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero__stats {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .hero__stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .hero__image-secondary {
        display: none;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .approach__steps {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .form__row {
        grid-template-columns: 1fr;
    }
    
    .footer__links {
        flex-direction: column;
        gap: var(--space-xl);
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn--full {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}
