/* ════════════════════════════════════════════════
   ULTRA WELLNESS — Premium Design System
   ════════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
    /* Palette — warm neutrals */
    --color-bg: #FAF8F5;
    --color-bg-cream: #F3EDE7;
    --color-bg-warm: #EDE6DD;
    --color-bg-stone: #E5DDD3;
    --color-surface: #FFFFFF;
    --color-text: #1A1A1A;
    --color-text-soft: #4A4541;
    --color-text-muted: #8A8279;
    --color-accent: #B9A88D;
    --color-accent-dark: #9C8B70;
    --color-gold: #C5A96A;
    --color-gold-soft: rgba(197, 169, 106, 0.12);
    --color-border: #E2DAD0;
    --color-border-light: #EDE8E1;

    /* Typography */
    --font-serif: 'Cormorant Garamond', 'Georgia', serif;
    --font-sans: 'Inter', -apple-system, 'Segoe UI', sans-serif;

    /* Sizing */
    --container: 1200px;
    --container-sm: 800px;
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 0.4s;
}

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

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.15;
}

::selection {
    background-color: var(--color-gold-soft);
    color: var(--color-text);
}


/* ─── Container ─── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 48px);
}


/* ─── Sections ─── */
.section {
    padding: clamp(80px, 10vw, 140px) 0;
}

.section--cream {
    background-color: var(--color-bg-cream);
}

.section__label {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent-dark);
    margin-bottom: 20px;
}

.section__title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.section__title--center {
    text-align: center;
}

.section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section__header .section__label {
    text-align: center;
}

.section__desc {
    font-size: 16px;
    color: var(--color-text-soft);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto;
}


/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    white-space: nowrap;
}

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

.btn--primary:hover {
    background-color: var(--color-accent-dark);
    color: var(--color-surface);
    border-color: var(--color-accent-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.btn--ghost:hover {
    background-color: var(--color-accent-dark);
    color: var(--color-surface);
    border-color: var(--color-accent-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn--subtle {
    background: transparent;
    color: var(--color-text);
    padding: 8px 0;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
}

.btn--subtle:hover {
    border-bottom-color: var(--color-accent-dark);
    color: var(--color-accent-dark);
}

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


/* ════════════════════════════════════════════════
   TOP BAR
   ════════════════════════════════════════════════ */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: #EDE3D5;
    color: var(--color-text);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.top-bar__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 8px clamp(20px, 5vw, 48px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar__container span {
    color: var(--color-text-soft);
}

.top-bar__container a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: opacity var(--duration) var(--ease);
}

.top-bar__container a:hover {
    opacity: 0.7;
}


/* ════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    background: rgba(237, 227, 213, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s var(--ease);
}

.nav.scrolled {
    background: rgba(237, 227, 213, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 1px 0 var(--color-border-light);
}

.nav__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nav__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-decoration: none;
    transition: opacity var(--duration) var(--ease);
}

.nav__logo:hover {
    opacity: 0.7;
}

.nav__logo-ultra {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0;
    color: #000000;
    line-height: 1;
}

.nav__logo-wellness {
    font-family: var(--font-sans);
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #000000;
    line-height: 1;
    margin-top: -2px;
}

/* Nav Links */
.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__links li a {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-soft);
    padding: 8px 0;
    transition: all var(--duration) var(--ease);
    position: relative;
    opacity: 0.7;
}

.nav__links li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-text);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--duration) var(--ease);
    opacity: 0.4;
}

.nav__links li a:hover,
.nav__links li a.active {
    color: var(--color-text);
    opacity: 1;
}

.nav__links li a:hover::after,
.nav__links li a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.has-dropdown > a svg {
    margin-left: 4px;
    vertical-align: middle;
    transition: transform var(--duration) var(--ease);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--color-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-width: 240px;
    padding: 16px 0;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration) var(--ease);
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.has-dropdown:hover > a svg {
    transform: rotate(180deg);
}

.dropdown-menu a {
    padding: 10px 24px !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
    font-size: 14px !important;
    color: var(--color-text) !important;
    opacity: 0.7 !important;
}

