/* ============================================
   RiaTea Vintage Weight Loss Center
   Clean Minimalist · Burgundy + Blush
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --burgundy: #7B2D3B;
    --burgundy-deep: #5C1F2C;
    --burgundy-light: #9A3D4E;
    --blush: #F5E6E0;
    --blush-light: #FAF3F0;
    --blush-mid: #EDE0DA;
    --cream: #FDF9F7;
    --white: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #8A8A8A;
    --text-light: #B0B0B0;
    --line: rgba(123, 45, 59, 0.12);
    --line-strong: rgba(123, 45, 59, 0.25);
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: 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);
    font-weight: 300;
    color: var(--text-primary);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

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

/* ============================================
   LOADER
   ============================================ */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

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

.loader-line {
    width: 60px;
    height: 2px;
    background: var(--blush);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.loader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60px;
    width: 60px;
    height: 100%;
    background: var(--blush-light);
    animation: loaderSlide 1s var(--ease-out) infinite;
}

@keyframes loaderSlide {
    to { left: 60px; }
}

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 2rem;
    transition: all 0.5s var(--ease-out);
}

#navbar.scrolled {
    background: rgba(253, 249, 247, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height 0.4s var(--ease-out);
}

#navbar.scrolled .nav-container {
    height: 64px;
}

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

.logo-mark {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--burgundy);
    position: relative;
    flex-shrink: 0;
}

.logo-mark::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 14px;
    background: var(--blush);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--text-primary);
}

.logo-vintage {
    font-style: italic;
    font-weight: 300;
    color: var(--burgundy);
}

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

.nav-link {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
}

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

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

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

.nav-cta {
    background: var(--burgundy);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 100px;
    letter-spacing: 0.06em;
    transition: background 0.3s, transform 0.3s var(--ease-out) !important;
}

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

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

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

.hamburger {
    width: 22px;
    height: 1.5px;
    background: var(--text-primary);
    transition: all 0.4s var(--ease-out);
    transform-origin: center;
}

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

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

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

/* Mobile overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(253, 249, 247, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out);
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 2rem 80px;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 230, 224, 0.6) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 45, 59, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 2rem;
}

.eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--burgundy);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 1.75rem;
}

.hero-headline .accent-italic {
    font-style: italic;
    font-weight: 300;
    color: var(--burgundy);
}

.hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 440px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: var(--burgundy);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--burgundy-deep);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(123, 45, 59, 0.25);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    padding: 0;
    transition: color 0.3s;
}

.btn-link:hover {
    color: var(--burgundy);
}

.btn-link-line {
    width: 32px;
    height: 1px;
    background: currentColor;
    transition: width 0.4s var(--ease-out);
}

.btn-link:hover .btn-link-line {
    width: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--burgundy);
    line-height: 1;
}

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

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

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

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

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--burgundy);
    border-radius: 4px;
    opacity: 0.3;
    z-index: -1;
}

.hero-floating-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: var(--white);
    padding: 20px 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.floating-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    flex-shrink: 0;
}

.floating-card-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 2px;
}

.floating-card-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
}

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

.hero-scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--line-strong);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--burgundy);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -40px; }
    100% { top: 40px; }
}

/* ============================================
   SECTIONS (shared)
   ============================================ */
.section-header {
    margin-bottom: 2rem;
}

.section-eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.section-title .accent-italic {
    font-style: italic;
    font-weight: 300;
    color: var(--burgundy);
}

/* ============================================
   APPROACH
   ============================================ */
.approach {
    padding: 120px 2rem;
    background: var(--white);
}

.approach-container {
    max-width: 1100px;
    margin: 0 auto;
}

.approach-intro {
    max-width: 680px;
    margin-bottom: 4rem;
}

.approach-intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    font-weight: 300;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 5rem;
}

.approach-card {
    padding: 2.5rem;
    border: 1px solid var(--line);
    position: relative;
    transition: all 0.5s var(--ease-out);
}

.approach-card:first-child {
    border-radius: 4px 0 0 4px;
}

.approach-card:last-child {
    border-radius: 0 4px 4px 0;
}

.approach-card:hover {
    background: var(--blush-light);
    border-color: var(--burgundy);
    z-index: 2;
}

.card-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--blush-mid);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: color 0.4s;
}

.approach-card:hover .card-number {
    color: var(--burgundy);
    opacity: 0.3;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.card-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 300;
}

.card-line {
    position: absolute;
    bottom: 0;
    left: 2.5rem;
    right: 2.5rem;
    height: 2px;
    background: var(--burgundy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out);
}

.approach-card:hover .card-line {
    transform: scaleX(1);
}

.approach-divider {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: var(--line-strong);
}

.divider-quote {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 300;
    color: var(--burgundy);
    text-align: center;
    max-width: 400px;
    line-height: 1.5;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 120px 2rem;
    background: var(--cream);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-layout {
    display: grid;
    grid-template-columns: 560px 1fr;
    gap: 5rem;
    align-items: start;
}

.services-visual {
    position: relative;
}

.services-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.services-content {
    padding-top: 1rem;
}

.services-intro {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 3rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 3rem;
}

.service-item {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 1.25rem;
    align-items: start;
    padding: 2rem 0;
    border-bottom: 1px solid var(--line);
    transition: all 0.4s var(--ease-out);
}

.service-item:first-child {
    border-top: 1px solid var(--line);
}

.service-item:hover {
    padding-left: 1rem;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    transition: all 0.4s var(--ease-out);
    flex-shrink: 0;
}

.service-item:hover .service-icon {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: var(--white);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

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

.service-line {
    width: 24px;
    height: 1px;
    background: var(--burgundy);
    opacity: 0;
    transition: all 0.4s var(--ease-out);
    transform: translateX(-8px);
    align-self: center;
}

.service-item:hover .service-line {
    opacity: 1;
    transform: translateX(0);
}

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

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 120px 2rem;
    background: var(--white);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

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

.about-divider {
    width: 60px;
    height: 1px;
    background: var(--burgundy);
    margin: 2rem 0;
}

.about-text {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 1.25rem;
}

.about-visual {
    position: relative;
}

.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.about-img-main img,
.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.about-img-secondary {
    margin-top: 2rem;
}

.about-accent-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--blush-light);
    border-radius: 4px;
    border-left: 2px solid var(--burgundy);
}

.accent-box-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 2px;
}

.accent-box-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 120px 2rem;
    background: var(--blush-light);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header .section-eyebrow {
    margin-bottom: 0.75rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 4px;
    position: relative;
    transition: all 0.5s var(--ease-out);
    border: 1px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(123, 45, 59, 0.08);
    border-color: var(--line-strong);
}

.testimonial-quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--blush-mid);
    margin-bottom: 0.5rem;
}

.testimonial-text {
    font-size: 0.92rem;
    line-height: 1.85;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 1.75rem;
    font-style: italic;
}

.testimonial-divider {
    width: 32px;
    height: 1px;
    background: var(--burgundy);
    margin-bottom: 1.25rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-initial {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--burgundy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 400;
    flex-shrink: 0;
}

.author-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

.author-location {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 120px 2rem;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    pointer-events: none;
}

.cta-banner-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-title .accent-italic {
    font-style: italic;
    color: var(--blush);
}

.cta-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--burgundy);
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.4s var(--ease-out);
}

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

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    padding: 16px 28px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    transition: all 0.4s var(--ease-out);
}

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

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 120px 2rem;
    background: var(--cream);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-intro {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    flex-shrink: 0;
}

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

.detail-value {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);

