/* ============================================================
   Hello Onni Beauty Studio — Main Stylesheet
   Palette: Black · White · 米色 (Beige/Cream)
   ============================================================ */

/* ── 1. DESIGN TOKENS ──────────────────────────────────────── */
:root {
    /* Colours — rebrand by changing these four */
    --black:       #0d0d0d;
    --black-soft:  #1a1a1a;
    --white:       #ffffff;
    --beige:       #f0e6d3;      /* 米色 — warm cream */
    --beige-light: #faf6f0;      /* Very light cream, subtle section bg */
    --beige-dark:  #d9c9b0;      /* Darker beige for borders/dividers */
    --gold:        #b5924c;      /* Warm gold accent for CTAs on dark */

    /* Greys */
    --g1: #f7f7f5;
    --g2: #e8e8e4;
    --g3: #c0bfbb;
    --g4: #6e6d68;
    --g5: #3a3935;

    /* Functional */
    --text-dark:   var(--black);
    --text-light:  var(--white);
    --text-muted:  var(--g4);

    /* Layout */
    --r:           6px;          /* Global border radius */
    --r-lg:        12px;
    --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
    --shadow-md:   0 4px 20px rgba(0,0,0,0.10);
    --shadow-lg:   0 8px 40px rgba(0,0,0,0.15);

    --max-w:       1160px;
    --nav-h:       72px;
    --section-py:  80px;
}

/* ── 2. RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

/* Sans-serif for UI elements */
nav, button, .ho-btn, .ho-eyebrow-label, .ho-trust-item,
.ho-portfolio-card__label, .ho-price-tag, .ho-curriculum-day,
.ho-hours-table, .ho-footer__heading, input, select, textarea {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; font-weight: 600; }

p { max-width: 66ch; }

/* ── 3. LAYOUT HELPERS ──────────────────────────────────────── */
.ho-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

.ho-section {
    padding: var(--section-py) 0;
}
.ho-section--light  { background: var(--beige-light); }
.ho-section--dark   { background: var(--black); color: var(--white); }
.ho-section--beige  { background: var(--beige); }
.ho-section--white  { background: var(--white); }

.ho-section-header {
    text-align: center;
    margin-bottom: 48px;
}
.ho-section-header p { margin: 12px auto 0; color: var(--g4); }
.ho-section-header--light p { color: var(--g3); }
.ho-section-header--light h2 { color: var(--white); }

.ho-section-footer {
    text-align: center;
    margin-top: 48px;
}

.ho-eyebrow-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.ho-divider {
    border: none;
    border-top: 1px solid var(--g2);
    margin: 64px 0;
}

/* ── 4. BUTTONS ─────────────────────────────────────────────── */
.ho-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--r);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    text-decoration: none;
}
.ho-btn--sm { padding: 9px 18px; font-size: 0.8rem; }

.ho-btn--primary {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}
.ho-btn--primary:hover {
    background: var(--black-soft);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.ho-btn--outline {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}
.ho-btn--outline:hover {
    background: var(--black);
    color: var(--white);
}

.ho-btn--beige {
    background: var(--beige);
    color: var(--black);
    border-color: var(--beige);
}
.ho-btn--beige:hover {
    background: var(--beige-dark);
    border-color: var(--beige-dark);
    transform: translateY(-1px);
}

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

.ho-link {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 8px;
    transition: opacity 0.15s;
}
.ho-link:hover { opacity: 0.7; }

/* ── 5. HEADER ──────────────────────────────────────────────── */
.ho-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--g2);
    box-shadow: var(--shadow-sm);
}

.ho-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
    gap: 24px;
}

.ho-header__logo { display: flex; align-items: center; }
.ho-logo-img { height: 44px; width: auto; }
.ho-logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--black);
}

.ho-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

.ho-nav__list {
    display: flex;
    align-items: center;
    gap: 28px;
}

.ho-nav__list a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--g5);
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: all 0.15s;
}
.ho-nav__list a:hover,
.ho-nav__list a.current-menu-item {
    color: var(--black);
    border-bottom-color: var(--black);
}

