/* ============================================================
   House of Grooming — Frontend Styles
   Colour palette: Black #111 | Gold #E63946 | White #fff | Light grey #f5f5f5
   ============================================================ */

:root {
    --hog-black: #111111;
    --hog-dark:  #1c1c1c;
    --hog-gold:  #E63946;
    --hog-gold-light: #ff6b75;
    --hog-white: #ffffff;
    --hog-grey:  #f5f5f5;
    --hog-text:  #333333;
    --hog-muted: #777777;
    --hog-radius: 6px;
    --hog-transition: 0.25s ease;
}

/* ── UTILITY ─────────────────────────────────────────────── */
.hog-section {
    padding: 70px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.hog-section--dark {
    background: var(--hog-dark);
    max-width: 100%;
    padding: 70px 20px;
}
.hog-section--dark .hog-section {
    padding: 0;
    margin: 0 auto;
}
.hog-section--gold {
    background: var(--hog-gold);
    max-width: 100%;
    padding: 70px 20px;
}

.hog-section__head {
    text-align: center;
    margin-bottom: 50px;
}
.hog-section__head h2 { font-size: 2.2em; margin: 0 0 12px; color: var(--hog-black); }
.hog-section__head p  { font-size: 1.1em; color: var(--hog-muted); margin: 0; }
.hog-section__head--light h2 { color: var(--hog-white); }
.hog-section__head--light p  { color: rgba(255,255,255,0.7); }

.hog-section__cta {
    text-align: center;
    margin-top: 40px;
}

.hog-empty {
    text-align: center;
    color: var(--hog-muted);
    font-style: italic;
    padding: 30px;
    border: 2px dashed #ddd;
    border-radius: var(--hog-radius);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.hog-btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: var(--hog-radius);
    font-weight: 600;
    font-size: 0.95em;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: all var(--hog-transition);
    cursor: pointer;
    border: 2px solid transparent;
}
.hog-btn--gold    { background: var(--hog-gold);  color: var(--hog-white); border-color: var(--hog-gold); }
.hog-btn--gold:hover { background: var(--hog-gold-light); border-color: var(--hog-gold-light); color: var(--hog-white); transform: translateY(-2px); }
.hog-btn--dark    { background: var(--hog-black); color: var(--hog-white); border-color: var(--hog-black); }
.hog-btn--dark:hover { background: var(--hog-dark); transform: translateY(-2px); }
.hog-btn--outline { background: transparent; color: var(--hog-white); border-color: var(--hog-white); }
.hog-btn--outline:hover { background: var(--hog-white); color: var(--hog-black); }
.hog-btn--sm { padding: 10px 22px; font-size: 0.88em; }

/* ── HERO ─────────────────────────────────────────────────── */
.hog-hero {
    background: var(--hog-black);
    color: var(--hog-white);
    padding: 120px 20px;
    text-align: center;
}
.hog-hero__eyebrow {
    font-size: 0.85em;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hog-gold);
    margin: 0 0 16px;
}
.hog-hero__heading {
    font-size: clamp(2.5em, 6vw, 5em);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px;
    color: var(--hog-white);
}
.hog-hero__sub {
    font-size: 1.15em;
    opacity: 0.8;
    margin: 0 0 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.hog-hero__btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── ABOUT STRIP (homepage) ──────────────────────────────── */
.hog-about-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 70px 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.hog-about-strip__text h2 { font-size: 2em; margin: 0 0 20px; }
.hog-about-strip__text p  { font-size: 1.05em; line-height: 1.8; color: var(--hog-text); margin: 0 0 28px; }
.hog-about-strip__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}
.hog-stat__num   { display: block; font-size: 2.5em; font-weight: 800; color: var(--hog-gold); }
.hog-stat__label { display: block; font-size: 0.85em; color: var(--hog-muted); margin-top: 6px; }