.dropdown-menu a::after {
    display: none !important;
}

.dropdown-menu a:hover {
    opacity: 1 !important;
    background: rgba(0, 0, 0, 0.02);
}

/* Nav CTA */
.nav__cta {
    background-color: var(--color-text) !important;
    color: var(--color-bg) !important;
    padding: 10px 24px !important;
    border-radius: 50px;
    font-size: 11px !important;
    letter-spacing: 1.5px !important;
    transition: all var(--duration) var(--ease) !important;
}

.nav__cta::after {
    display: none !important;
}

.nav__cta:hover {
    background-color: var(--color-accent-dark) !important;
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--color-text);
    transition: all 0.3s var(--ease);
    display: block;
}

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

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

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


/* ════════════════════════════════════════════════
   HERO — Home Page
   ════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 100px;
}

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

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center; /* Anchors the image to the left to keep the sign visible on mobile */
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.12);
    }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
            rgba(250, 248, 245, 0.05) 0%,
            rgba(250, 248, 245, 0.2) 40%,
            rgba(250, 248, 245, 0.6) 75%,
            rgba(250, 248, 245, 0.95) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
}

.hero__badge {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent-dark);
    margin-bottom: 32px;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(48px, 7vw, 84px);
    font-weight: 500;
    line-height: 1.05;
    color: var(--color-text);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.hero__title-line {
    display: block;
}

.hero__title-amp {
    display: block;
    font-style: italic;
    font-size: 0.6em;
    color: var(--color-accent-dark);
    margin: 4px 0;
}

.hero__line {
    width: 60px;
    height: 1px;
    background: var(--color-accent);
    margin: 0 auto 24px;
}

.hero__subtitle {
    font-family: var(--font-sans);
    font-size: clamp(15px, 1.6vw, 17px);
    font-weight: 300;
    color: var(--color-text-soft);
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero__subtitle--editorial {
    font-family: var(--font-sans);
    font-size: clamp(10px, 1.2vw, 13px);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text);
    opacity: 0.8;
    margin-bottom: 48px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: var(--color-accent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

.desktop-only {
    display: none;
}

@media (min-width: 768px) {
    .desktop-only {
        display: inline;
    }
}


/* ════════════════════════════════════════════════
   PAGE HERO — Interior Pages
   ════════════════════════════════════════════════ */
.page-hero {
    padding: clamp(140px, 18vw, 200px) 0 clamp(60px, 8vw, 100px);
    text-align: center;
    background: linear-gradient(180deg, var(--color-bg-cream) 0%, var(--color-bg) 100%);
    position: relative;
}

.page-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.page-hero__desc {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 300;
    color: var(--color-text-soft);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Peptide Hero — with background image */
.page-hero--peptide {
    position: relative;
    padding: clamp(160px, 20vw, 240px) 0 clamp(80px, 10vw, 120px);
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
            rgba(250, 248, 245, 0.5) 0%,
            rgba(250, 248, 245, 0.75) 50%,
            rgba(250, 248, 245, 0.95) 100%);
}

.page-hero__inner {
    position: relative;
    z-index: 2;
}

.page-hero__tagline {
    font-family: var(--font-serif);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 400;
    font-style: italic;
    color: var(--color-accent-dark);
    margin-top: 4px;
}


/* ════════════════════════════════════════════════
   ABOUT INTRO (HOME)
   ════════════════════════════════════════════════ */
.about-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.about-intro__text {
    margin-bottom: 32px;
}

.about-intro__text p {
    color: var(--color-text-soft);
    margin-bottom: 16px;
    font-size: 15px;
}

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

.about-intro__image-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

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


/* ════════════════════════════════════════════════
   SERVICES GRID (HOME)
   ════════════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-tile {
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 3vw, 40px);
    text-decoration: none;
    transition: all var(--duration) var(--ease);
    display: flex;
    flex-direction: column;
}

.service-tile:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-tile__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-accent-dark);
    transition: all var(--duration) var(--ease);
}

.service-tile:hover .service-tile__icon {
    background: var(--color-text);
    color: var(--color-bg);
}

.service-tile__title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--color-text);
}

.service-tile__desc {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: auto;
    line-height: 1.6;
}

.service-tile__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-accent-dark);
    margin-top: 20px;
    font-weight: 400;
    transition: gap var(--duration) var(--ease);
}

.service-tile:hover .service-tile__link {
    gap: 10px;
}

/* Accent tile */
.service-tile--accent {
    background: linear-gradient(135deg, var(--color-bg-warm) 0%, var(--color-bg-cream) 100%);
    border-color: var(--color-accent);
}


/* ════════════════════════════════════════════════
   FEATURED TREATMENTS (HOME)
   ════════════════════════════════════════════════ */
.featured__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.featured__card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    transition: all var(--duration) var(--ease);
}

.featured__card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.featured__card-img {
    height: 260px;
    overflow: hidden;
}

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

.featured__card:hover .featured__card-img img {
    transform: scale(1.05);
}

.featured__card-body {
    padding: clamp(24px, 3vw, 36px);
}

.featured__card-body h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 12px;
}