/* Language switcher */
.ho-lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
}
.ho-lang-switcher a,
.ho-lang-btn {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--g4);
    padding: 3px 6px;
    border-radius: 3px;
    transition: all 0.15s;
    text-decoration: none;
}
.ho-lang-switcher a:hover,
.ho-lang-btn:hover,
.ho-lang-switcher a.current-lang,
.ho-lang-btn.active {
    color: var(--black);
    background: var(--beige);
}
/* Polylang outputs <ul> for language list */
.ho-lang-switcher ul { display: flex; gap: 6px; list-style: none; }
.ho-lang-switcher ul li a { display: block; }

/* Mobile hamburger */
.ho-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--r);
}
.ho-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.25s ease;
}
.ho-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.ho-hamburger.open span:nth-child(2) { opacity: 0; }
.ho-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile drawer */
.ho-mobile-nav {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--g2);
    padding: 24px;
}
.ho-mobile-nav.open { display: block; }
.ho-mobile-nav__list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.ho-mobile-nav__list a {
    display: block;
    padding: 10px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
    border-bottom: 1px solid var(--g2);
}
.ho-mobile-nav__lang { margin-bottom: 20px; }
.ho-mobile-nav__cta { display: block; text-align: center; }

/* ── 6. HERO ────────────────────────────────────────────────── */
.ho-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}

.ho-hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.6) 100%),
        var(--beige);
    /* Replace with background-image: url(...) after photos are added */
    background-size: cover;
    background-position: center;
}

.ho-hero__content {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
    max-width: var(--max-w);
    margin: 0 auto;
}

.ho-hero__eyebrow {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.ho-hero__title {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
    max-width: 14ch;
}

.ho-hero__desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    max-width: 50ch;
}

.ho-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* ── 7. TRUST BAR ───────────────────────────────────────────── */
.ho-trust-bar {
    background: var(--black-soft);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ho-trust-bar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.ho-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
}

.ho-trust-icon {
    color: var(--gold);
    font-size: 0.6rem;
}

/* ── 8. PORTFOLIO GRID ──────────────────────────────────────── */
.ho-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ho-portfolio-grid--large {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.ho-portfolio-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: var(--r-lg);
    display: block;
    background: var(--g1);
    cursor: pointer;
}

.ho-portfolio-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.ho-portfolio-card:hover .ho-portfolio-card__img { transform: scale(1.04); }

.ho-portfolio-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%);
}

.ho-portfolio-card__overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 16px 16px;
    background: linear-gradient(to top, rgba(13,13,13,0.85) 0%, transparent 100%);
    color: var(--white);
    transition: opacity 0.25s;
}

.ho-portfolio-card__label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.ho-portfolio-card__title {
    font-size: 1rem;
    font-weight: 400;
}

/* Filter tabs */
.ho-filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.ho-filter-btn {
    padding: 8px 18px;
    border: 1.5px solid var(--g2);
    border-radius: 100px;
    background: var(--white);
    color: var(--g4);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.ho-filter-btn.active,
.ho-filter-btn:hover {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}

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

.ho-service-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-lg);
    padding: 36px 28px;
    transition: background 0.2s;
}
.ho-service-card:hover { background: rgba(255,255,255,0.09); }

.ho-service-card__icon {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.ho-service-card h3 {
    color: var(--white);
    margin-bottom: 12px;
}

.ho-service-card p {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
}

/* Service detail (services page) */
.ho-service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 0;
}
.ho-service-detail--reverse { direction: rtl; }
.ho-service-detail--reverse > * { direction: ltr; }

.ho-service-detail__img-wrap {
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--beige);
}
.ho-service-detail__placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%);
}

.ho-service-detail__content h2 { margin-bottom: 16px; }
.ho-service-detail__content p { margin-bottom: 16px; color: var(--g5); }

.ho-service-detail__list {
    margin: 20px 0 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ho-service-detail__list li {
    font-size: 0.9rem;
    color: var(--g5);
}

.ho-price-tag {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 24px;
    padding: 12px 16px;
    background: var(--beige);
    border-radius: var(--r);
    display: inline-block;
}
.ho-price-tag strong { font-size: 1.4rem; }
.ho-price-note { font-size: 0.85rem; color: var(--g4); }

/* ── 10. ABOUT TEASER ───────────────────────────────────────── */
.ho-about-teaser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.ho-about-teaser__img-wrap {
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
}
.ho-about-teaser__placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%);
}

.ho-about-teaser__content h2 { margin-bottom: 16px; }
.ho-about-teaser__content p { margin-bottom: 16px; color: var(--g5); }
.ho-about-teaser__content .ho-btn { margin-top: 8px; }