/* ── SERVICES GRID ───────────────────────────────────────── */
.hog-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.hog-service-card {
    background: var(--hog-white);
    border: 1px solid #e8e8e8;
    border-radius: var(--hog-radius);
    overflow: hidden;
    transition: box-shadow var(--hog-transition), transform var(--hog-transition);
}
.hog-service-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.12); transform: translateY(-4px); }
.hog-service-card__img { height: 220px; overflow: hidden; }
.hog-service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.hog-service-card:hover .hog-service-card__img img { transform: scale(1.08); }
.hog-service-card__body { padding: 22px; }
.hog-service-card__body h3 { margin: 0 0 12px; font-size: 1.25em; }
.hog-service-card__meta { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.hog-price    { font-size: 1.3em; font-weight: 700; color: var(--hog-gold); }
.hog-duration { font-size: 0.88em; color: var(--hog-muted); }
.hog-service-card__desc { font-size: 0.93em; line-height: 1.7; color: var(--hog-text); margin-bottom: 18px; }

/* ── SERVICES LIST ───────────────────────────────────────── */
.hog-services-list { max-width: 900px; margin: 0 auto; }
.hog-service-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid #e8e8e8;
}
.hog-service-row:last-child { border-bottom: none; }
.hog-service-row__left h3   { margin: 0 0 6px; font-size: 1.2em; }
.hog-service-row__duration  { font-size: 0.85em; color: var(--hog-muted); display: block; margin-bottom: 10px; }
.hog-service-row__desc      { font-size: 0.93em; line-height: 1.7; color: var(--hog-text); }
.hog-service-row__right     { text-align: right; flex-shrink: 0; }
.hog-service-row__price     { display: block; font-size: 1.5em; font-weight: 700; color: var(--hog-gold); margin-bottom: 12px; }
.hog-services-book-cta      { text-align: center; padding: 50px 0 20px; }
.hog-services-book-cta p    { font-size: 1.1em; margin-bottom: 20px; color: var(--hog-muted); }

/* ── FEATURED WORK (homepage) ────────────────────────────── */
.hog-featured-work {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.hog-featured-work__video {
    position: relative;
    border-radius: var(--hog-radius);
    overflow: hidden;
    aspect-ratio: 9/16;
    max-height: 420px;
}
.hog-featured-work__video video,
.hog-featured-work__video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hog-featured-work__photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.hog-featured-work__photo {
    position: relative;
    border-radius: var(--hog-radius);
    overflow: hidden;
    aspect-ratio: 1;
}
.hog-featured-work__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.hog-featured-work__photo:hover img { transform: scale(1.05); }

/* ── GALLERY VIDEO FEATURE (gallery page) ────────────────── */
.hog-gallery-video-feature {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    padding: 30px;
    background: var(--hog-grey);
    border-radius: var(--hog-radius);
}
.hog-gallery-video-feature__wrap {
    position: relative;
    flex: 0 0 220px;
    border-radius: var(--hog-radius);
    overflow: hidden;
}
.hog-gallery-video-feature__wrap video {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    display: block;
}
.hog-gallery-video-feature__text h3 { font-size: 1.6em; margin: 0 0 12px; }
.hog-gallery-video-feature__text p  { color: var(--hog-muted); font-size: 1em; }

/* ── GALLERY GRID (all 21 photos) ────────────────────────── */
.hog-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}
.hog-gallery-item {
    display: block;
    position: relative;
    border-radius: var(--hog-radius);
    overflow: hidden;
    aspect-ratio: 1;
    text-decoration: none;
}
.hog-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}
.hog-gallery-item:hover img { transform: scale(1.06); }
.hog-gallery-item:hover .hog-gallery__badge { opacity: 1; transform: translateY(0); }

/* ── GALLERY BADGE ───────────────────────────────────────── */
.hog-gallery__badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.75);
    color: var(--hog-gold);
    font-size: 0.78em;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 3px;
    opacity: 0;
    transform: translateY(4px);
    transition: all var(--hog-transition);
    pointer-events: none;
}
.hog-featured-work__video .hog-gallery__badge,
.hog-gallery-video-feature__wrap .hog-gallery__badge { opacity: 1; transform: none; }

