/* ===================================
   ROYAL PAIN CENTER — STYLESHEET
   Classic & Elegant · Plum + Amber
   =================================== */

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

:root {
    --plum-deep: #3D1C4A;
    --plum-mid: #5B2C6F;
    --plum-light: #8B5FBF;
    --plum-pale: #E8D5F5;
    --plum-bg: #F7F0FC;
    --amber-deep: #8B6914;
    --amber-mid: #B7943B;
    --amber-light: #D4AF5A;
    --amber-pale: #FDF3D8;
    --cream: #FDF9F4;
    --warm-white: #FEFCF9;
    --text-dark: #1A0A2E;
    --text-mid: #3D2B4A;
    --text-light: #6B5878;
    --text-muted: #9B8AAA;
    --border-light: #E8D8F0;
    --border-amber: #D4AF5A30;
    --shadow-sm: 0 1px 3px rgba(61, 28, 74, 0.06);
    --shadow-md: 0 4px 20px rgba(61, 28, 74, 0.08);
    --shadow-lg: 0 12px 48px rgba(61, 28, 74, 0.12);
    --shadow-xl: 0 24px 64px rgba(61, 28, 74, 0.16);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Lora', 'Times New Roman', serif;
    --font-ui: 'Inter', -apple-system, sans-serif;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 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;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--warm-white);
    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;
}

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

/* ---------- PAGE LOADER ---------- */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum-mid) 50%, var(--amber-deep) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.loader-logo {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 C35 10 25 22 25 34 C25 50 50 70 50 70 C50 70 75 50 75 34 C75 22 65 10 50 10Z' fill='white' opacity='0.9'/%3E%3Ccircle cx='50' cy='36' r='7' fill='%23B7943B'/%3E%3C/svg%3E") center/contain no-repeat;
    animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.loader-text {
    font-family: var(--font-display);
    color: var(--amber-light);
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(253, 249, 244, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 0 var(--border-light), var(--shadow-sm);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--warm-white);
    transition: var(--transition-fast);
}

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

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

.nav-logo-text {
    letter-spacing: 0.02em;
}

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

.nav-link {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(253, 249, 244, 0.8);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    letter-spacing: 0.02em;
}

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

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

.navbar.scrolled .nav-link:hover {
    color: var(--plum-mid);
    background: var(--plum-pale);
}

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

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

/* ---------- MOBILE MENU ---------- */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle-line {
    width: 24px;
    height: 1.5px;
    background: var(--warm-white);
    transition: var(--transition-fast);
    transform-origin: center;
}

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

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

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

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

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 10, 46, 0.6);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

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

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        #1A0A2E 0%,
        #3D1C4A 20%,
        #5B2C6F 40%,
        #7B3F8E 55%,
        #B7943B 78%,
        #D4AF5A 100%
    );
    background-size: 300% 300%;
    animation: heroGradientShift 12s ease-in-out infinite;
}

@keyframes heroGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='white' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(26, 10, 46, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: 32px;
}

.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--amber-mid);
    opacity: 0.6;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--warm-white);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.hero-title em {
    font-style: italic;
    color: var(--amber-pale);
}

.hero-accent {
    color: var(--amber-light);
    font-style: italic;
    position: relative;
}

.hero-accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--amber-mid), transparent);
    opacity: 0.5;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(253, 249, 244, 0.75);
    max-width: 600px;
    margin: 0 auto 44px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 15px 32px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    letter-spacing: 0.02em;
}

.btn--primary {
    background: var(--amber-mid);
    color: var(--plum-deep);
}

.btn--primary:hover {
    background: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(183, 148, 59, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--warm-white);
    border: 1px solid rgba(253, 249, 244, 0.3);
}

.btn--ghost:hover {
    background: rgba(253, 249, 244, 0.1);
    border-color: rgba(253, 249, 244, 0.6);
}

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

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: rgba(253, 249, 244, 0.6);
    letter-spacing: 0.03em;
}