.featured__card-body p {
    font-size: 14px;
    color: var(--color-text-soft);
    line-height: 1.7;
    margin-bottom: 20px;
}


/* ════════════════════════════════════════════════
   WHY US (HOME)
   ════════════════════════════════════════════════ */
.why-us__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-us__card {
    padding: clamp(28px, 3vw, 40px);
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    transition: all var(--duration) var(--ease);
}

.why-us__card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.why-us__num {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--color-bg-stone);
    display: block;
    margin-bottom: 16px;
    line-height: 1;
}

.why-us__card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
}

.why-us__card p {
    font-size: 14px;
    color: var(--color-text-soft);
    line-height: 1.7;
}


/* ════════════════════════════════════════════════
   TESTIMONIALS (HOME)
   ════════════════════════════════════════════════ */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial {
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 3vw, 40px);
    display: flex;
    flex-direction: column;
}

.testimonial__stars {
    color: var(--color-gold);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.testimonial__text {
    font-family: var(--font-serif);
    font-size: 17px;
    font-style: italic;
    line-height: 1.7;
    color: var(--color-text-soft);
    margin-bottom: 24px;
    flex: 1;
}

.testimonial__author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-style: normal;
    border-top: 1px solid var(--color-border-light);
    padding-top: 16px;
}

.testimonial__name {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
}

.testimonial__treatment {
    font-size: 12px;
    color: var(--color-text-muted);
}


/* ════════════════════════════════════════════════
   CTA BANNER
   ════════════════════════════════════════════════ */
.cta-banner {
    background: linear-gradient(135deg, var(--color-bg-warm) 0%, var(--color-bg-cream) 100%);
}

.cta-banner__inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-banner__title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 20px;
}

.cta-banner__desc {
    font-size: 15px;
    color: var(--color-text-soft);
    line-height: 1.7;
    margin-bottom: 36px;
}

.cta-banner--peptide {
    background: linear-gradient(135deg, var(--color-bg-stone) 0%, var(--color-bg-warm) 100%);
}


/* ════════════════════════════════════════════════
   SERVICES PAGE — Service Sections
   ════════════════════════════════════════════════ */
.service-section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.service-section__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--color-accent-dark);
}

.section--cream .service-section__icon {
    background: var(--color-surface);
}

.service-section__title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--color-text);
}

.service-section__intro {
    font-size: 15px;
    color: var(--color-text-soft);
    line-height: 1.7;
}

.service-video {
    max-width: 500px; /* Narrower for vertical videos */
    margin: 0 auto 56px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--color-bg-stone);
}

.service-video__wrapper {
    position: relative;
    padding-top: 150%; /* Taller for portrait videos */
}

.service-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps it filling the box beautifully */
}

/* Service Cards */
.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration) var(--ease);
}

.section--cream .service-card {
    border-color: var(--color-border);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.service-card__img {
    height: 240px;
    overflow: hidden;
}

.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.service-card:hover .service-card__img img {
    transform: scale(1.05);
}

.service-card__body {
    padding: clamp(24px, 3vw, 36px);
}

.service-card__body h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 12px;
}

