/*
Theme Name: HIM & HER Youth and Hydration Clinic
Version: 1.1.0
Description: Custom luxury wellness theme for HIM & HER Youth and Hydration Clinic - "Smoky Elegance" aesthetic
Author: Kamber Digital
Author URI: https://kamberdigital.com
Text Domain: him-her-theme
*/

/* ==========================================================================
   FONT FALLBACKS - Size-adjusted to match Google Fonts metrics (eliminates FOUT)
   ========================================================================== */
@font-face {
    font-family: 'Cinzel Fallback';
    src: local('Georgia'), local('Times New Roman');
    size-adjust: 100%;
    ascent-override: 95%;
    descent-override: 22%;
}

@font-face {
    font-family: 'Montserrat Fallback';
    src: local('-apple-system'), local('BlinkMacSystemFont'), local('Segoe UI');
    size-adjust: 100%;
    ascent-override: 99%;
    descent-override: 22%;
}

@font-face {
    font-family: 'Lora Fallback';
    src: local('Georgia'), local('Times New Roman');
    size-adjust: 100%;
    ascent-override: 95%;
    descent-override: 22%;
}

/* ==========================================================================
   CSS CUSTOM PROPERTIES (Design Tokens) - Smoky Elegance
   ========================================================================== */
:root {
    /* Brand Colors - Smoky Elegance Palette */
    --teal: #0A7B8A;
    --teal-dark: #086270;
    --copper: #B87333;
    --copper-light: #D4956A;
    --cream: #FAF8F3;
    --warm-white: #FFFEF9;
    --charcoal: #2C2C2C;
    --slate: #5A5A5A;
    --white: #FFFFFF;

    /* Legacy aliases (for compatibility) */
    --ocean-teal: var(--teal);
    --ocean-teal-dark: var(--teal-dark);
    --sunset-clay: var(--copper);
    --sunset-clay-light: var(--copper-light);
    --sunlight-gold: var(--copper);
    --sand: var(--cream);
    --warm-charcoal: var(--charcoal);
    --hhyc-teal: var(--teal);
    --hhyc-gold: var(--copper);
    --hhyc-cream: var(--cream);

    /* Typography - Smoky Elegance Fonts */
    --font-heading: 'Cinzel', serif;
    --font-accent: 'Lora', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Legacy aliases */
    --font-serif: var(--font-heading);
    --font-sans: var(--font-body);

    /* Spacing */
    --section-padding: clamp(4rem, 8vw, 8rem);
    --container-max: 1280px;

    /* Shadows */
    --shadow-soft: 0 20px 40px rgba(0,0,0,0.05);
    --shadow-button: 0 4px 15px rgba(10, 123, 138, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.7s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */
html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--warm-charcoal);
    background-color: var(--sand);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 300;
    letter-spacing: 0.02em;
    color: var(--ocean-teal);
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

a {
    color: var(--ocean-teal);
    text-decoration: none;
    transition: color var(--transition-fast);
}
a:hover {
    color: var(--sunset-clay);
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

/* Skip Link - Hidden by default, visible on focus */
.hhyc-skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ocean-teal);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s ease;
}
.hhyc-skip-link:focus {
    top: 10px;
    color: var(--white);
}

/* Focus outlines */
:focus-visible {
    outline: 3px solid var(--ocean-teal);
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==========================================================================
   TYPOGRAPHY UTILITIES
   ========================================================================== */
.hhyc-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--sunset-clay);
    margin-bottom: 0.75rem;
}

.hhyc-section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--ocean-teal);
}

.hhyc-text-gold {
    color: var(--sunlight-gold);
}

.hhyc-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hhyc-headline--gold {
    color: var(--sunlight-gold);
}

/* Accent font class - use for elegant words like "Wellness" or "&" */
.accent-font {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--sunlight-gold);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.hhyc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 16px 42px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.hhyc-btn--primary {
    background: linear-gradient(135deg, var(--sunset-clay) 0%, #C4875A 100%);
    color: var(--white);
    box-shadow: var(--shadow-button);
}
.hhyc-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(217, 160, 111, 0.4);
    color: var(--white);
}