/* ── VIDEO ───────────────────────────────────────────────── */
.hog-video-card {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.hog-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.hog-testimonial {
    background: var(--hog-grey);
    padding: 30px;
    border-radius: var(--hog-radius);
    border-top: 3px solid var(--hog-gold);
}
.hog-stars { margin-bottom: 16px; }
.hog-star { font-size: 1.1em; color: #ddd; }
.hog-star--on { color: var(--hog-gold); }
.hog-testimonial blockquote {
    margin: 0 0 18px;
    font-style: italic;
    line-height: 1.8;
    color: var(--hog-text);
    font-size: 0.97em;
}
.hog-testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--hog-black);
    font-size: 0.9em;
}

/* ── OPENING HOURS ───────────────────────────────────────── */
.hog-hours h3 { font-size: 1.2em; margin: 0 0 16px; }
.hog-hours__list { list-style: none; margin: 0; padding: 0; }
.hog-hours__row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    font-size: 0.95em;
}
.hog-hours__row:last-child { border-bottom: none; }
.hog-hours__row--today { font-weight: 700; color: var(--hog-gold); }
.hog-hours__row--today .hog-hours__day em { font-weight: 400; font-style: normal; color: var(--hog-muted); font-size: 0.85em; }
.hog-hours__day  { color: inherit; }
.hog-hours__time { color: var(--hog-muted); }
.hog-hours__row--today .hog-hours__time { color: var(--hog-gold); }

/* ── HOURS + CTA (homepage section) ─────────────────────── */
.hog-hours-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}
.hog-hours-cta__action h2 { font-size: 2em; margin: 0 0 14px; color: var(--hog-white); }
.hog-hours-cta__action p  { margin: 0 0 28px; color: rgba(255,255,255,0.85); }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.hog-about-page {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}
.hog-about-page__text h1 { font-size: 2.5em; margin: 0 0 24px; }
.hog-lead   { font-size: 1.2em; font-weight: 600; color: var(--hog-text); margin-bottom: 24px; }
.hog-tagline { font-size: 1.15em; font-weight: 700; color: var(--hog-gold); margin: 28px 0; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.hog-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}
.hog-contact-layout__info h1 { font-size: 2.2em; margin: 0 0 30px; }

.hog-contact-info { margin-bottom: 30px; }
.hog-contact-info__item { margin-bottom: 22px; }
.hog-contact-info__item strong { display: block; font-size: 0.8em; letter-spacing: 0.1em; text-transform: uppercase; color: var(--hog-muted); margin-bottom: 6px; }
.hog-contact-info__item p { margin: 0; line-height: 1.7; }
.hog-contact-info__item a { color: var(--hog-text); text-decoration: none; }
.hog-contact-info__item a:hover { color: var(--hog-gold); }
.hog-link { color: var(--hog-gold); font-size: 0.9em; font-weight: 600; text-decoration: none; }
.hog-link:hover { text-decoration: underline; }

.hog-contact-layout__form h2 { font-size: 1.6em; margin: 0 0 12px; }
.hog-contact-layout__form p  { color: var(--hog-muted); margin-bottom: 28px; }

/* CF7 placeholder notice */
.hog-cf7-placeholder {
    background: #fff8e5;
    border: 2px dashed #e0a800;
    border-radius: var(--hog-radius);
    padding: 24px;
    font-size: 0.93em;
    line-height: 1.7;
}
.hog-cf7-placeholder code { background: #f0f0f0; padding: 2px 6px; border-radius: 3px; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media ( max-width: 900px ) {
    .hog-about-strip,
    .hog-about-page,
    .hog-contact-layout,
    .hog-hours-cta { grid-template-columns: 1fr; gap: 36px; }

    .hog-featured-work { grid-template-columns: 1fr; }
    .hog-featured-work__video { max-height: 280px; aspect-ratio: 16/9; }

    .hog-gallery-video-feature { flex-direction: column; }
    .hog-gallery-video-feature__wrap { flex: 0 0 auto; width: 100%; max-width: 260px; margin: 0 auto; }

    .hog-about-strip__stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

@media ( max-width: 600px ) {
    .hog-hero { padding: 80px 20px; }
    .hog-section { padding: 50px 16px; }
    .hog-gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .hog-services-grid { grid-template-columns: 1fr; }
    .hog-about-strip__stats { grid-template-columns: 1fr; }

    .hog-service-row { flex-direction: column; }
    .hog-service-row__right { text-align: left; display: flex; align-items: center; gap: 20px; }

    .hog-testimonials { grid-template-columns: 1fr; }
}

/* ── WHATSAPP BUTTON ─────────────────────────────────────── */
.hog-btn--whatsapp {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
    display: inline-flex;
    align-items: center;
}
.hog-btn--whatsapp:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
    color: #fff;
    transform: translateY(-2px);
}

