:root {
    --primary-gold: #d4a961;
    --primary-gold-dark: #b8924a;
    --bg-light: #faf7f4;
    --bg-lighter: #f7f2ec;
    --bg-dark: #0d0906;
    --bg-darker: #1a1a1a;
    --text-dark: #2a1f14;
    --text-medium: #5a4a35;
    --text-light: #8a7360;
    --text-white: #ffffff;
    --container-width: 1280px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
    --sans: 'Manrope', system-ui, -apple-system, sans-serif;
}


* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal-2);
    background: var(--ivory);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6  {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.1;
    color: var(--charcoal);
    margin: 0 0 .4em;
    letter-spacing: -.01em;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 48px;
    width: 100%;
}

img {
    max-width: 100%;
    display: block;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-gold-dark);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-label .line {
    width: 40px;
    height: 1px;
    background-color: var(--primary-gold);
}

.section-label.justify-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 48px;
    margin-bottom: 24px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.bg-dark .section-title {
    color: var(--text-white);
}

.bg-dark .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

/* ===== Header ===== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    /* background: #ffffff; */
    padding: 14px 0;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
}

/* Scroll ke baad */
.site-header.scrolled {
    background: #ffffff !important;
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin: 0;
    color: #111;
}

.logo span {
    font-size: 9px;
    letter-spacing: 2px;
    color: #c59d5f;
}

/* Nav */
.main-nav {
    display: flex;
    gap: 28px;
}

.main-nav a {
    text-decoration: none;
    font-size: 14px;
    color: #555;
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: #c59d5f;
    left: 0;
    bottom: -4px;
    transition: 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: #000;
}

/* Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    text-decoration: none;
    color: #555;
}

.phone-link img {
    width: 16px;
}

/* Button */
.btn-primary {
    background: #c59d5f;
    border: none;
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 4px;
}

.btn-primary:hover {
    background: #a67c3d;
}

/* Hamburger */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* ===== Mobile ===== */

@media (max-width: 992px) {

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 65px;
        left: -100%;
        width: 100%;
        background: #fff;
        flex-direction: column;
        text-align: center;
        padding: 25px 0;
        gap: 20px;
        transition: 0.3s;
    }

    .main-nav.active {
        left: 0;
    }

    .header-actions .phone-link {
        display: none;
    }
}

/* Prevent content overlap */
body {
    padding-top: 80px;
}


/* ===== Hero Section ===== */

.hero-section {
    padding: 70px 0 100px;
    background: linear-gradient(135deg, #faf7f4 0%, #f7f2ec 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 64px;
}

/* Content */
.hero-content {
    flex: 1;
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(212, 169, 97, 0.3);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    color: #b8924a;
    margin-bottom: 24px;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background-color: #b8924a;
    border-radius: 50%;
}

/* Title */
.hero-title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #111;
}

/* Subtitle */
.hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    max-width: 450px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Features */
.hero-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-item .icon-wrapper {
    width: 32px;
    height: 32px;
    background: rgba(184, 146, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item span {
    font-size: 14px;
    color: #555;
}

/* Image */
.hero-image-wrapper {
    flex: 1;
    position: relative;
}

.hero-image-inner {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-img {
    width: 100%;
    display: block;
}

/* Overlay */
.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
}

/* Badge */
.satisfaction-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 12px;
    align-items: center;
}

.satisfaction-badge .stars {
    color: #f5b301;
}

.satisfaction-badge strong {
    font-size: 14px;
}

.satisfaction-badge span {
    font-size: 12px;
    color: #777;
}

/* Years Badge */
.years-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background: #b8924a;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.years-badge strong {
    font-size: 18px;
}

.years-badge span {
    font-size: 11px;
}

/* ========================= */
/* 📱 Tablet */
/* ========================= */

@media (max-width: 992px) {

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .satisfaction-badge {
        left: 10px;
        bottom: 10px;
    }
}

/* ========================= */
/* 📱 Mobile */
/* ========================= */