/* About detail page */
.ho-about-detail {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}
.ho-about-detail__img-wrap {
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    position: sticky;
    top: calc(var(--nav-h) + 24px);
}
.ho-about-detail__placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%);
}
.ho-about-detail__content h2 { margin-bottom: 20px; }
.ho-about-detail__content p { margin-bottom: 16px; color: var(--g5); }

/* Credentials */
.ho-credentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.ho-credential-card {
    background: var(--white);
    border: 1px solid var(--beige-dark);
    border-radius: var(--r-lg);
    padding: 28px;
}
.ho-credential-card__icon { font-size: 1.6rem; margin-bottom: 12px; }
.ho-credential-card h3 { margin-bottom: 8px; font-size: 1rem; font-weight: 600; }
.ho-credential-card p { font-size: 0.9rem; color: var(--g4); }

/* Values */
.ho-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ho-value-item {
    padding: 36px 24px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-lg);
}
.ho-value-item__icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 16px; }
.ho-value-item h3 { color: var(--white); margin-bottom: 10px; }
.ho-value-item p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }

/* ── 11. COURSE TEASER ──────────────────────────────────────── */
.ho-course-teaser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.ho-course-teaser__content h2 { margin-bottom: 16px; }
.ho-course-teaser__content p { margin-bottom: 16px; color: var(--g5); }
.ho-course-teaser__img-wrap {
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 1;
}
.ho-course-teaser__placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, var(--black-soft) 0%, var(--g5) 100%);
}

/* Course detail page */
.ho-course-detail {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}
.ho-course-detail__img-wrap {
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    position: sticky;
    top: calc(var(--nav-h) + 24px);
}
.ho-course-detail__content h2 { margin-bottom: 16px; }
.ho-course-detail__content p { margin-bottom: 16px; color: var(--g5); }

/* Curriculum */
.ho-curriculum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ho-curriculum-module {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-lg);
    padding: 32px 24px;
}
.ho-curriculum-day {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
.ho-curriculum-module h3 { color: var(--white); margin-bottom: 16px; }
.ho-curriculum-module ul { display: flex; flex-direction: column; gap: 8px; }
.ho-curriculum-module li { font-size: 0.9rem; color: rgba(255,255,255,0.65); padding-left: 12px; position: relative; }
.ho-curriculum-module li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

/* Includes */
.ho-includes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.ho-include-card {
    background: var(--white);
    border: 1px solid var(--beige-dark);
    border-radius: var(--r-lg);
    padding: 28px 20px;
    text-align: center;
}
.ho-include-card__icon { font-size: 2rem; margin-bottom: 12px; }
.ho-include-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.ho-include-card p { font-size: 0.875rem; color: var(--g4); }

/* Course dates */
.ho-course-dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.ho-course-date-card {
    background: var(--white);
    border: 1.5px solid var(--g2);
    border-radius: var(--r-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ho-course-date-card h4 { font-size: 1rem; }
.ho-course-date-card p { font-size: 0.875rem; color: var(--g4); }
.ho-course-date-card .ho-btn { margin-top: auto; align-self: flex-start; }
.ho-course-dates-placeholder {
    text-align: center;
    padding: 40px;
    background: var(--g1);
    border-radius: var(--r-lg);
    color: var(--g4);
}
.ho-course-dates-placeholder a { color: var(--black); text-decoration: underline; }

/* ── 12. TESTIMONIALS ───────────────────────────────────────── */
.ho-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ho-testimonial {
    background: var(--white);
    border: 1px solid var(--g2);
    border-radius: var(--r-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.ho-testimonial__quote {
    font-style: italic;
    color: var(--g5);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.ho-testimonial__author {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--g4);
}

/* ── 13. CTA BANNER ─────────────────────────────────────────── */
.ho-cta-banner {
    background: var(--black);
    padding: 80px 0;
}

.ho-cta-banner__inner {
    text-align: center;
}

.ho-cta-banner h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.ho-cta-banner p {
    color: rgba(255,255,255,0.6);
    margin: 0 auto 36px;
}

.ho-cta-banner__btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── 14. PAGE HERO ──────────────────────────────────────────── */
.ho-page-hero {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 64px;
}

.ho-page-hero--short { padding: 60px 0 48px; }

.ho-page-hero p { color: rgba(255,255,255,0.65); margin-top: 12px; max-width: 50ch; }

/* ── 15. CONTACT PAGE ───────────────────────────────────────── */
.ho-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

.ho-contact-methods { display: flex; flex-direction: column; gap: 20px; }

.ho-contact-card {
    background: var(--white);
    border: 1px solid var(--g2);
    border-radius: var(--r-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}
.ho-contact-card__icon { font-size: 1.8rem; margin-bottom: 12px; }
.ho-contact-card h3 { margin-bottom: 8px; }
.ho-contact-card p { font-size: 0.9rem; color: var(--g4); margin-bottom: 16px; }

.ho-contact-form-wrap h2 { margin-bottom: 8px; }
.ho-contact-form-wrap > p { color: var(--g4); margin-bottom: 28px; font-size: 0.9rem; }

.ho-form-placeholder {
    background: var(--g1);
    border-radius: var(--r-lg);
    padding: 40px;
    text-align: center;
    color: var(--g4);
}
.ho-form-placeholder p { margin-bottom: 16px; max-width: none; }

/* Business hours */
.ho-hours-table {
    max-width: 480px;
    margin: 0 auto;
}
.ho-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--beige-dark);
    font-size: 0.95rem;
}
.ho-hours-row:last-child { border-bottom: none; }
.ho-hours-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--g4);
    text-align: center;
    max-width: none;
}

/* ── 16. FAQ ────────────────────────────────────────────────── */
.ho-faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ho-faq-item {
    background: var(--white);
    border: 1px solid var(--beige-dark);
    border-radius: var(--r);
    overflow: hidden;
}

.ho-faq-item summary {
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}
.ho-faq-item summary::-webkit-details-marker { display: none; }
.ho-faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--gold); transition: transform 0.25s; }
.ho-faq-item[open] summary::after { transform: rotate(45deg); }