.hhyc-btn--teal {
    background: var(--ocean-teal);
    color: var(--white);
    box-shadow: var(--shadow-button);
}
.hhyc-btn--teal:hover {
    background: var(--ocean-teal-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(10, 123, 138, 0.4);
    color: var(--white);
}

.hhyc-btn--outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}
.hhyc-btn--outline:hover {
    background: var(--white);
    color: var(--ocean-teal);
}

.hhyc-btn--outline-dark {
    background: transparent;
    border: 2px solid var(--ocean-teal);
    color: var(--ocean-teal);
}
.hhyc-btn--outline-dark:hover {
    background: var(--ocean-teal);
    color: var(--white);
}

.hhyc-btn--sm {
    padding: 10px 24px;
    font-size: 0.75rem;
}

.hhyc-btn--lg {
    padding: 18px 48px;
    font-size: 0.9rem;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.hhyc-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: background var(--transition-medium), padding var(--transition-medium);
}

.hhyc-nav--transparent {
    background: transparent;
}

.hhyc-nav--scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.hhyc-nav__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hhyc-nav__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.hhyc-nav__logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--white);
    line-height: 1.2;
    text-align: center;
    transition: color var(--transition-medium);
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hhyc-nav--scrolled .hhyc-nav__logo-text {
    color: var(--ocean-teal);
    text-shadow: none;
}

.hhyc-nav__logo-text span {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 3px;
    margin-top: 2px;
}

.hhyc-nav__logo-text .hhyc-nav__logo-ampersand {
    font-family: var(--font-accent);
    font-style: italic;
    display: inline;
}

.hhyc-nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hhyc-nav__link {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    transition: color var(--transition-fast);
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hhyc-nav--scrolled .hhyc-nav__link {
    color: var(--warm-charcoal);
    text-shadow: none;
}

/* Light background modifier - for pages with light hero backgrounds */
.hhyc-nav--light-bg .hhyc-nav__logo-text {
    color: var(--ocean-teal);
    text-shadow: none;
}

.hhyc-nav--light-bg .hhyc-nav__link {
    color: var(--warm-charcoal);
    text-shadow: none;
}

.hhyc-nav--light-bg .hhyc-nav__toggle span {
    background: var(--ocean-teal);
}

.hhyc-nav__link:hover {
    color: var(--sunset-clay);
}

/* Navigation item with dropdown */
.hhyc-nav__item {
    position: relative;
}

.hhyc-nav__item--has-mega .hhyc-nav__link::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 6px;
    vertical-align: middle;
    transition: transform var(--transition-fast);
}

.hhyc-nav__item--has-mega:hover .hhyc-nav__link::after {
    transform: rotate(180deg);
}

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

.hhyc-nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.hhyc-nav--scrolled .hhyc-nav__toggle span {
    background: var(--ocean-teal);
}

/* ==========================================================================
   MEGA MENU (Dropdowns)
   ========================================================================== */
.hhyc-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 24px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
}

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

.hhyc-mega__heading {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ocean-teal);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hhyc-mega__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hhyc-mega__link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    transition: background var(--transition-fast);
}

.hhyc-mega__link:hover {
    background: var(--sand);
}

.hhyc-mega__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sand);
    border-radius: 8px;
    flex-shrink: 0;
}

.hhyc-mega__icon svg {
    width: 18px;
    height: 18px;
    color: var(--ocean-teal);
}

.hhyc-mega__text {
    display: flex;
    flex-direction: column;
}

.hhyc-mega__link-title {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--warm-charcoal);
}

.hhyc-mega__link-desc {
    font-size: 0.8rem;
    color: rgba(45, 55, 72, 0.7);
}

.hhyc-mega__cta {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.hhyc-mega__cta-btn {
    display: block;
    text-align: center;
    padding: 12px;
    background: var(--ocean-teal);
    color: var(--white);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background var(--transition-fast);
}

.hhyc-mega__cta-btn:hover {
    background: var(--ocean-teal-dark);
    color: var(--white);
}

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */
.hhyc-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ocean-teal);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 100px 24px 40px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-medium), visibility var(--transition-medium);
}

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