@media (max-width: 576px) {

    .hero-section {
        padding: 140px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
    }

    .years-badge {
        width: 60px;
        height: 60px;
        top: -15px;
    }

    .satisfaction-badge {
        flex-direction: column;
        text-align: center;
        padding: 12px;
    }
}

/* ===== Features Banner ===== */

.features-banner {
    background: linear-gradient(90deg, #2a1f14 0%, #3d2e1a 50%, #2a1f14 100%);
    padding: 40px 0;
    color: white;
}

/* Grid Layout */
.features-banner-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 5 items in one row */
    gap: 20px;
    align-items: center;
}

/* Item */
.banner-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Icon */
.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(212, 169, 97, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box img {
    width: 18px;
}

/* Text */
.text-box strong {
    font-size: 14px;
    font-weight: 500;
}

.text-box span {
    font-size: 12px;
    color: #a8906a;
}

/* ========================= */
/* 📱 Tablet */
/* ========================= */
@media (max-width: 992px) {
    .features-banner-inner {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }

    .banner-item {
        flex-direction: column;
    }
}

/* ========================= */
/* 📱 Mobile */
/* ========================= */
@media (max-width: 576px) {
    .features-banner-inner {
        grid-template-columns: 1fr;
    }
}


/* ===== Our Story ===== */

.our-story-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.story-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Content */
.story-content {
    flex: 1;
    max-width: 552px;
}

.story-desc {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.7;
}

/* List */
.story-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.story-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-medium);
}

.list-icon {
    margin-top: 3px;
    flex-shrink: 0;
}

/* Image */
.story-image-wrapper {
    flex: 1;
    position: relative;
}

.story-image-inner {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(100, 70, 30, 0.15);
    position: relative;
}

.story-image-inner::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: rgba(212, 169, 97, 0.08);
    border-radius: 20px;
    z-index: -1;
}

