/* ============================================
   SANDTON HAIR TRANSPLANT CLINIC
   Main Stylesheet
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --ivory: #F8F6F1;
    --cream: #EDEAE3;
    --sage: #8B9A7D;
    --sage-dark: #6B7A5D;
    --sage-light: #A8B89A;
    --charcoal: #2C2C2C;
    --charcoal-light: #4A4A4A;
    --warm-gray: #9A9590;
    --gold: #B8A88A;
    --gold-light: #D4C4A8;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ivory);
    color: var(--charcoal);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
}

/* ---- Custom Cursor ---- */
.cursor {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--sage);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s, background 0.3s, border-color 0.3s;
    mix-blend-mode: difference;
}

.cursor.hover {
    transform: scale(2.2);
    background: rgba(139, 154, 125, 0.08);
    border-color: var(--gold);
}

.cursor-dot {
    width: 4px;
    height: 4px;
    background: var(--sage);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.05s;
}

/* ---- Loader ---- */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--ivory);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 1.5s cubic-bezier(0.65, 0, 0.35, 1), visibility 1.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-icon {
    width: 60px;
    height: 60px;
    position: relative;
    margin-bottom: 40px;
}

.loader-icon svg {
    width: 100%;
    height: 100%;
}

.loader-icon path {
    stroke: var(--sage);
    stroke-width: 1.5;
    fill: none;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLeaf 2s ease forwards;
}

@keyframes drawLeaf {
    to { stroke-dashoffset: 0; }
}

.loader-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    color: var(--charcoal);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.loader-line {
    width: 120px;
    height: 1px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.loader-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--sage);
    animation: loadProgress 2.2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ---- Navigation ---- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 28px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background 0.6s, padding 0.6s;
}

nav.scrolled {
    background: rgba(248, 246, 241, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 18px 60px;
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--charcoal);
    text-decoration: none;
    position: relative;
}

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

.nav-links {
    display: flex;
    gap: 45px;
    list-style: none;
}

.nav-links a {
    color: var(--charcoal-light);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    transition: color 0.4s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--sage);
    transition: width 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav-links a:hover {
    color: var(--sage-dark);
}

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

.nav-cta {
    padding: 12px 28px;
    border: 1px solid var(--sage);
    color: var(--sage-dark);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    background: transparent;
}

.nav-cta:hover {
    background: var(--sage);
    color: var(--ivory);
    border-color: var(--sage);
}

/* ============================================
   HERO SECTION - NEW VISUAL
   ============================================ */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ivory);
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--sage) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--sage) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 60px 80px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    padding-right: 20px;
}

.hero-tag {
    font-size: 0.7rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s 2.5s forwards;
}

.hero-tag::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--sage);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.2s 2.7s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--sage-dark);
    display: block;
}

.hero-subtitle {
    font-size: 1rem;
    line-height: 2;
    color: var(--warm-gray);
    max-width: 480px;
    margin-bottom: 45px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s 3s forwards;
}

.hero-cta-group {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s 3.3s forwards;
}

.hero-cta-primary {
    padding: 18px 45px;
    background: var(--sage);
    color: var(--ivory);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    border: 1px solid var(--sage);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--sage-dark);
    transition: left 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: -1;
}

.hero-cta-primary:hover::before {
    left: 0;
}

.hero-cta-primary:hover {
    border-color: var(--sage-dark);
}

.hero-cta-secondary {
    color: var(--charcoal-light);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: color 0.4s;
    white-space: nowrap;
}

.hero-cta-secondary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.4s;
    flex-shrink: 0;
}

.hero-cta-secondary:hover {
    color: var(--sage-dark);
}

.hero-cta-secondary:hover svg {
    transform: translateX(5px);
}

/* ---- HERO VISUAL: Hairline Growth Canvas ---- */
.hero-visual {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hairline-canvas {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 480px;
}

/* The scalp silhouette */
.scalp-silhouette {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 360px;
    border-radius: 50% 50% 45% 45% / 55% 55% 45% 45%;
    background: linear-gradient(180deg,
        rgba(139, 154, 125, 0.06) 0%,
        rgba(139, 154, 125, 0.02) 60%,
        rgba(139, 154, 125, 0.04) 100%);
    border: 1px solid rgba(139, 154, 125, 0.12);
    overflow: hidden;
}

.scalp-silhouette::before {
    content: '';
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 35%;
    border-top: 2px solid rgba(139, 154, 125, 0.25);
    border-radius: 50% 50% 0 0;
}

/* Hairline zone indicator */
.hairline-zone {
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 30px;
    border-bottom: 1px dashed rgba(139, 154, 125, 0.2);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 8px;
}

.hairline-zone span {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    opacity: 0.7;
}

/* Animated hair strands growing from the hairline */
.hero-strand {
    position: absolute;
    width: 1.5px;
    background: linear-gradient(to bottom,
        var(--sage) 0%,
        var(--sage-light) 40%,
        transparent 100%);
    border-radius: 1px;
    transform-origin: top center;
    opacity: 0;
    animation: strandGrow 2s ease forwards;
}

@keyframes strandGrow {
    0% {
        height: 0;
        opacity: 0;
    }
    20% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.7;
    }
}