.service-card__body p {
    font-size: 14px;
    color: var(--color-text-soft);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-card__benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.service-card__benefits span {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    background: var(--color-bg-cream);
    color: var(--color-text-muted);
    border: 1px solid var(--color-border-light);
}

.service-card__note {
    font-size: 13px;
    color: var(--color-accent-dark);
    font-style: italic;
    margin-bottom: 20px !important;
}

.service-card--wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

.service-card--wide .service-card__img {
    height: 100%;
    min-height: 360px;
}

.service-card--wide .service-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card__body .btn+.btn {
    margin-left: 12px;
}


/* ════════════════════════════════════════════════
   PEPTIDE THERAPY PAGE
   ════════════════════════════════════════════════ */
.peptide-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.peptide-intro__content p {
    color: var(--color-text-soft);
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.peptide-intro__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.peptide-intro__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Benefits Grid */
.peptide-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.peptide-benefit {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 3vw, 36px);
    transition: all var(--duration) var(--ease);
}

.peptide-benefit:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.peptide-benefit__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--color-accent-dark);
}

.peptide-benefit h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}

.peptide-benefit p {
    font-size: 14px;
    color: var(--color-text-soft);
    line-height: 1.7;
}

/* Process Steps */
.peptide-process__steps {
    max-width: 700px;
    margin: 0 auto;
}

.peptide-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.peptide-step__num {
    font-family: var(--font-serif);
    font-size: 48px;
    color: var(--color-bg-stone);
    line-height: 1;
    flex-shrink: 0;
    width: 60px;
}

.peptide-step__content h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 8px;
}

.peptide-step__content p {
    font-size: 14px;
    color: var(--color-text-soft);
    line-height: 1.7;
}

.peptide-step__line {
    width: 1px;
    height: 48px;
    background: var(--color-border);
    margin: 16px 0 16px 29px;
}


/* ════════════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════════════ */
.about-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.about-story__content p {
    font-size: 15px;
    color: var(--color-text-soft);
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.about-story__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Values */
.about-values__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.about-value {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 3vw, 40px);
    transition: all var(--duration) var(--ease);
}

.about-value:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.about-value__num {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--color-bg-stone);
    display: block;
    margin-bottom: 14px;
    line-height: 1;
}

.about-value h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 10px;
}

.about-value p {
    font-size: 14px;
    color: var(--color-text-soft);
    line-height: 1.7;
}

/* Environment */
.about-environment__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

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

.about-environment__image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.about-environment__content p {
    font-size: 15px;
    color: var(--color-text-soft);
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.about-environment__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--color-text-soft);
}

.about-environment__features svg {
    color: var(--color-accent-dark);
    flex-shrink: 0;
}


/* ════════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════════ */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.contact__desc {
    font-size: 15px;
    color: var(--color-text-soft);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact__info-item svg {
    color: var(--color-accent-dark);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact__info-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact__info-item strong {
    font-size: 14px;
    font-weight: 500;
}

.contact__info-item span {
    font-size: 13px;
    color: var(--color-text-muted);
}

.contact__info-item a {
    color: var(--color-accent-dark);
    transition: color var(--duration) var(--ease);
}

.contact__info-item a:hover {
    color: var(--color-text);
}

/* Form */
.contact__form-wrapper {
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 48px);
    box-shadow: var(--shadow-card);
}

.contact__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: 6px;
}

.form__group label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.form__group input,
.form__group select,
.form__group textarea {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text);
    padding: 14px 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-bg);
    transition: all var(--duration) var(--ease);
    outline: none;
    -webkit-appearance: none;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
    color: var(--color-text-muted);
    font-weight: 300;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-gold-soft);
}

.form__group textarea {
    resize: vertical;
    min-height: 100px;
}

.form__group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A8279' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form__note {
    font-size: 12px;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 4px;
}

/* Contact Location */
.contact-location__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.contact-location__map {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.contact-location__pin {
    color: var(--color-accent-dark);
    animation: pinBounce 2s ease-in-out infinite;
}

@keyframes pinBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.contact-location__label {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--color-text-soft);
    line-height: 1.5;
}

.contact-location__details h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 16px;
}