.story-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Badge */
.floating-badge {
    position: absolute;
    top: 30px;
    right: -25px;
    background: rgba(255, 255, 255, 0.95);
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.floating-badge strong {
    font-size: 20px;
    color: var(--primary-gold-dark);
}

.floating-badge span {
    font-size: 13px;
    color: var(--text-light);
}

.link-with-arrow {
    background: #a67c3d;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    /* clean subtle radius */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover effect */
.link-with-arrow:hover {
    background: #8c652f;
    transform: translateY(-2px);
}

/* ========================= */
/* 📱 Tablet */
/* ========================= */
@media (max-width: 992px) {

    .story-container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .story-content {
        max-width: 100%;
    }

    .story-list {
        align-items: center;
    }

    .story-list li {
        justify-content: center;
        text-align: left;
    }

    .floating-badge {
        right: 20px;
        top: 20px;
    }
}

/* ========================= */
/* 📱 Mobile */
/* ========================= */
@media (max-width: 576px) {

    .our-story-section {
        padding: 60px 0;
    }

    .story-container {
        gap: 40px;
    }

    .story-desc {
        font-size: 14px;
    }

    .story-list li {
        font-size: 14px;
    }

    .story-image-inner {
        border-radius: 20px;
    }

    .story-image-inner::before {
        display: none;
    }

    .floating-badge {
        position: static;
        /* important fix */
        margin-top: 15px;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .floating-badge strong {
        font-size: 18px;
    }
}


/* CSS for section section:Specialists */
.specialists-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-header {
    margin-bottom: 64px;
}

.specialists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.specialist-card {
    background: #fff;
    border-radius: 28px;
    border: 1px solid #e8d9c5;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(100, 70, 30, 0.07);
    transition: transform 0.3s ease;
}

.specialist-card:hover {
    transform: translateY(-10px);
}

.card-img-wrapper {
    position: relative;
    height: 288px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(42, 31, 20, 0.6) 0%, transparent 50%);
}

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(184, 146, 74, 0.69);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 100px;
}

.card-rating {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.card-hover-action {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
}

.specialist-card:hover .card-hover-action {
    opacity: 1;
}

.btn-view-profile {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 14px;
}

.card-info {
    padding: 20px;
}

.card-info h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.card-info .role {
    font-size: 14px;
    color: var(--primary-gold-dark);
    margin-bottom: 12px;
}

.card-info .quals {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 20px;
    min-height: 40px;
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #f0e8dc;
}

.stat-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-col strong {
    font-size: 14px;
    color: var(--primary-gold-dark);
}

.stat-col span {
    font-size: 12px;
    color: #a08060;
}

.stats-row .divider {
    width: 1px;
    height: 24px;
    background-color: #e8d9c5;
}

.profile-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: var(--primary-gold-dark);
    font-weight: 500;
}

.specialists-banner {
    background: linear-gradient(90deg, #f7f2ec 0%, #faf7f4 100%);
    border: 1px solid #e0c9a8;
    border-radius: 28px;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.avatars {
    display: flex;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -12px;
    object-fit: cover;
}

.avatar:first-child {
    margin-left: 0;
}

.banner-text strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.banner-text p {
    font-size: 14px;
    color: var(--text-light);
}

@media (max-width: 1200px) {
    .specialists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .specialists-grid {
        grid-template-columns: 1fr;
    }

    .specialists-banner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .banner-content {
        flex-direction: column;
    }
}


/* CSS for section section:Treatments */
.treatments-section {
    padding: 112px 0;
    background-color: var(--bg-lighter);
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.treatment-card {
    background: #fff;
    border-radius: 28px;
    border: 1px solid #e8d9c5;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(100, 70, 30, 0.08);
    display: flex;
    flex-direction: column;
}

.treatment-card .card-img {
    position: relative;
    height: 224px;
}

.treatment-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.treatment-card .card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(42, 31, 20, 0.6) 0%, transparent 50%);
}

.treatment-card .card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 100px;
}

.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.icon-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.icon-wrap {
    width: 32px;
    height: 32px;
    background: rgba(184, 146, 74, 0.09);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-title h3 {
    font-size: 20px;
    color: var(--text-dark);
}

.card-content .subtitle {
    font-size: 14px;
    color: var(--primary-gold-dark);
    margin-bottom: 16px;
}

.card-content .desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
    flex: 1;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.tags span {
    font-size: 12px;
    color: var(--primary-gold-dark);
    background: rgba(184, 146, 74, 0.03);
    border: 1px solid rgba(184, 146, 74, 0.25);
    padding: 4px 10px;
    border-radius: 100px;
}

.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--primary-gold-dark);
    font-weight: 500;
}