.ho-faq-item p {
    padding: 0 20px 18px;
    font-size: 0.9rem;
    color: var(--g4);
    line-height: 1.7;
    max-width: none;
}

/* ── 17. PORTFOLIO WORK DETAIL ──────────────────────────────── */
.ho-work-detail {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: start;
}

.ho-before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.ho-before-after__panel { display: flex; flex-direction: column; gap: 8px; }
.ho-before-after__label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--g4);
}
.ho-before-after__img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--r);
}
.ho-before-after__placeholder {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%);
    border-radius: var(--r);
}

.ho-work-detail__content { padding-top: 12px; }
.ho-work-detail__content h2 { margin-bottom: 16px; }
.ho-work-detail__description { margin-bottom: 24px; color: var(--g5); }

/* ── 18. PAGINATION ─────────────────────────────────────────── */
.ho-pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}
.ho-pagination .page-numbers {
    display: inline-flex;
    gap: 8px;
}
.ho-pagination a, .ho-pagination span {
    padding: 8px 14px;
    border: 1.5px solid var(--g2);
    border-radius: var(--r);
    font-size: 0.875rem;
    color: var(--black);
    transition: all 0.15s;
}
.ho-pagination a:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.ho-pagination .current { background: var(--black); color: var(--white); border-color: var(--black); }

/* ── 19. FOOTER ─────────────────────────────────────────────── */
.ho-footer {
    background: var(--black);
    color: rgba(255,255,255,0.65);
}

.ho-footer__inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 64px 24px 48px;
}

.ho-footer__logo .ho-logo-img { filter: brightness(0) invert(1); opacity: 0.85; }
.ho-footer__logo .ho-logo-text { color: var(--white); font-size: 1.1rem; }
.ho-footer__tagline { font-size: 0.875rem; margin-top: 12px; line-height: 1.6; max-width: 28ch; }

.ho-footer__social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.ho-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    transition: all 0.2s;
}
.ho-social-btn:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.ho-footer__heading {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
}

.ho-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.ho-footer__col a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.15s;
}
.ho-footer__col a:hover { color: var(--white); }
.ho-footer__col li:not(:has(a)) { font-size: 0.875rem; color: rgba(255,255,255,0.45); }