/* ── FLOATING WHATSAPP BUTTON ────────────────────────────── */
.hog-wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9000;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9em;
    box-shadow: 0 4px 16px rgba(37,211,102,0.45);
    transition: all 0.25s ease;
}
.hog-wa-float:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 6px 22px rgba(37,211,102,0.55);
    color: #fff;
}
.hog-wa-float svg {
    flex-shrink: 0;
}

@media (max-width: 600px) {
    /* On mobile, collapse to icon only */
    .hog-wa-float span {
        display: none;
    }
    .hog-wa-float {
        padding: 16px;
        border-radius: 50%;
        bottom: 20px;
        right: 16px;
    }
}

/* ── INSTAGRAM BUTTON ────────────────────────────────────── */
.hog-btn--instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    border-color: transparent;
    display: inline-flex;
    align-items: center;
}
.hog-btn--instagram:hover {
    opacity: 0.9;
    color: #fff;
    transform: translateY(-2px);
}

/* ── HERO WITH IMAGE BACKGROUND ──────────────────────────── */
.hog-hero--image {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
}
.hog-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.55) 60%,
        rgba(0,0,0,0.72) 100%
    );
}
.hog-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

/* ── ABOUT HERO BANNER ───────────────────────────────────── */
.hog-about-hero {
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
}
.hog-about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.80) 0%,
        rgba(0,0,0,0.20) 60%,
        rgba(0,0,0,0.10) 100%
    );
}
.hog-about-hero__text {
    position: relative;
    z-index: 1;
    padding: 36px 40px;
    color: #fff;
}
.hog-about-hero__text h2 {
    font-size: 2.2em;
    margin: 0 0 6px;
    color: #fff;
}
.hog-about-hero__text p {
    margin: 0;
    color: rgba(255,255,255,0.8);
    font-size: 1em;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ── ABOUT PAGE BUTTONS ──────────────────────────────────── */
.hog-about-page__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

/* ── WORK MOSAIC (about page) ────────────────────────────── */
.hog-work-mosaic {
    background: var(--hog-grey);
    padding: 60px 20px;
}
.hog-work-mosaic__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    max-width: 1200px;
    margin: 0 auto 30px;
}
.hog-work-mosaic__head h2 { margin: 0; font-size: 2em; }

.hog-work-mosaic__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}
.hog-work-mosaic__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--hog-radius);
}
.hog-work-mosaic__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.hog-work-mosaic__item:hover img { transform: scale(1.06); }

/* Item 1 spans 2 rows on the left */
.hog-work-mosaic__item--1 { grid-row: span 2; }
/* Items 2–4 fill the right columns */
.hog-work-mosaic__item--2 { grid-column: 2; grid-row: 1; }
.hog-work-mosaic__item--3 { grid-column: 3; grid-row: 1; }
.hog-work-mosaic__item--4 { grid-column: 2 / span 2; grid-row: 2; }

@media (max-width: 700px) {
    .hog-work-mosaic__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px;
    }
    .hog-work-mosaic__item--1 { grid-column: 1 / span 2; grid-row: 1; }
    .hog-work-mosaic__item--2 { grid-column: 1; grid-row: 2; }
    .hog-work-mosaic__item--3 { grid-column: 2; grid-row: 2; }
    .hog-work-mosaic__item--4 { display: none; }
}

/* ── SERVICES HERO BANNER ────────────────────────────────── */
.hog-services-hero {
    width: 100%;
    height: 340px;
    background-size: cover;
    background-position: center 20%;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}
.hog-services-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.60);
}
.hog-services-hero__text {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 0 40px;
    max-width: 700px;
}
.hog-services-hero__text h2 {
    font-size: 2.6em;
    margin: 0 0 10px;
    color: #fff;
}
.hog-services-hero__text p {
    margin: 0;
    font-size: 1.05em;
    opacity: 0.85;
}