.btn-outline {
    background: #a67c3d;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

@media (max-width: 1200px) {
    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .treatments-grid {
        grid-template-columns: 1fr;
    }
}


.results-section {
    padding: 40px 0;
    background: #f6f3ef;
}

.section-title {
    font-size: 40px;
}

.section-title span {
    color: #b8924a;
}

.section-desc {
    color: #777;
    margin-bottom: 50px;
}

/* Layout */
.results-content {
    display: flex;
    gap: 60px;
}

.slider-container {
    flex: 1;
}

/* Slider */
.slider-images {
    position: relative;
    height: 420px;
    border-radius: 25px;
    overflow: hidden;
    cursor: ew-resize;
}

.img-before,
.img-after {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-after-wrapper {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #fff;
    transform: translateX(-50%);
    z-index: 10;
}

/* Circle FIX */
.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* Icon inside */
.handle-circle img {
    width: 16px;
    height: 16px;
}

/* Labels */
.label-before,
.label-after {
    position: absolute;
    bottom: 20px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: #fff;
}

.label-before {
    left: 20px;
    background: #444;
}

.label-after {
    right: 20px;
    background: #b8924a;
}

.slider-hint {
    text-align: center;
    margin-top: 10px;
    color: #777;
}

/* Sidebar */
.results-sidebar {
    width: 340px;
}

.case-title {
    font-size: 12px;
    letter-spacing: 2px;
    color: #b8924a;
    margin-bottom: 15px;
}

.case-item {
    display: flex;
    justify-content: space-between;
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    background: #fff;
}

.case-item.active {
    border: 1px solid #b8924a;
    background: #faf6ef;
}

.case-item h4 {
    font-size: 15px;
}

.case-item span {
    font-size: 11px;
    color: #999;
}

.case-time {
    background: #f2e7d3;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
}

/* Track Record */
.track-record {
    margin-top: 30px;
    background: #1c140c;
    color: #fff;
    padding: 20px;
    border-radius: 16px;
}

.track-record h5 {
    color: #b8924a;
    margin-bottom: 15px;
}

.stat-box {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.stat-box strong {
    color: #b8924a;
}

/* Responsive */
@media(max-width: 992px) {
    .results-content {
        flex-direction: column;
    }

    .results-sidebar {
        width: 100%;
    }

    .slider-images {
        height: 300px;
    }
}

@media(max-width: 576px) {
    .section-title {
        font-size: 28px;
    }
}

.testimonials-section {
    padding: 112px 0;
    background-color: #1a1a1a;
    color: #fff;
}

.testimonial-slider {
    max-width: 896px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 56px;
    backdrop-filter: blur(4px);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

/* Slider fix */
.slides {
    position: relative;
}

.testimonial-card {
    display: none;
}

.testimonial-card.active {
    display: block;
}

.client-thumb {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 16px;
}

/* Text */
.quote {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.client-info {
    display: flex;
    gap: 16px;
    align-items: center;
}

.client-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

/* Controls */
.slider-controls {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    width: 32px;
    background: gold;
    border-radius: 20px;
}

.arrows {
    display: flex;
    gap: 12px;
}

.arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.arrow-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Bottom */
.other-clients {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
    max-width: 896px;
    margin-left: auto;
    margin-right: auto;
}


.client-thumb {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 16px;
}

/* Responsive */
@media(max-width:768px) {
    .testimonial-slider {
        padding: 30px 20px;
    }

    .quote {
        font-size: 18px;
    }

    .other-clients {
        grid-template-columns: repeat(2, 1fr);
    }
}

.space-section {
    padding: 112px 0;
    background: #0d0906;
    color: #fff;
}

.space-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
}

.space-controls {
    display: flex;
    gap: 12px;
}

/* 🔥 Slider Wrapper */
.space-grid-wrapper {
    overflow: hidden;
}

/* 🔥 Slider */
.space-grid {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

/* Card */
.space-item {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    height: 320px;
    min-width: calc(25% - 18px);
    flex-shrink: 0;
}

.space-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.space-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.1),
            transparent);
}

.space-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 100px;
}

.space-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.space-info h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
}

.space-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Arrows */
.arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
    .space-item {
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 576px) {
    .space-item {
        min-width: 100%;
    }
}


/* CSS for section section:Booking */
.booking-section {
    padding: 112px 0;
    background-color: var(--bg-dark);
    color: #fff;
}

.booking-container {
    max-width: 800px;
}

.booking-header {
    margin-bottom: 64px;
}

.booking-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 56px 40px;
    backdrop-filter: blur(4px);
}

.form-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

.step.active .step-circle {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.step span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.step.active span {
    color: var(--primary-gold);
}

.step-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 16px;
    margin-bottom: 20px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 16px;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-family: var(--font-body);
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.input-wrapper img {
    position: absolute;
    right: 16px;
}

.form-actions {
    margin-top: 16px;
    display: flex;
    justify-content: center;
}

.confidential-note {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
    margin-top: 32px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

#prevBtn {
    display: none;
    margin-right: 10px;
}

select {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 16px;
    border-radius: 8px;
    color: #000000;
    font-size: 16px;
    appearance: none;
}


textarea {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 16px;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-family: var(--font-body);
    resize: none;
}

textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-group {
    position: relative;
}

.form-group select {
    background-image: url("/assets/images/arrow-down.svg");
    /* apna icon */
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
}

/* DATE FIX */
input[type="date"] {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 16px;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
}

/* calendar icon white */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* focus */
select:focus,
input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form-wrapper {
        padding: 32px 20px;
    }
}