/* Density dots representing follicles */
.follicle-dot {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--sage);
    border-radius: 50%;
    opacity: 0;
    animation: dotFadeIn 0.6s ease forwards;
}

@keyframes dotFadeIn {
    to { opacity: 0.4; }
}

/* Growth rings emanating outward */
.growth-ring-hero {
    position: absolute;
    border: 1px solid rgba(139, 154, 125, 0.08);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: ringPulse 4s ease infinite;
}

@keyframes ringPulse {
    0% {
        width: 200px;
        height: 200px;
        opacity: 0.3;
    }
    100% {
        width: 400px;
        height: 400px;
        opacity: 0;
    }
}

/* Floating stat cards */
.hero-stat {
    position: absolute;
    padding: 18px 24px;
    background: rgba(248, 246, 241, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 154, 125, 0.12);
    box-shadow: 0 8px 32px rgba(0,0,0,0.04);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards;
    z-index: 5;
}

.hero-stat .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--sage-dark);
    font-weight: 400;
    line-height: 1;
}

.hero-stat .stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-top: 6px;
}

.hero-stat-1 { top: 5%; right: 0; animation-delay: 3.5s; }
.hero-stat-2 { bottom: 15%; left: -10px; animation-delay: 3.9s; }
.hero-stat-3 { top: 50%; right: -20px; animation-delay: 4.3s; }

/* Before / After subtle indicator */
.before-after-line {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warm-gray);
    opacity: 0;
    animation: fadeUp 1s 4.5s forwards;
}

.before-after-line .line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--sage), transparent);
}

.before-after-line .line.right {
    background: linear-gradient(90deg, transparent, var(--sage));
}

/* ---- Scroll Hint ---- */
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 60px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    animation: fadeUp 1s 4s forwards;
}

.scroll-hint-text {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--warm-gray);
    writing-mode: vertical-rl;
}

.scroll-hint-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--sage), transparent);
    animation: scrollPulse 2.5s infinite;
}

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

/* ---- Philosophy Section ---- */
.philosophy {
    padding: 160px 60px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 154, 125, 0.2), transparent);
}

.philosophy-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.philosophy-label {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 25px;
}

.philosophy-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 35px;
}

.philosophy-title em {
    font-style: italic;
    color: var(--sage-dark);
}

.philosophy-text {
    font-size: 0.95rem;
    line-height: 2.2;
    color: var(--charcoal-light);
    font-weight: 300;
    margin-bottom: 30px;
}

.philosophy-signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--sage-dark);
}

.philosophy-visual {
    position: relative;
    height: 500px;
}

.scalp-diagram {
    width: 100%;
    height: 100%;
    position: relative;
}

.scalp-base {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 350px;
    border-radius: 50% 50% 45% 45%;
    background: linear-gradient(180deg,
        rgba(139, 154, 125, 0.08) 0%,
        rgba(139, 154, 125, 0.03) 100%);
    border: 1px solid rgba(139, 154, 125, 0.12);
}

.scalp-hairline {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 80px;
    border-top: 2px solid var(--sage);
    border-radius: 50% 50% 0 0;
    opacity: 0.4;
}

.density-dot {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--sage);
    border-radius: 50%;
    opacity: 0;
    animation: dotAppear 0.5s ease forwards;
}

@keyframes dotAppear {
    to { opacity: 0.5; }
}

/* ---- Services Section ---- */
.services {
    padding: 160px 60px;
    background: var(--ivory);
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 100px;
}

.services-label {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 20px;
}

.services-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--charcoal);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    padding: 50px 35px;
    border: 1px solid rgba(139, 154, 125, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    background: var(--ivory);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--sage);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.service-card:hover {
    border-color: rgba(139, 154, 125, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.04);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 30px;
    position: relative;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--sage);
    stroke-width: 1.2;
    fill: none;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 18px;
}

.service-desc {
    font-size: 0.88rem;
    line-height: 2;
    color: var(--warm-gray);
    font-weight: 300;
}

.service-list {
    margin-top: 25px;
    list-style: none;
}

.service-list li {
    font-size: 0.8rem;
    color: var(--charcoal-light);
    padding: 8px 0;
    border-bottom: 1px solid rgba(139, 154, 125, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--sage);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ---- Process Section ---- */
.process {
    padding: 160px 60px;
    background: var(--cream);
    position: relative;
}

.process-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 100px;
}

.process-label {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 20px;
}

.process-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--charcoal);
}

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

.process-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    padding: 50px 0;
    border-bottom: 1px solid rgba(139, 154, 125, 0.1);
    position: relative;
    transition: background 0.4s;
}