.ho-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 24px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ── 20. WHATSAPP FLOAT ─────────────────────────────────────── */
.ho-wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}
.ho-wa-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* ── 21. RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .ho-services-grid { grid-template-columns: 1fr 1fr; }
    .ho-includes-grid { grid-template-columns: repeat(2, 1fr); }
    .ho-curriculum-grid { grid-template-columns: 1fr; gap: 16px; }
    .ho-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .ho-values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --section-py: 56px; }

    /* Nav → hamburger */
    .ho-nav { display: none; }
    .ho-hamburger { display: flex; }

    /* Hero */
    .ho-hero { min-height: 70vh; }
    .ho-hero__ctas { flex-direction: column; }
    .ho-hero__ctas .ho-btn { width: 100%; justify-content: center; }

    /* Trust bar */
    .ho-trust-bar__inner { gap: 16px; justify-content: flex-start; overflow-x: auto; padding: 0 24px; flex-wrap: nowrap; }

    /* Portfolio */
    .ho-portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

    /* Service detail */
    .ho-service-detail,
    .ho-service-detail--reverse { grid-template-columns: 1fr; direction: ltr; gap: 28px; }

    /* About / course */
    .ho-about-teaser,
    .ho-about-detail,
    .ho-course-teaser,
    .ho-course-detail { grid-template-columns: 1fr; gap: 28px; }
    .ho-about-detail__img-wrap { position: static; }
    .ho-course-detail__img-wrap { position: static; }

    /* Testimonials */
    .ho-testimonials-grid { grid-template-columns: 1fr; }

    /* Services */
    .ho-services-grid { grid-template-columns: 1fr; }

    /* Credentials */
    .ho-credentials-grid { grid-template-columns: 1fr; }
    .ho-values-grid { grid-template-columns: 1fr; }

    /* Contact */
    .ho-contact-layout { grid-template-columns: 1fr; gap: 40px; }

    /* Work detail */
    .ho-work-detail { grid-template-columns: 1fr; gap: 32px; }

    /* Footer */
    .ho-footer__inner { grid-template-columns: 1fr; gap: 28px; padding: 40px 24px; }

    /* Curriculum */
    .ho-curriculum-grid { grid-template-columns: 1fr; }
    .ho-includes-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .ho-portfolio-grid { grid-template-columns: 1fr; }
    .ho-before-after { grid-template-columns: 1fr; }
    .ho-credentials-grid { grid-template-columns: 1fr; }
    .ho-cta-banner__btns { flex-direction: column; }
    .ho-cta-banner__btns .ho-btn { width: 100%; justify-content: center; }
}

/* ── 22. WPFORMS OVERRIDES ──────────────────────────────────── */
.wpforms-container { font-family: 'Helvetica Neue', Arial, sans-serif !important; }
.wpforms-field input,
.wpforms-field select,
.wpforms-field textarea {
    border: 1.5px solid var(--g2) !important;
    border-radius: var(--r) !important;
    padding: 12px 14px !important;
    font-size: 0.9rem !important;
    transition: border-color 0.2s !important;
}
.wpforms-field input:focus,
.wpforms-field select:focus,
.wpforms-field textarea:focus {
    border-color: var(--black) !important;
    outline: none !important;
}
.wpforms-submit {
    background: var(--black) !important;
    border-color: var(--black) !important;
    border-radius: var(--r) !important;
    padding: 13px 28px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
}

/* ── PRICE LIST ─────────────────────────────────────────────── */
.ho-price-list {
    max-width: 760px;
    margin: 0 auto;
}
.ho-price-category {
    margin-bottom: 3rem;
}
.ho-price-category__title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--beige-dark);
}
.ho-price-category__items {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.ho-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1.5rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--g2);
}
.ho-price-row:last-child {
    border-bottom: none;
}
.ho-price-row__name {
    font-size: 1rem;
    color: var(--black);
    flex: 1;
}
.ho-price-row__zh {
    font-size: 0.85rem;
    color: var(--g4);
    margin-left: 0.4em;
}
.ho-price-row__price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black-soft);
    white-space: nowrap;
}
.ho-price-list__note {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: var(--g4);
    line-height: 1.6;
}
.ho-price-list__cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}
@media (max-width: 480px) {
    .ho-price-row {
        flex-direction: column;
        gap: 0.25rem;
        align-items: flex-start;
    }
    .ho-price-row__price {
        color: var(--gold);
    }
    .ho-price-list__cta {
        flex-direction: column;
    }
    .ho-price-list__cta .ho-btn {
        width: 100%;
        text-align: center;
    }
}