/* CTA SECTION */
.cta-section {
    padding: 0 0 112px;
    background-color: var(--bg-dark);
    color: #fff;
}

/* CONTAINER */
.cta-container {
    display: flex;
    align-items: center;
    /* vertical center fix */
    justify-content: space-between;
    gap: 80px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 72px 64px;
}

/* LEFT CONTENT */
.cta-content {
    flex: 1;
    max-width: 580px;
}

.cta-content .section-title {
    margin-bottom: 20px;
}

.cta-content .section-desc {
    margin-bottom: 32px;
    line-height: 1.7;
}

/* BUTTONS */
.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* RIGHT SIDE */
.cta-info {
    flex: 1;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 64px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

/* ICON */
.info-item .icon {
    min-width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(212, 169, 97, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TEXT */
.info-item strong {
    display: block;
    font-size: 16px;
    color: #fff;
    margin-bottom: 4px;
}

.info-item span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.cta-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 52px;
    padding: 0 22px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: #b8924a;
    color: #fff;
    border: none;
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    background: transparent;
}

.btn img {
    width: 16px;
    height: 16px;
}

.btn-outline-light img {
    margin-right: 6px;
}

@media (max-width: 992px) {
    .cta-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 48px;
        padding: 48px 32px;
    }

    .cta-info {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-left: 0;
        padding-top: 40px;
        width: 100%;
        max-width: 100%;
    }

    .cta-content {
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .cta-container {
        padding: 32px 20px;
        border-radius: 24px;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .info-item {
        align-items: center;
    }

    .info-item .icon {
        width: 40px;
        height: 40px;
    }
}


/* SECTION */
.faq-section {
  padding: 112px 0;
  background-color: var(--bg-light);
}

.faq-container {
  max-width: 800px;
}

/* LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ITEM */
.faq-item {
  background: #fff;
  border: 1px solid #e8d9c5;
  border-radius: 16px;
  padding: 24px 28px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(212, 169, 97, 0.4);
}

.faq-item.active {
  border-color: rgba(212, 169, 97, 0.6);
  box-shadow: 0 6px 20px rgba(184, 146, 74, 0.1);
}

/* QUESTION */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  font-size: 18px;
  color: var(--text-dark);
  font-weight: 500;
}

/* ICON */
.faq-icon {
  font-size: 22px;
  color: var(--primary-gold-dark);
  transition: transform 0.3s ease;
}

/* ROTATE ICON */
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* ANSWER ANIMATION */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e8d9c5;
}

/* TEXT */
.faq-answer p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq-section {
    padding: 72px 0;
  }

  .faq-item {
    padding: 20px;
  }

  .faq-question h3 {
    font-size: 16px;
  }
}


 /* CSS for section section:Footer */
    .site-footer {
      background-color: #0d0906;
      color: #fff;
      padding-top: 80px;
      position: relative;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      gap: 64px;
      margin-bottom: 80px;
    }

    .footer-brand {
      max-width: 260px;
    }

    .footer-brand .logo h2 {
      font-size: 32px;
      margin-bottom: 4px;
      color: #fff;
    }

    .footer-brand .logo span {
      font-size: 11px;
      letter-spacing: 2px;
      color: var(--primary-gold);
    }

    .footer-brand p {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.45);
      margin-top: 24px;
      margin-bottom: 32px;
    }

    .social-links {
      display: flex;
      gap: 12px;
    }

    .social-links a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
    }

    .social-links a:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .footer-links {
      display: flex;
      gap: 80px;
      flex: 1;
      justify-content: flex-end;
    }

    .link-group h4 {
      font-size: 16px;
      color: var(--primary-gold);
      font-family: var(--font-body);
      font-weight: 500;
      margin-bottom: 24px;
    }

    .link-group ul {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .link-group a,
    .link-group p {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.5);
      transition: color 0.3s;
    }

    .link-group a:hover {
      color: var(--primary-gold);
    }

    .link-group li span {
      display: block;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.3);
      margin-bottom: 4px;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 32px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-bottom p {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.25);
    }

    .legal-links {
      display: flex;
      gap: 24px;
    }

    .legal-links a {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.25);
    }

    .legal-links a:hover {
      color: #fff;
    }

    .built-with {
      position: absolute;
      bottom: 24px;
      right: 24px;
      background: #1a1a1a;
      padding: 8px 12px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: #fff;
    }

    @media (max-width: 992px) {
      .footer-top {
        flex-direction: column;
      }

      .footer-links {
        justify-content: flex-start;
        flex-wrap: wrap;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
      }
    }
    
    
    :root {
    --ivory: #faf6f0;
    --ivory-2: #f3ede2;
    --rose: #ead6c6;
    --rose-soft: #f5e6d8;
    --charcoal: #1a1814;
    --charcoal-2: #2a2620;
    --muted: #6b6259;
    --line: #e4dccf;
    --gold: #b8965a;
    --gold-deep: #8a6e3c;
    --gold-soft: #d4b787;
    --white: #ffffff;

    --radius-sm: 8px;
    --radius: 18px;
    --radius-lg: 28px;

    --shadow-1: 0 1px 2px rgba(26, 24, 20, .04), 0 8px 24px rgba(26, 24, 20, .06);
    --shadow-2: 0 4px 12px rgba(26, 24, 20, .08), 0 24px 60px rgba(26, 24, 20, .10);

    --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
    --sans: 'Manrope', system-ui, -apple-system, sans-serif;
}