.hhyc-mobile-menu__link {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.hhyc-mobile-menu__link:hover {
    color: var(--sunlight-gold);
}

/* Mobile Menu Accordion Items */
.hhyc-mobile-menu__item {
    text-align: center;
}

.hhyc-mobile-menu__toggle {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0;
    transition: color var(--transition-fast);
}

.hhyc-mobile-menu__toggle:hover {
    color: var(--sunlight-gold);
}

.hhyc-mobile-menu__toggle svg {
    transition: transform var(--transition-fast);
}

.hhyc-mobile-menu__toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.hhyc-mobile-menu__submenu {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
}

.hhyc-mobile-menu__toggle[aria-expanded="true"] + .hhyc-mobile-menu__submenu {
    display: flex;
}

.hhyc-mobile-menu__sublink {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.hhyc-mobile-menu__sublink:hover {
    color: var(--sunlight-gold);
}

.hhyc-mobile-menu__sublink--parent {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Mobile menu button sizing */
.hhyc-mobile-menu .hhyc-btn--lg {
    padding: 14px 32px;
    font-size: 0.875rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hhyc-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hhyc-hero__video,
.hhyc-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hhyc-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 123, 138, 0.4) 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 2;
}

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

.hhyc-hero__content .hhyc-eyebrow {
    color: rgba(255, 255, 255, 0.9);
}

.hhyc-hero__content .hhyc-headline {
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.hhyc-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 2rem;
}

/* ==========================================================================
   SECTION LAYOUTS
   ========================================================================== */
.hhyc-section {
    padding: var(--section-padding) 0;
}

.hhyc-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.hhyc-bg-sand { background-color: var(--sand); }
.hhyc-bg-white { background-color: var(--white); }
.hhyc-bg-teal { background-color: var(--ocean-teal); }

/* ==========================================================================
   SERVICE CARDS
   ========================================================================== */
.hhyc-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.hhyc-service-card {
    position: relative;
    background: var(--white);
    padding: 48px 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    text-align: center;
}

.hhyc-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--sunlight-gold);
    border-radius: 2px;
}

.hhyc-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.hhyc-service-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sand);
    border-radius: 50%;
}

.hhyc-service-card__icon svg {
    width: 32px;
    height: 32px;
    color: var(--ocean-teal);
}

.hhyc-service-card__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--ocean-teal);
    margin-bottom: 12px;
}

.hhyc-service-card__desc {
    font-size: 0.95rem;
    color: var(--warm-charcoal);
    margin-bottom: 24px;
}

/* ==========================================================================
   ABOUT / TEAM SECTION
   ========================================================================== */
.hhyc-about {
    padding: var(--section-padding) 0;
}

.hhyc-about__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hhyc-about__gallery {
    display: grid;
    grid-template-rows: auto auto;
    gap: 16px;
}

.hhyc-about__image-main {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

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

.hhyc-about__image-secondary {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.hhyc-about__label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--sunset-clay);
}

.hhyc-about__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--ocean-teal);
    margin: 12px 0 24px;
}

.hhyc-about__description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--warm-charcoal);
    margin-bottom: 32px;
}

.hhyc-about__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ocean-teal);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap var(--transition-fast);
}

.hhyc-about__cta:hover {
    gap: 12px;
}

.hhyc-about__cta svg {
    width: 20px;
    height: 20px;
}

.hhyc-about__stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hhyc-about__stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--ocean-teal);
}

.hhyc-about__stat-plus {
    color: var(--sunlight-gold);
}

.hhyc-about__stat-label {
    font-size: 0.85rem;
    color: rgba(45, 55, 72, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   TEAM SECTION
   ========================================================================== */
.hhyc-team {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 64px;
    align-items: center;
}

.hhyc-team__image {
    position: relative;
}

.hhyc-team__accent {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px solid var(--sunlight-gold);
}

.hhyc-team__accent--top {
    top: -20px;
    left: -20px;
    border-right: none;
    border-bottom: none;
}

.hhyc-team__accent--bottom {
    bottom: -20px;
    right: -20px;
    border-left: none;
    border-top: none;
}

.hhyc-team__content .hhyc-eyebrow {
    margin-bottom: 8px;
}

.hhyc-team__text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* ==========================================================================
   LOCATIONS SECTION
   ========================================================================== */
.hhyc-locations__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.hhyc-location-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.hhyc-location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.hhyc-location-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hhyc-location-card__content {
    padding: 32px;
}

.hhyc-location-card__name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--ocean-teal);
    margin-bottom: 8px;
}