.process-step:hover {
    background: rgba(139, 154, 125, 0.02);
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 300;
    color: rgba(139, 154, 125, 0.2);
    line-height: 1;
    text-align: right;
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.step-content p {
    font-size: 0.9rem;
    line-height: 2;
    color: var(--warm-gray);
    font-weight: 300;
    max-width: 500px;
}

.step-duration {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    padding: 8px 16px;
    border: 1px solid rgba(139, 154, 125, 0.15);
}

/* ---- Trust Section ---- */
.trust {
    padding: 160px 60px;
    background: var(--ivory);
    position: relative;
}

.trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-label {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 20px;
}

.trust-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.5;
    color: var(--charcoal);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 80px;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.trust-stat {
    padding: 30px;
    border: 1px solid rgba(139, 154, 125, 0.1);
    transition: all 0.5s;
}

.trust-stat:hover {
    border-color: rgba(139, 154, 125, 0.25);
    background: rgba(139, 154, 125, 0.03);
}

.trust-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--sage-dark);
    font-weight: 400;
    margin-bottom: 10px;
}

.trust-stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

/* ---- Contact Section ---- */
.contact {
    padding: 160px 60px;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 154, 125, 0.2), transparent);
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.contact-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--ivory);
    margin-bottom: 50px;
    line-height: 1.2;
}

.contact-left h2 em {
    font-style: italic;
    color: var(--sage-light);
}

.contact-item {
    margin-bottom: 40px;
    padding-left: 30px;
    border-left: 1px solid rgba(139, 154, 125, 0.2);
}

.contact-item-label {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage-light);
    margin-bottom: 10px;
}

.contact-item-value {
    font-size: 1rem;
    color: var(--cream);
    line-height: 1.8;
    font-weight: 300;
}

.contact-item-value a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.4s;
    position: relative;
}

.contact-item-value a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--sage-light);
    transition: width 0.4s;
}

.contact-item-value a:hover {
    color: var(--sage-light);
}

.contact-item-value a:hover::after {
    width: 100%;
}

.contact-right {
    position: relative;
}

.contact-form {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(139, 154, 125, 0.1);
    padding: 50px;
}

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

.form-group label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage-light);
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(139, 154, 125, 0.2);
    color: var(--ivory);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.4s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--sage-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(248, 246, 241, 0.3);
}

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

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--sage);
    color: var(--ivory);
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: none;
    transition: all 0.5s;
    margin-top: 10px;
}

.form-submit:hover {
    background: var(--sage-light);
}

/* ---- Footer ---- */
footer {
    padding: 50px 60px;
    background: var(--charcoal);
    border-top: 1px solid rgba(139, 154, 125, 0.08);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: var(--ivory);
}

.footer-logo span {
    font-weight: 300;
    font-style: italic;
    color: var(--sage-light);
}

.footer-copy {
    font-size: 0.7rem;
    color: var(--warm-gray);
    letter-spacing: 0.1em;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--warm-gray);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.4s;
}

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

/* ---- Reveal Animation ---- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.65, 0, 0.35, 1),
                transform 1s cubic-bezier(0.65, 0, 0.35, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        padding: 140px 40px 80px;
    }

    .hero-left {
        padding-right: 0;
        order: 2;
    }

    .hero-visual {
        order: 1;
        height: 400px;
    }

    .hairline-canvas {
        max-width: 340px;
        height: 380px;
    }

    .scalp-silhouette {
        width: 240px;
        height: 300px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .philosophy-inner,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

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

    nav {
        padding: 20px 40px;
    }

    .philosophy, .services, .process, .trust, .contact {
        padding: 100px 40px;
    }

    .scroll-hint {
        left: 40px;
    }
}

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

    .hero-content {
        padding: 120px 24px 60px;
        gap: 40px;
    }

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

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-visual {
        height: 320px;
    }

    .hairline-canvas {
        max-width: 280px;
        height: 300px;
    }

    .scalp-silhouette {
        width: 200px;
        height: 260px;
    }

    .hero-stat {
        display: none;
    }

    .before-after-line {
        display: none;
    }

    .trust-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 20px;
        padding: 35px 0;
    }

    .step-duration {
        position: static;
        transform: none;
        margin-top: 15px;
        display: inline-block;
    }

    .footer-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .philosophy, .services, .process, .trust, .contact {
        padding: 80px 24px;
    }

    .contact-form {
        padding: 30px 24px;
    }

    .scroll-hint {
        display: none;
    }

    .cursor, .cursor-dot {
        display: none;
    }

    body {
        cursor: auto;
    }

    .form-submit {
        cursor: pointer;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-visual {
        height: 280px;
    }

    .hairline-canvas {
        max-width: 240px;
        height: 260px;
    }

    .scalp-silhouette {
        width: 180px;
        height: 230px;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .step-number {
        text-align: left;
        font-size: 2rem;
    }

    .service-card {
        padding: 35px 24px;
    }

    .trust-stat {
        padding: 20px;
    }

    .trust-stat-number {
        font-size: 2rem;
    }
}