/* =============================================================
   PAGE HERO  
   ============================================================= */

.page-hero {
    position: relative;
    padding: clamp(80px, 11vw, 150px) 0 clamp(60px, 8vw, 110px);
    background:
        radial-gradient(circle at 85% 20%, var(--rose-soft) 0%, transparent 45%),
        radial-gradient(circle at 10% 85%, var(--ivory-2) 0%, transparent 50%),
        var(--ivory);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(184, 150, 90, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 150, 90, .06) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    pointer-events: none;
}

.page-hero__inner {
    position: relative;
    max-width: 1100px;
}

.page-hero__title {
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 300;
}

.page-hero__title em {
    font-weight: 400;
}

.page-hero__lead {
    font-size: 1.15rem;
    max-width: 640px;
    color: var(--charcoal-2);
    margin-top: 1.5rem;
}

.page-hero__crumbs {
    display: inline-flex;
    gap: .5rem;
    align-items: center;
    font-size: .8rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.page-hero__crumbs a:hover {
    color: var(--gold-deep);
}

.page-hero__crumbs span {
    color: var(--gold);
}

/* decorative floating tag */
.page-hero__pill {
    position: absolute;
    right: 5%;
    top: 30%;
    display: none;
    padding: 1.2rem 1.6rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-2);
    border: 1px solid var(--line);
    text-align: center;
}

.page-hero__pill strong {
    display: block;
    font-family: var(--serif);
    font-size: 2.2rem;
    color: var(--gold-deep);
}

.page-hero__pill span {
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
}

@media (min-width: 980px) {
    .page-hero__pill {
        display: block;
    }
}


/* =============================================================
   ABOUT PAGE
   ============================================================= */

section.section.section--ivory {
    padding: 70px 0px;
}

.story {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
}

.story__img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(160deg, var(--rose) 0%, var(--rose-soft) 50%, var(--ivory-2) 100%);
    box-shadow: var(--shadow-2);
}

.story__img::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(184, 150, 90, .25), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, .4), transparent 50%);
}

.story__img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(26, 24, 20, .85);
    backdrop-filter: blur(10px);
    color: var(--ivory);
    padding: 1.2rem 1.4rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.story__img-badge strong {
    font-family: var(--serif);
    font-size: 2.2rem;
    color: var(--gold-soft);
    display: block;
    line-height: 1;
}