.hhyc-location-card__address {
    font-size: 0.95rem;
    color: var(--warm-charcoal);
    margin-bottom: 16px;
}

/* ==========================================================================
   PRICING TABLES
   ========================================================================== */
.hhyc-pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.hhyc-pricing-card {
    background: var(--white);
    border-radius: 8px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.hhyc-pricing-card--featured {
    border: 2px solid var(--sunlight-gold);
    position: relative;
}

.hhyc-pricing-card--featured::before {
    content: 'Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sunlight-gold);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hhyc-pricing-card__title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--ocean-teal);
    margin-bottom: 8px;
}

.hhyc-pricing-card__price {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--warm-charcoal);
    margin-bottom: 16px;
}

.hhyc-pricing-card__desc {
    font-size: 0.9rem;
    color: rgba(45, 55, 72, 0.7);
    margin-bottom: 24px;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.hhyc-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.hhyc-faq__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.hhyc-faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--ocean-teal);
    transition: color var(--transition-fast);
}

.hhyc-faq__question:hover {
    color: var(--ocean-teal-dark);
}

.hhyc-faq__icon {
    width: 24px;
    height: 24px;
    transition: transform var(--transition-fast);
}

.hhyc-faq__item.active .hhyc-faq__icon {
    transform: rotate(45deg);
}

.hhyc-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.hhyc-faq__answer-inner {
    padding-bottom: 24px;
    color: var(--warm-charcoal);
    line-height: 1.8;
}

.hhyc-faq__item.active .hhyc-faq__answer {
    max-height: 500px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.hhyc-footer {
    background: var(--ocean-teal);
    color: rgba(255, 255, 255, 0.8);
}

.hhyc-footer__top {
    padding: 32px 0 24px;
}

/* Logo/Brand */
.hhyc-footer__brand {
    margin-bottom: 24px;
    text-align: center;
}

.hhyc-footer__logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 8px;
}

.hhyc-footer__logo-main {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 6px;
    color: var(--white);
    line-height: 1.2;
}

.hhyc-footer__logo-amp {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 0.6rem;
}

.hhyc-footer__logo-sub {
    display: block;
    font-family: var(--font-serif);
    font-size: 0.6rem;
    letter-spacing: 4px;
    color: var(--white);
    margin-top: 4px;
}

.hhyc-footer__tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

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

.hhyc-footer__col {
    text-align: left;
}

.hhyc-footer__col--cta {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.hhyc-footer__heading {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sunlight-gold);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hhyc-footer__heading--sub {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 0.8rem;
}

/* Footer Links (WordPress menu) */
.hhyc-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hhyc-footer__links li {
    margin: 0;
}

.hhyc-footer__links a {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    padding: 5px 0;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.hhyc-footer__links a:hover {
    color: var(--sunlight-gold);
}

/* Contact Links */
.hhyc-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hhyc-footer__contact-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.hhyc-footer__contact-link:hover {
    color: var(--sunlight-gold);
}

/* Social Links */
.hhyc-footer__social {
    display: flex;
    gap: 12px;
}

.hhyc-footer__social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: background var(--transition-fast), color var(--transition-fast);
}

.hhyc-footer__social-link:hover {
    background: var(--sunlight-gold);
    color: var(--ocean-teal);
}

.hhyc-footer__social-link svg {
    width: 18px;
    height: 18px;
}

/* Footer Bottom */
.hhyc-footer__bottom {
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.8rem;
}

.hhyc-footer__bottom p {
    margin: 0;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.hhyc-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hhyc-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.hhyc-fade-up:nth-child(1) { transition-delay: 0s; }
.hhyc-fade-up:nth-child(2) { transition-delay: 0.1s; }
.hhyc-fade-up:nth-child(3) { transition-delay: 0.2s; }
.hhyc-fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ==========================================================================
   DIVIDERS & ACCENTS
   ========================================================================== */
.hhyc-divider {
    width: 80px;
    height: 2px;
    background: var(--sunlight-gold);
    margin: 30px auto;
}

/* Gold accent line */
.hhyc-gold-line {
    width: 60px;
    height: 3px;
    background: var(--sunlight-gold);
    border-radius: 2px;
}

/* ==========================================================================
   QUOTE / BLOCKQUOTE
   ========================================================================== */
.hhyc-quote {
    position: relative;
    padding: 24px 32px;
    background: var(--sand);
    border-left: 4px solid var(--sunlight-gold);
    margin: 32px 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--warm-charcoal);
}

/* ==========================================================================
   SMOKY ELEGANCE - HERO PARALLAX
   ========================================================================== */
.hhyc-hero--parallax {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: var(--ocean-teal, #0A7B8A);
}
.hhyc-hero__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hhyc-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(10, 123, 138, 0.4), rgba(10, 123, 138, 0.5));
    z-index: 0;
}