/* ── AFTER HOURS CALLOUT ─────────────────────────────────── */
.hog-callout--after-hours {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    text-align: center;
}
.hog-callout__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}
.hog-callout__inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    color: #fff;
}
.hog-callout__label {
    display: inline-block;
    background: var(--hog-gold);
    color: var(--hog-white);
    font-size: 0.78em;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 3px;
    margin-bottom: 18px;
}
.hog-callout__inner h2 {
    color: #fff;
    font-size: 2.2em;
    margin: 0 0 14px;
}
.hog-callout__inner p {
    opacity: 0.85;
    margin: 0 0 28px;
    font-size: 1.05em;
}

/* ── FIXES: IMAGE POSITIONING ────────────────────────────── */

/* Hero — pull focus to upper-centre of image (the subject's head, not floor) */
.hog-hero--image {
    background-position: center 15% !important;
    min-height: 560px;
}

/* About hero — same issue, subject is mid-frame */
.hog-about-hero {
    background-position: center 25% !important;
    height: 460px;
}

/* Services hero — face/cut is upper-middle of image01 */
.hog-services-hero {
    background-position: center 20% !important;
}

/* ── FIX: Hide GeneratePress page title on pages with hero banners ── */
/* Targets the H1 that GP adds above page content on About/Services */
.page-id-about .entry-title,
.page-template-default .entry-title,
body.page .entry-header {
    display: none;
}

/* More reliable: target by slug class GP adds to body */
.page-slug-about .entry-header,
.page-slug-services .entry-header {
    display: none;
}

/* ── FIX: Instagram + Book Now buttons alignment ─────────── */
.hog-about-page__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;  /* vertical alignment */
    margin-top: 30px;
}

/* Make both buttons the same height and padding */
.hog-about-page__btns .hog-btn {
    padding: 14px 28px;
    font-size: 0.95em;
    line-height: 1.2;
    white-space: nowrap;
}

/* Instagram button — don't let it stretch full width */
.hog-about-page__btns .hog-btn--instagram {
    flex: 0 0 auto;
}

/* Prevent buttons ever going full-width on small screens unless needed */
@media (max-width: 500px) {
    .hog-about-page__btns {
        flex-direction: column;
        align-items: flex-start;
    }
    .hog-about-page__btns .hog-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ── BUTTON FIXES ────────────────────────────────────────── */

/* Fix Book Now + Instagram sitting side by side properly */
.hog-about-page__btns {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 14px !important;
    align-items: center !important;
    margin-top: 30px !important;
}

.hog-about-page__btns .hog-btn {
    flex: 0 0 auto !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
}

/* Fix Instagram button stretching full width on gallery page */
.hog-section__cta .hog-btn--instagram {
    display: inline-flex !important;
    width: auto !important;
    flex: 0 0 auto !important;
}

/* Centre the gallery page Instagram CTA properly */
.hog-section__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Override any inherited block/full-width from GeneratePress */
.hog-btn--instagram,
.hog-btn--whatsapp,
.hog-btn--gold,
.hog-btn--dark,
.hog-btn--outline {
    display: inline-flex !important;
    width: auto !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

/* ── GOOGLE MAP ──────────────────────────────────────────── */
.hog-map-wrap {
    width: 100%;
    position: relative;
}
.hog-map-wrap iframe {
    width: 100%;
    display: block;
    border: 0;
}
.hog-map-label {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    background: var(--hog-black);
    color: var(--hog-white);
    padding: 16px 28px;
}
.hog-map-label__name {
    font-weight: 700;
    font-size: 0.95em;
}
.hog-map-label__addr {
    font-size: 0.88em;
    color: rgba(255,255,255,0.7);
}
.hog-map-label__link {
    margin-left: auto;
    color: var(--hog-gold);
    font-weight: 600;
    font-size: 0.88em;
    text-decoration: none;
    white-space: nowrap;
}
.hog-map-label__link:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .hog-map-label { flex-direction: column; align-items: flex-start; gap: 6px; }
    .hog-map-label__link { margin-left: 0; }
}

/* ── LEGAL PAGES (Privacy, Terms, Cookies) ───────────────── */
.hog-legal h1 { font-size: 2.2em; margin-bottom: 8px; }
.hog-legal h2 { font-size: 1.3em; margin: 36px 0 10px; border-bottom: 2px solid var(--hog-gold); padding-bottom: 6px; }
.hog-legal h3 { font-size: 1.1em; margin: 24px 0 8px; color: var(--hog-dark); }
.hog-legal p, .hog-legal li { line-height: 1.85; color: var(--hog-text); font-size: 0.97em; }
.hog-legal ul { padding-left: 22px; margin-bottom: 16px; }
.hog-legal ul li { margin-bottom: 6px; }
.hog-legal a { color: var(--hog-gold); }

.hog-cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0 24px;
    font-size: 0.9em;
}
.hog-cookie-table th {
    background: var(--hog-dark);
    color: var(--hog-white);
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
}
.hog-cookie-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #e8e8e8;
}
.hog-cookie-table tr:last-child td { border-bottom: none; }