.story__img-badge span {
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .85;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--sans);
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 600;
    padding: .35rem 0;
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: #b8965a;
}

.story__title {
    font-size: 50px;
    font-weight: 300;
}

.story__title em {
    font-weight: 400;
}

.story__text p {
    font-size: 1.02rem;
    color: var(--charcoal-2);
    margin-bottom: 1.1rem;
}

.story__text strong {
    color: var(--charcoal);
    font-weight: 600;
}

.btn--gold {
    background: var(--charcoal);
    color: var(--ivory);
}

.btn--gold:hover {
    background: var(--gold-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-2);
    color: #fff;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .95rem 1.6rem;
    font-family: var(--sans);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .04em;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    transition: all .25s ease;
}

/* Values grid */
section.section.values {
    padding: 40px 0px;
}

.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.value {
    padding: 2rem 1.6rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.value:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2);
    border-color: var(--gold-soft);
}

.value__num {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--gold-deep);
    display: block;
    margin-bottom: .5rem;
}

.value h3 {
    font-size: 1.2rem;
    margin-bottom: .4rem;
}

.value p {
    font-size: .92rem;
    margin: 0;
}

/* Timeline / Journey */

section.section.section--cream {
    padding: 40px 0px;
    background: var(--ivory-2);
}

.timeline {
    position: relative;
    margin-top: 3rem;
    padding-left: 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: var(--line);
}

.timeline__item {
    position: relative;
    padding-left: 48px;
    padding-bottom: 2.4rem;
}

.timeline__item::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--ivory);
    border: 2px solid var(--gold);
}

.timeline__year {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--gold-deep);
    display: block;
}

.timeline__title {
    font-size: 1.1rem;
    margin: .2rem 0 .4rem;
}

.timeline__item p {
    margin: 0;
}


/* Stat band */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0;
    border-top: 1px solid rgba(250, 246, 240, .12);
    border-bottom: 1px solid rgba(250, 246, 240, .12);
    background:
        linear-gradient(rgba(26, 24, 20, .6), rgba(26, 24, 20, .6)),
        radial-gradient(circle at 20% 30%, var(--gold-deep) 0%, transparent 60%);
    background-color: var(--charcoal);
}

.stats__item {
    padding: 3.4rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(250, 246, 240, .08);
    color: var(--ivory);
}

.stats__item:last-child {
    border-right: 0;
}

.stats__num {
    display: block;
    font-family: var(--serif);
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--gold-soft);
    line-height: 1;
}

.stats__label {
    font-size: .78rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-top: .8rem;
    opacity: .8;
}


/* Team preview */
section.section.team {
    padding: 40px 0px;
}

.team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.team__card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--ivory-2);
    aspect-ratio: 3/4;
}

.team__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26, 24, 20, .85) 100%);
    z-index: 1;
}

.team__card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--rose-soft), var(--rose), var(--ivory-2));
}

.team__card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(6px);
    padding: .35rem .7rem;
    border-radius: 999px;
    font-size: .7rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 600;
}

.team__card-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.4rem;
    color: var(--ivory);
}

.team__card-info h3 {
    color: var(--ivory);
    font-size: 1.3rem;
    margin-bottom: .15rem;
}

.team__card-info span {
    font-size: .82rem;
    opacity: .85;
    letter-spacing: .04em;
}


/* =============================================================
   SERVICES PAGE
   ============================================================= */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.svc-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2);
    border-color: var(--gold-soft);
}

.svc-card__media {
    height: 220px;
    background: linear-gradient(135deg, var(--rose-soft), var(--rose));
    position: relative;
    overflow: hidden;
}

.svc-card__media::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, .45), transparent 55%),
        radial-gradient(circle at 75% 70%, rgba(184, 150, 90, .3), transparent 55%);
}

.svc-card__tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(26, 24, 20, .85);
    color: var(--gold-soft);
    padding: .35rem .8rem;
    border-radius: 999px;
    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 600;
}

.svc-card__icon {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-size: 1.6rem;
    color: var(--gold-deep);
    box-shadow: var(--shadow-1);
}