.hhyc-hero--parallax::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--cream), transparent);
    pointer-events: none;
    z-index: 1;
}

.hhyc-hero--parallax .hhyc-hero__content {
    max-width: 900px;
    padding: 40px;
    position: relative;
    z-index: 1;
}

.hhyc-hero__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--copper-light);
    margin-bottom: 25px;
    font-weight: 500;
}

.hhyc-hero--parallax .hhyc-hero__headline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 400;
    color: white;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-shadow: none;
}

.hhyc-hero__subtext {
    font-family: var(--font-accent);
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* ==========================================================================
   SMOKY ELEGANCE - BUTTONS
   ========================================================================== */
.hhyc-btn--copper {
    background: var(--copper);
    color: white;
    border: 1px solid transparent;
    border-radius: 0;
    padding: 14px 35px;
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.hhyc-btn--copper:hover {
    background: var(--copper-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 115, 51, 0.3);
    color: white;
}

.hhyc-btn--outline-white {
    border: 1px solid white;
    color: white;
    background: transparent;
    border-radius: 0;
    padding: 14px 35px;
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.hhyc-btn--outline-white:hover {
    background: white;
    color: var(--teal);
    border-color: white;
}

/* ==========================================================================
   SMOKY ELEGANCE - SECTION HEADER
   ========================================================================== */
.hhyc-section-header {
    text-align: center;
    margin-bottom: 70px;
}

.hhyc-section-header__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--teal);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hhyc-copper-line {
    width: 80px;
    height: 1px;
    background: var(--copper);
    margin: 0 auto;
}

/* ==========================================================================
   SMOKY ELEGANCE - INTRO SECTION
   ========================================================================== */
.hhyc-intro {
    padding: 120px 80px;
    text-align: center;
    background: var(--warm-white);
}

.hhyc-intro__container {
    max-width: 1400px;
    margin: 0 auto;
}

.hhyc-intro__text {
    font-family: var(--font-accent);
    max-width: 750px;
    margin: 30px auto 0;
    font-size: 1.1rem;
    line-height: 2;
    color: var(--slate);
}

/* ==========================================================================
   SMOKY ELEGANCE - SERVICES SECTION
   ========================================================================== */
.hhyc-services {
    background: var(--cream);
    padding: 120px 0 0 0;
}

.hhyc-services__header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.hhyc-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.hhyc-service-card {
    padding: 50px 35px;
    background: var(--warm-white);
    border-right: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    text-decoration: none;
    display: block;
    text-align: left;
    border-radius: 0;
    box-shadow: none;
}

.hhyc-service-card::before {
    display: none;
}

.hhyc-service-card:last-child {
    border-right: none;
}

.hhyc-service-card:hover {
    background: var(--teal);
    transform: none;
    box-shadow: none;
}

.hhyc-service-card:hover * {
    color: white;
}

.hhyc-service-card:hover .hhyc-service-card__price {
    background: rgba(255,255,255,0.15);
    color: white;
}

.hhyc-service-card__number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 400;
    color: rgba(10, 123, 138, 0.1);
    line-height: 1;
    margin-bottom: 30px;
    transition: color 0.4s;
}

.hhyc-service-card:hover .hhyc-service-card__number {
    color: rgba(255,255,255,0.15);
}

.hhyc-service-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--teal);
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.4s;
}

.hhyc-service-card__desc {
    font-size: 0.95rem;
    color: var(--slate);
    margin-bottom: 20px;
    line-height: 1.7;
    transition: color 0.4s;
}