/* ── FAQ PAGE ────────────────────────────────────────────── */
.hog-faq { max-width: 800px; margin: 0 auto; }

.hog-faq__item {
    border-bottom: 1px solid #e8e8e8;
    padding: 24px 0;
}
.hog-faq__item:first-child { padding-top: 0; }
.hog-faq__item:last-child  { border-bottom: none; }

.hog-faq__item h3 {
    font-size: 1.15em;
    margin: 0 0 10px;
    color: var(--hog-black);
    cursor: default;
}
.hog-faq__item h3::before {
    content: 'Q — ';
    color: var(--hog-gold);
    font-weight: 700;
}
.hog-faq__item p {
    margin: 0;
    line-height: 1.8;
    color: var(--hog-text);
}
.hog-faq__item a { color: var(--hog-gold); }

/* ── STAT LABELS — text instead of numbers ───────────────── */
.hog-stat__num {
    font-size: 1.6em; /* reduced from 2.5em for text values */
    line-height: 1.2;
}

/* ── OPENING HOURS — today row visible on gold background ── */

/* On red section background, today highlight needs to contrast */
.hog-section--gold .hog-hours__row--today,
.hog-hours-cta .hog-hours__row--today {
    font-weight: 700;
    color: var(--hog-white) !important;
}
.hog-section--gold .hog-hours__row--today .hog-hours__time,
.hog-hours-cta .hog-hours__row--today .hog-hours__time {
    color: var(--hog-white) !important;
}

/* All hours rows on red background — make readable */
.hog-section--gold .hog-hours__row .hog-hours__day,
.hog-hours-cta .hog-hours__row .hog-hours__day {
    color: var(--hog-white);
}
.hog-section--gold .hog-hours__row .hog-hours__time,
.hog-hours-cta .hog-hours__row .hog-hours__time {
    color: rgba(255,255,255,0.8);
}
.hog-section--gold .hog-hours h3,
.hog-hours-cta .hog-hours h3 {
    color: var(--hog-white);
}
.hog-section--gold .hog-hours__row,
.hog-hours-cta .hog-hours__row {
    border-bottom-color: rgba(255,255,255,0.2);
}

/* ── SOCIAL LINKS (contact info) ─────────────────────────── */
.hog-contact-info__item .hog-social-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95em;
    padding: 8px 16px;
    border-radius: 4px;
    transition: opacity 0.2s ease;
}
.hog-social-link--ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff !important;
}
.hog-social-link--ig:hover { opacity: 0.85; }

.hog-social-link--tt {
    background: #010101;
    color: #fff !important;
}
.hog-social-link--tt:hover { opacity: 0.75; }

/* Follow Us container — show links side by side */
.hog-contact-info__item p {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
}

/* ── TIKTOK BUTTON ───────────────────────────────────────── */
.hog-btn--tiktok {
    background: #010101;
    color: #fff;
    border-color: #010101;
    display: inline-flex;
    align-items: center;
}
.hog-btn--tiktok:hover {
    background: #333;
    border-color: #333;
    color: #fff;
    transform: translateY(-2px);
}