.contact-location__details p {
    font-size: 14px;
    color: var(--color-text-soft);
    line-height: 1.7;
    margin-bottom: 24px;
}


/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
.footer {
    background: var(--color-text);
    padding: clamp(80px, 10vw, 120px) 0 40px;
    color: rgba(250, 248, 245, 0.7);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 80px;
}

.footer__brand {
    max-width: 280px;
}

.footer__logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 16px;
}

.footer .nav__logo-ultra {
    color: var(--color-bg);
    font-size: 18px;
    letter-spacing: 6px;
}

.footer .nav__logo-wellness {
    color: rgba(250, 248, 245, 0.5);
}

.footer__tagline {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(250, 248, 245, 0.5);
}

.footer__col h4 {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-bg);
    margin-bottom: 18px;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__col a {
    font-size: 13px;
    color: rgba(250, 248, 245, 0.5);
    transition: color var(--duration) var(--ease);
}

.footer__col a:hover {
    color: var(--color-bg);
}

.footer__hours-title {
    margin-top: 24px;
}

.footer__hours-text {
    font-size: 13px;
    color: rgba(250, 248, 245, 0.4);
}

.footer__bottom {
    border-top: 1px solid rgba(250, 248, 245, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(250, 248, 245, 0.3);
}

.footer__legal {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer__legal a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.footer__legal a:hover {
    color: rgba(250, 248, 245, 0.7);
}


/* ════════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════════ */
.anim {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.anim.visible {
    opacity: 1;
    transform: translateY(0);
}

.anim[data-delay="1"] {
    transition-delay: 0.1s;
}

.anim[data-delay="2"] {
    transition-delay: 0.2s;
}

.anim[data-delay="3"] {
    transition-delay: 0.3s;
}

.anim[data-delay="4"] {
    transition-delay: 0.4s;
}


/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .testimonials__grid .testimonial:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

@media (max-width: 768px) {

    /* Nav Mobile */
    .nav__toggle {
        display: flex;
    }

    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transition: right 0.5s var(--ease);
        z-index: 999;
    }

    .nav__links.open {
        right: 0;
    }

    .nav__links li a {
        font-size: 15px;
        padding: 8px 0;
    }

    .nav__links li a::after {
        display: none;
    }

    /* Mobile Dropdown */
    .has-dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        min-width: 100%;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        height: 0;
        overflow: hidden;
        transition: all 0.3s var(--ease);
    }

    .has-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        height: auto;
        padding-top: 16px;
    }

    .has-dropdown.active > a svg {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        font-size: 14px !important;
        padding: 12px 0 !important;
    }

    .nav__cta {
        margin-top: 16px;
    }

    /* Grids to single column */
    .about-intro__grid,
    .about-story__grid,
    .about-environment__grid,
    .peptide-intro__grid,
    .contact__grid,
    .contact-location__inner {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .featured__grid,
    .why-us__grid,
    .testimonials__grid,
    .service-cards,
    .about-values__grid,
    .peptide-benefits__grid {
        grid-template-columns: 1fr;
    }

    .testimonials__grid .testimonial:last-child {
        max-width: 100%;
    }

    .service-card--wide {
        grid-template-columns: 1fr;
    }

    .service-card--wide .service-card__img {
        min-height: 200px;
        height: 200px;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        align-items: center;
    }

    .footer__legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Form */
    .form__row {
        grid-template-columns: 1fr;
    }

    /* Hero */
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    /* Images */
    .about-intro__image-frame img,
    .about-story__image img,
    .about-environment__image img,
    .peptide-intro__image img {
        height: 280px;
    }

    .featured__card-img {
        height: 200px;
    }

    .service-card__img {
        height: 180px;
    }

    /* Reorder for mobile */
    .about-environment__grid .about-environment__image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 14px 28px;
        font-size: 12px;
    }

    .section {
        padding: 64px 0;
    }

    .page-hero {
        padding: 120px 0 48px;
    }

    .hero__title {
        font-size: 36px;
    }

    .peptide-step {
        gap: 20px;
    }

    .peptide-step__num {
        font-size: 36px;
        width: auto;
    }
}