.hhyc-service-card__price {
    display: inline-block;
    background: rgba(10, 123, 138, 0.08);
    padding: 8px 16px;
    font-size: 0.8rem;
    color: var(--teal);
    font-weight: 500;
    transition: all 0.4s;
}

/* ==========================================================================
   SMOKY ELEGANCE - PARALLAX CTA
   ========================================================================== */
.hhyc-parallax-cta {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hhyc-parallax-cta__content {
    padding: 40px;
}

.hhyc-parallax-cta .hhyc-hero__eyebrow {
    margin-bottom: 15px;
    color: var(--copper-light);
}

.hhyc-parallax-cta__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: white;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.hhyc-parallax-cta__text {
    font-family: var(--font-accent);
    font-style: italic;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    font-size: 1.1rem;
}

/* ==========================================================================
   SMOKY ELEGANCE - LOCATIONS SECTION
   ========================================================================== */
.hhyc-locations {
    padding: 120px 80px;
    background: var(--cream);
}

.hhyc-locations__container {
    max-width: 1400px;
    margin: 0 auto;
}

.hhyc-locations__subtitle {
    margin-top: 25px;
    color: var(--slate);
    font-size: 1rem;
    font-family: var(--font-accent);
    font-style: italic;
}

.hhyc-locations__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.hhyc-location-card {
    padding: 60px 50px;
    text-align: center;
    border-right: 1px solid rgba(0,0,0,0.06);
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.hhyc-location-card:last-child {
    border-right: none;
}

.hhyc-location-card:hover {
    transform: none;
    box-shadow: none;
}

.hhyc-location-card__name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--teal);
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 3px;
}

.hhyc-location-card__address {
    color: var(--slate);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 30px;
}

/* ==========================================================================
   SMOKY ELEGANCE - FEATURED SERVICE SECTION (Mobile Services)
   ========================================================================== */
.hhyc-featured-service {
    background: var(--ocean-teal);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 24px;
    text-align: center;
}

.hhyc-featured-service__container {
    max-width: 800px;
    margin: 0 auto;
}

.hhyc-featured-service__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--copper-light);
    margin-bottom: 15px;
    font-weight: 500;
}

.hhyc-featured-service__title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--white);
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hhyc-featured-service__desc {
    font-family: var(--font-accent);
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hhyc-featured-service__highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
}

.hhyc-featured-service__highlights li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
}

.hhyc-featured-service__highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--sunlight-gold);
    border-radius: 50%;
}

/* ==========================================================================
   SMOKY ELEGANCE - LOCATION CARD FACILITY NAME
   ========================================================================== */
.hhyc-location-card__facility {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: var(--ocean-teal);
    font-weight: 500;
    margin: 0 0 8px 0;
}

/* ==========================================================================
   SMOKY ELEGANCE - NEW CLIENT SECTION
   ========================================================================== */
.hhyc-new-client {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 450px;
}

.hhyc-new-client__image {
    background-size: cover;
    background-position: center;
}

.hhyc-new-client__content {
    background: var(--warm-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
}

.hhyc-new-client__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--teal);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 2px;
}

.hhyc-new-client__text {
    font-family: var(--font-accent);
    color: var(--slate);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 30px;
}

.hhyc-new-client__exams {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hhyc-new-client__exam-box {
    display: flex;
    flex-direction: column;
    padding: 20px 25px;
    background: rgba(10, 123, 138, 0.05);
    border-left: 3px solid var(--ocean-teal);
}

.hhyc-new-client__exam-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--copper);
    font-weight: 400;
    line-height: 1;
}