.trust-item svg {
    color: var(--amber-light);
    opacity: 0.7;
}

/* ---------- SCROLL INDICATOR ---------- */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(253, 249, 244, 0.5);
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 1;
    transition: var(--transition-fast);
}

.scroll-indicator:hover {
    color: var(--amber-light);
}

.scroll-indicator-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--amber-light), 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 COMMON ---------- */
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber-deep);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.section-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 1px;
    background: var(--amber-mid);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.text-accent {
    color: var(--plum-mid);
    font-style: italic;
}

.section-lead {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.8;
}

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

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

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

.about-image-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-frame:hover img {
    transform: scale(1.03);
}

.about-accent-box {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: linear-gradient(135deg, var(--plum-deep), var(--plum-mid));
    color: var(--warm-white);
    padding: 24px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.accent-box-number {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--amber-light);
}

.accent-box-text {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: rgba(253, 249, 244, 0.7);
    letter-spacing: 0.03em;
}

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

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

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--plum-bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-mid);
}

.about-feature-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ---------- SERVICES ---------- */
.services {
    padding: 120px 0;
    background: var(--plum-bg);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

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

.services-header .section-eyebrow {
    padding-left: 0;
}

.services-header .section-eyebrow::before {
    display: none;
}

.services-header .section-lead {
    margin: 0 auto;
}

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

.service-card {
    background: var(--warm-white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
    border: 1px solid transparent;
}

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

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

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

.service-card-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--plum-pale);
    line-height: 1;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.service-card:hover .service-card-number {
    color: var(--plum-mid);
}

.service-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--plum-bg), var(--plum-pale));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-mid);
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.service-card:hover .service-card-icon {
    background: linear-gradient(135deg, var(--plum-mid), var(--plum-deep));
    color: var(--amber-light);
}

.service-card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

/* ---------- APPROACH ---------- */
.approach {
    padding: 120px 0;
    background: var(--warm-white);
    position: relative;
    overflow: hidden;
}

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

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

.approach-content .lead {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 48px;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.approach-step {
    display: flex;
    gap: 24px;
    position: relative;
}

.step-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 48px;
}

.step-number span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--plum-mid);
    background: var(--plum-bg);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.step-line {
    width: 1px;
    flex: 1;
    background: linear-gradient(to bottom, var(--border-light), transparent);
    margin: 4px 0;
}

.approach-step:last-child .step-line {
    display: none;
}

.step-content {
    padding-bottom: 32px;
}

.approach-step:last-child .step-content {
    padding-bottom: 0;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
}

.approach-visual {
    position: relative;
    padding-right: 40px;
}

.approach-image-stack {
    position: relative;
    min-height: 640px;
}

.approach-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}

.approach-img-main img {
    width: 100%;
    height: 640px;
    object-fit: cover;
}

.approach-img-secondary {
    position: absolute;
    bottom: 0;
    left: -40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--warm-white);
    z-index: 2;
}

.approach-img-secondary img {
    width: 320px;
    height: 240px;
    object-fit: cover;
}

.approach-accent-strip {
    position: absolute;
    top: 40px;
    right: 0;
    width: 80px;
    height: 200px;
    z-index: 0;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.accent-strip-pattern {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        var(--plum-mid),
        var(--plum-mid) 8px,
        var(--plum-light) 8px,
        var(--plum-light) 16px
    );
    opacity: 0.15;
}

/* ---------- FAQ ---------- */
.faq {
    padding: 120px 0;
    background: var(--plum-bg);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

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

.faq-header .section-eyebrow {
    padding-left: 0;
}

.faq-header .section-eyebrow::before {
    display: none;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--warm-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--amber-mid);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--plum-mid);
}

.faq-q-text {
    flex: 1;
}

.faq-toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    position: relative;
    transition: var(--transition-fast);
}

.faq-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--plum-mid);
    border-radius: 1px;
    transition: var(--transition-fast);
}