.svc-card__body {
    padding: 1.8rem;
}

.svc-card__sub {
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 600;
    display: block;
    margin-bottom: .5rem;
}

.svc-card__title {
    font-size: 1.45rem;
    margin-bottom: .5rem;
}

.svc-card__body p {
    font-size: .94rem;
    margin-bottom: 1.2rem;
}

.svc-card__pills {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: 1.4rem;
}

.svc-card__pills span {
    font-size: .74rem;
    padding: .3rem .7rem;
    background: var(--ivory-2);
    border-radius: 999px;
    color: var(--charcoal-2);
}

.svc-card__link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--charcoal);
    padding-bottom: .25rem;
    border-bottom: 1px solid var(--gold);
    transition: gap .25s ease, color .25s ease;
}

.svc-card__link:hover {
    gap: .9rem;
    color: var(--gold-deep);
}

/* Detailed service rows */
.svc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
    padding: clamp(60px, 8vw, 110px) 0;
    border-bottom: 1px solid var(--line);
}

.svc-row:nth-child(even) .svc-row__media {
    order: 2;
}

.svc-row:last-child {
    border-bottom: 0;
}

.svc-row__media {
    border-radius: var(--radius-lg);
    aspect-ratio: 5/4;
    background: linear-gradient(160deg, var(--rose-soft) 0%, var(--rose) 100%);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2);
}

.svc-row__media::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 30%, rgba(255, 255, 255, .45), transparent 50%),
        radial-gradient(circle at 80% 75%, rgba(184, 150, 90, .35), transparent 55%);
}

.svc-row__media span {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background: rgba(255, 255, 255, .9);
    color: var(--gold-deep);
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 600;
    padding: .5rem .9rem;
    border-radius: 999px;
}

.svc-row__title {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 300;
}

.svc-row__title em {
    font-weight: 400;
}

.svc-row__list {
    margin: 1.6rem 0;
    display: grid;
    gap: .8rem;
}

.svc-row__list li {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    font-size: .96rem;
    color: var(--charcoal-2);
}

.svc-row__list li::before {
    content: '';
    flex: none;
    margin-top: .55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

/* Process / Approach steps */
.process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    margin-top: 3rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
}

.process__step {
    padding: 2.2rem 1.8rem;
    border-right: 1px solid var(--line);
    transition: background .25s ease;
}

.process__step:last-child {
    border-right: 0;
}

.process__step:hover {
    background: var(--ivory);
}

.process__num {
    font-family: var(--serif);
    font-size: 2.6rem;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 1rem;
}

.process__step h3 {
    font-size: 1.15rem;
    margin-bottom: .4rem;
}

.process__step p {
    font-size: .9rem;
    margin: 0;
}

/* =============================================================
   CTA STRIP
   ============================================================= */
.cta-strip {
    background:
        linear-gradient(rgba(26, 24, 20, .92), rgba(26, 24, 20, .92)),
        radial-gradient(circle at 80% 20%, var(--gold-deep) 0%, transparent 50%);
    background-color: var(--charcoal);
    color: var(--ivory);
    padding: clamp(70px, 9vw, 120px) 0;
}

.cta-strip__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.cta-strip__title {
    color: var(--ivory);
    font-size: clamp(1.8rem, 3.6vw, 3rem);
    font-weight: 300;
}

.cta-strip__title em {
    color: var(--gold-soft);
}

.cta-strip__text p {
    color: rgba(250, 246, 240, .75);
    max-width: 520px;
}

.cta-strip__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    justify-content: flex-end;
}

.cta-strip .btn--gold {
    background: var(--gold);
    color: var(--charcoal);
}

.cta-strip .btn--gold:hover {
    background: var(--gold-soft);
}

.cta-strip .btn--ghost {
    border-color: rgba(250, 246, 240, .25);
    color: var(--ivory);
}

.cta-strip .btn--ghost:hover {
    border-color: var(--gold);
}

div#jr {
    margin-top: 150px;
}