.hhyc-new-client__exam-label {
    font-size: 0.9rem;
    color: var(--ocean-teal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.hhyc-new-client__exam-services {
    font-size: 0.8rem;
    color: var(--slate);
    margin-top: 8px;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1200px) {
    .hhyc-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hhyc-service-card {
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .hhyc-service-card:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 1024px) {
    .hhyc-about__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hhyc-team {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hhyc-team__image {
        max-width: 350px;
        margin: 0 auto;
    }

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

    .hhyc-footer__col--cta {
        grid-column: span 2;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .hhyc-new-client {
        grid-template-columns: 1fr;
    }
    .hhyc-new-client__image {
        height: 300px;
    }
    .hhyc-new-client__content {
        padding: 50px 30px;
    }
    .hhyc-new-client__exams {
        flex-direction: column;
        gap: 20px;
    }
    .hhyc-new-client__exam-box {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hhyc-nav__links {
        display: none;
    }

    .hhyc-nav__toggle {
        display: flex;
    }

    .hhyc-hero--parallax,
    .hhyc-parallax-cta,
    .hhyc-featured-service {
        background-attachment: scroll;
    }

    .hhyc-hero--parallax {
        min-height: 80vh;
    }

    /* Fix hero eyebrow overlap with header on mobile */
    .hhyc-hero--parallax .hhyc-hero__content {
        padding-top: 120px;
    }

    .hhyc-featured-service {
        padding: 60px 20px;
    }

    .hhyc-featured-service__title {
        font-size: 1.8rem;
    }

    .hhyc-featured-service__highlights {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }

    .hhyc-featured-service__highlights li {
        padding-left: 0;
    }

    .hhyc-featured-service__highlights li::before {
        display: none;
    }

    .hhyc-intro,
    .hhyc-locations {
        padding: 60px 20px;
    }

    .hhyc-services__header {
        padding: 0 20px;
    }

    .hhyc-services__grid {
        grid-template-columns: 1fr;
    }

    .hhyc-service-card {
        border-right: none;
    }

    .hhyc-locations__grid {
        grid-template-columns: 1fr;
    }

    .hhyc-location-card {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.06);
        padding: 40px 30px;
    }

    .hhyc-location-card:last-child {
        border-bottom: none;
    }

    .hhyc-section {
        padding: 60px 0;
    }

    .hhyc-about__stats {
        flex-direction: column;
        gap: 24px;
    }

    .hhyc-footer__brand {
        text-align: center;
    }

    .hhyc-footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .hhyc-footer__col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hhyc-footer__col--cta {
        align-items: center;
    }

    .hhyc-footer__contact {
        align-items: center;
    }

    .hhyc-footer__social {
        justify-content: center;
    }

    .hhyc-footer__links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hhyc-footer__bottom .nowrap {
        white-space: nowrap;
    }

    .hhyc-footer__bottom .rights-reserved {
        display: block;
    }
}

@media (max-width: 480px) {
    .hhyc-hero__buttons {
        flex-direction: column;
    }

    .hhyc-btn {
        width: 100%;
    }
}

/* ==========================================================================
   WORDPRESS BLOCK OVERRIDES
   ========================================================================== */
.wp-block-button__link {
    border-radius: 50px !important;
    padding: 16px 42px !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem !important;
    font-weight: 400;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-button);
    border: none;
    background: linear-gradient(135deg, var(--sunset-clay) 0%, #C4875A 100%) !important;
    color: var(--white) !important;
}

.wp-block-button__link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(217, 160, 111, 0.4);
}

.is-style-outline .wp-block-button__link {
    background: transparent !important;
    border: 2px solid var(--ocean-teal) !important;
    color: var(--ocean-teal) !important;
}

.is-style-outline .wp-block-button__link:hover {
    background: var(--ocean-teal) !important;
    color: var(--white) !important;
}

/* GenerateBlocks compatibility */
.gb-container {
    transition: var(--transition-smooth);
}

/* ==========================================================================
   SERVICES HUB PAGE
   ========================================================================== */
.hhyc-services-hub__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.hhyc-services-hub__card {
    text-decoration: none;
    display: block;
}

.hhyc-services-hub__card-image {
    height: 400px;
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
}

.hhyc-services-hub__card-img {
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    transition: transform 0.6s ease;
}

.hhyc-services-hub__card:hover .hhyc-services-hub__card-img {
    transform: scale(1.05);
}

.hhyc-services-hub__card-content {
    text-align: center;
}

.hhyc-services-hub__card-title {
    font-family: var(--font-heading);
    color: var(--teal);
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 400;
}

.hhyc-services-hub__card-desc {
    color: var(--slate);
    font-family: var(--font-accent);
    font-style: italic;
    margin-bottom: 15px;
}

.hhyc-services-hub__card-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.hhyc-services-hub__highlight {
    background: rgba(10, 123, 138, 0.08);
    color: var(--teal);
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Services CTA - Cream background for footer contrast */
.hhyc-services-cta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    min-height: 500px;
}

.hhyc-services-cta__image {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.hhyc-services-cta__content {
    background: var(--cream);
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hhyc-services-cta__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--teal);
    margin-bottom: 20px;
    font-weight: 400;
}

.hhyc-services-cta__divider {
    width: 60px;
    height: 1px;
    background: var(--copper);
    margin: 0 auto 30px;
}

.hhyc-services-cta__text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--slate);
    max-width: 500px;
}

@media (max-width: 768px) {
    .hhyc-services-hub__grid {
        grid-template-columns: 1fr;
    }

    .hhyc-services-hub__card-image {
        height: 300px;
    }

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

    .hhyc-services-cta__image {
        min-height: 250px;
    }

    .hhyc-services-cta__content {
        padding: 50px 30px;
    }

    .hhyc-services-cta__title {
        font-size: 2rem;
    }
}

/* ==========================================================================
   BREADCRUMBS (Rank Math)
   ========================================================================== */
.hhyc-breadcrumbs {
    padding: 15px 40px;
    background: var(--cream, #FAF8F3);
    font-size: 0.85rem;
    color: var(--slate, #5A5A5A);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hhyc-breadcrumbs a {
    color: var(--teal, #0A7B8A);
    text-decoration: none;
}

.hhyc-breadcrumbs a:hover {
    text-decoration: underline;
}

.hhyc-breadcrumbs .separator {
    margin: 0 8px;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .hhyc-breadcrumbs {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   HOMEPAGE FEATURED PACKAGES
   ========================================================================== */
.hhyc-home-packages {
    background: linear-gradient(135deg, rgba(10, 123, 138, 0.03) 0%, var(--cream) 100%);
    padding: 100px 40px;
}

.hhyc-home-packages__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hhyc-home-packages__header {
    margin-bottom: 60px;
}

.hhyc-home-packages__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--teal);
    margin-bottom: 20px;
}

.hhyc-home-packages__divider {
    width: 60px;
    height: 1px;
    background: var(--copper);
    margin: 0 auto 20px;
}

.hhyc-home-packages__subtitle {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--slate);
    max-width: 500px;
    margin: 0 auto;
}

.hhyc-home-packages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Package Card */
.hhyc-home-pkg-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hhyc-home-pkg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.hhyc-home-pkg-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--copper) 100%);
    border-radius: 12px 12px 0 0;
}

.hhyc-home-pkg-card__badge {
    display: inline-block;
    background: var(--copper);
    color: white;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.hhyc-home-pkg-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--teal);
    margin-bottom: 15px;
    line-height: 1.3;
}