.faq-toggle span:first-child {
    width: 14px;
    height: 1.5px;
}

.faq-toggle span:last-child {
    width: 1.5px;
    height: 14px;
}

.faq-question[aria-expanded="true"] .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 28px 22px;
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--plum-mid);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-answer a:hover {
    color: var(--amber-deep);
}

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

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

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

.contact-info .lead {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 40px;
}

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

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

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

.contact-detail-label {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

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

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

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

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.contact-form-wrap {
    max-width: 520px;
}

.contact-form-card {
    background: var(--warm-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--plum-mid), var(--amber-mid));
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

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

.form-label {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-mid);
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}

.form-input {
    width: 100%;
    padding: 13px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--plum-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    outline: none;
}

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

.form-input:focus {
    border-color: var(--plum-mid);
    background: var(--warm-white);
    box-shadow: 0 0 0 3px rgba(91, 44, 111, 0.1);
}

.form-input.error {
    border-color: #c0392b;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 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 12 12' fill='none'%3E%3Cpath d='M3 5L6 8L9 5' stroke='%236B5878' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%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: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: var(--plum-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-mid);
}

.success-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.success-title::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--amber-mid);
    margin: 0 auto 16px;
    border-radius: 1px;
}

.form-success p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--plum-deep);
    color: var(--warm-white);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 64px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(253, 249, 244, 0.08);
}

.footer-brand {
    max-width: 320px;
}

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

.footer-logo-text {
    letter-spacing: 0.02em;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(253, 249, 244, 0.5);
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col-title {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a,
.footer-col span {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    color: rgba(253, 249, 244, 0.55);
    transition: var(--transition-fast);
    line-height: 1.5;
}

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

.footer-bottom {
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copy {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: rgba(253, 249, 244, 0.35);
}

.footer-disclaimer {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: rgba(253, 249, 244, 0.25);
    text-align: right;
    max-width: 400px;
    line-height: 1.5;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--plum-mid);
    color: var(--amber-light);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 900;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.back-to-top:hover {
    background: var(--plum-deep);
    transform: translateY(-2px);
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up {
    transform: translateY(32px);
}

.reveal-left {
    transform: translateX(-32px);
}

.reveal-right {
    transform: translateX(32px);
}

.reveal-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .about-grid,
    .approach-layout,
    .contact-layout {
        gap: 48px;
    }

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

    .approach-visual {
        padding-right: 0;
    }

    .approach-img-secondary {
        left: -20px;
    }

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

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: var(--plum-deep);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        gap: 4px;
        transform: translateX(100%);
        transition: var(--transition-base);
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        color: rgba(253, 249, 244, 0.7) !important;
        font-size: 1rem;
        padding: 12px 0;
        width: 100%;
    }

    .nav-link:hover,
    .nav-link--cta:hover {
        background: rgba(255, 255, 255, 0.05) !important;
        color: var(--amber-light) !important;
    }

    .nav-link--cta {
        margin-left: 0;
        margin-top: 16px;
        text-align: center;
        justify-content: center;
    }

    .hero {
        padding: 100px 24px 80px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.6rem);
    }

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

    .about-grid,
    .approach-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .about-image-wrap {
        order: -1;
        max-width: 480px;
    }

    .about-accent-box {
        right: 16px;
        bottom: -16px;
    }

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

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

    .approach-image-stack {
        min-height: 400px;
        margin-top: 40px;
    }

    .approach-img-main img {
        height: 400px;
    }

    .approach-img-secondary {
        display: none;
    }

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

    .faq-col {
        gap: 12px;
    }

    .contact-form-card {
        padding: 32px 24px;
    }

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

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

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

    .footer-disclaimer {
        text-align: center;
        max-width: 100%;
    }

    .scroll-indicator {
        display: none;
    }
}

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

    .about,
    .services,
    .approach,
    .faq,
    .contact {
        padding: 80px 0;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

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