.hhyc-home-pkg-card__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.hhyc-home-pkg-card__price-amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--teal);
    line-height: 1;
}

.hhyc-home-pkg-card__price-label {
    font-size: 0.9rem;
    color: var(--slate);
}

.hhyc-home-pkg-card__summary {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--charcoal);
}

.hhyc-home-packages__cta {
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hhyc-home-packages {
        padding: 70px 20px;
    }

    .hhyc-home-packages__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .hhyc-home-pkg-card {
        padding: 30px 25px;
    }

    .hhyc-home-pkg-card__price-amount {
        font-size: 2rem;
    }
}

/* ==========================================================================
   ANNOUNCEMENT BANNER
   ========================================================================== */
.hhyc-announcement-bar {
    background: var(--copper);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 48px 8px 16px;
    position: relative;
    z-index: 10001;
    min-height: 36px;
}

.hhyc-announcement-bar__content {
    text-align: center;
}

.hhyc-announcement-bar__link {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.hhyc-announcement-bar__link:hover {
    opacity: 0.85;
    color: #fff;
    text-decoration: underline;
}

.hhyc-announcement-bar__text {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hhyc-announcement-bar__arrow {
    margin-left: 6px;
}

.hhyc-announcement-bar__close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.hhyc-announcement-bar__close:hover {
    opacity: 1;
}

.hhyc-announcement-bar--hidden {
    display: none;
}

@media (max-width: 768px) {
    .hhyc-announcement-bar__link,
    .hhyc-announcement-bar__text {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
    .hhyc-nav,
    .hhyc-mobile-menu,
    .hhyc-hero__video {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}
