/* ===== COLOR PALETTE ===== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Dancing+Script:wght@600;700&family=League+Spartan:wght@400;500;600;700&display=swap');

:root {
    --primary-green: #a37d28;
    /* Soho Blowbar-inspired gold */
    --accent-green: #c9a24a;
    /* lighter gold for gradients */
    --light-green: #f5ecd8;
    --pale-green: #fff8ec;
    --cream: #fffaf3;
    --dark-text: #23180b;
    --light-text: #ffffff;
    --border-color: #eadbc0;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'League Spartan', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
    background-color: var(--cream);
    line-height: 1.6;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
}

h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
}

p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

/* ===== BUTTONS & CTA ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    color: var(--light-text);
    box-shadow: 0 4px 15px rgba(82, 61, 24, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(82, 61, 24, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--light-text);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
}

.btn-outline:hover {
    background: var(--light-text);
    color: var(--primary-green);
}

/* ===== HEADER & NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--cream);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 1px;
    text-decoration: none;
}

.logo img {
    height: 52px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-green);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
    width: 34px;
    height: 28px;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle:focus-visible {
    outline: 2px solid var(--accent-green);
    outline-offset: 4px;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero {
    margin-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 5% 6rem;
    position: relative;
    overflow: hidden;
    color: var(--light-text);
    background: linear-gradient(135deg, #3d2b0d 0%, #2f2009 48%, #1f1306 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(201, 162, 74, 0.32) 0%, rgba(163, 125, 40, 0.22) 50%, rgba(90, 68, 18, 0.28) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(180deg, rgba(33, 22, 10, 0) 0%, rgba(33, 22, 10, 0.55) 100%); */
    z-index: 1;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: saturate(1.1) brightness(0.95);
}

.hero-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: none;
}

.hero-fallback.is-visible {
    opacity: 1;
    display: block;
}

.hero-fallback--mobile {
    display: block;
}

.hero-fallback--desktop {
    display: none;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide--active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    gap: 1.5rem;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: translateY(10px);
    pointer-events: none;
}

.hero-overlay--active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-headline-solo {
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    line-height: 1.1;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    margin: 0;
}

@media (min-width: 1024px) {
    .hero-overlay {
        align-items: flex-start;
        text-align: left;
        padding-left: clamp(2rem, 10vw, 8rem);
        max-width: 1200px;
        justify-content: center;
    }

    .hero-headline-solo {
        max-width: 780px;
    }
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c9a24a;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 2.2rem;
    background: linear-gradient(135deg, #a37d28, #c49d46);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 12px 28px rgba(163, 125, 40, 0.45);
    margin-top: 0.5rem;
}

.hero-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(163, 125, 40, 0.55);
}

.hero p {
    font-size: 1.18rem;
    color: rgba(249, 248, 245, 0.85);
    max-width: 560px;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-highlights li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 500;
    color: rgba(249, 248, 245, 0.9);
}

.hero-highlights li::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 12px rgba(168, 213, 186, 0.6);
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.hero .btn-primary {
    box-shadow: 0 16px 45px rgba(82, 61, 24, 0.35);
    padding: 14px 34px;
}

.hero .btn-secondary {
    border-color: rgba(249, 248, 245, 0.75);
    color: rgba(249, 248, 245, 0.85);
    background: transparent;
}

.hero .btn-secondary:hover {
    background: rgba(249, 248, 245, 0.95);
    color: var(--primary-green);
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 6rem 5%;
    background: var(--cream);
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #4f4f4f;
    max-width: 600px;
    margin: 0 auto;
}

.section-actions {
    margin-top: 2.25rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.section-actions .btn {
    min-width: 200px;
}

/* ===== ABOUT YANIV SECTION ===== */
.about-yaniv {
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4.5rem;
    background: var(--cream);
    margin-top: 2rem;
}

.about-yaniv__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.7;
}

.about-yaniv__orb--left {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(163, 125, 40, 0.14) 0%, transparent 65%);
    top: -140px;
    left: -140px;
}

.about-yaniv__orb--right {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(117, 141, 104, 0.14) 0%, transparent 70%);
    bottom: -80px;
    right: -80px;
}

.about-yaniv__inner {
    position: relative;
    z-index: 1;
}

.about-yaniv__header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    display: grid;
    gap: 1.1rem;
}

.about-yaniv__logo {
    width: min(93vw, 420px);
    max-width: 420px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.about-yaniv__headline {
    font-size: 1.8rem;
    color: #2f2619;
    margin: 0;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.salon-name-highlight {
    color: #3a3a3a;
    font-style: italic;
    font-weight: 900;
}

.about-yaniv__quote {
    font-size: 1.5rem;
    color: #3f3a2f;
    margin: 0;
    font-style: italic;
}

.about-yaniv__signature {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin: 0 auto;
    color: #3a2c1a;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.about-yaniv__signature img {
    height: 50px;
    width: auto;
    display: block;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.08));
}

.about-yaniv__soho-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0.75rem auto 0;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #a37d28, #c49d46);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(68, 49, 13, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.about-yaniv__soho-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(68, 49, 13, 0.3);
    filter: brightness(1.02);
}

.about-yaniv__visuals {
    position: relative;
    width: min(100%, clamp(280px, 70vw, 640px));
    aspect-ratio: 4 / 3;
    margin: 0 auto;
}

.about-yaniv__frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(24, 17, 6, 0.16);
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.about-yaniv__frame--slide.is-active {
    opacity: 1;
    z-index: 1;
}

.about-yaniv__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.2rem;
    align-items: start;
}

.about-yaniv__copy {
    background: rgba(255, 255, 255, 0.92);
    padding: 2.2rem;
    border-radius: 18px;
    border: 1px solid rgba(163, 125, 40, 0.12);
    box-shadow: 0 24px 60px rgba(24, 17, 6, 0.1);
    backdrop-filter: blur(8px);
}

.about-yaniv__copy h3 {
    font-size: 1.7rem;
    color: #2f2619;
    margin-bottom: 0.8rem;
}

.about-yaniv__copy p {
    color: #4c3a26;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-yaniv__more {
    display: none;
    gap: 1rem;
    flex-direction: column;
}

.about-yaniv__copy.is-expanded .about-yaniv__more {
    display: flex;
}

.about-yaniv__read-more {
    background: transparent;
    border: none;
    color: var(--primary-green);
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 1rem;
}

.about-yaniv__read-more:hover {
    color: var(--accent-green);
}

.about-yaniv__gallery {
    position: relative;
}

.about-yaniv__gallery-inner {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 250, 243, 0.92) 100%);
    border-radius: 18px;
    padding: 1.4rem;
    box-shadow: 0 26px 60px rgba(24, 17, 6, 0.14);
    display: grid;
    gap: 1.1rem;
}

.about-yaniv__gallery-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    object-position: center 56%;
    border-radius: 14px;
    display: block;
    box-shadow: 0 18px 40px rgba(24, 17, 6, 0.1);
}

.featured-services {
    background: #ffffff;
    padding: 5rem 0 5.5rem;
}

.featured-services .page-wrapper {
    max-width: 1440px;
    padding: 0 2.5%;
}

.featured-services__intro {
    text-align: left;
    margin: 0 0 3rem;
    max-width: 920px;
    display: grid;
    gap: 0.65rem;
    justify-items: start;
}

.featured-services__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.9rem;
    color: #8a7c68;
}

.featured-services__intro h2 {
    margin: 0;
    font-size: clamp(2.3rem, 3.4vw, 3.3rem);
    color: #1e1a15;
    letter-spacing: 0.01em;
    font-weight: 500;
    line-height: 1.25;
}

.featured-services__lead {
    margin: 1.2rem 0 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a4e3e;
    max-width: 800px;
}


.featured-services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem 2rem;
}

.featured-services__card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    gap: 1rem;
    align-items: flex-start;
}

.featured-services__image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.featured-services__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-services__body {
    padding: 0;
    display: grid;
    gap: 0.85rem;
    max-width: 520px;
}

.featured-services__body h3 {
    margin: 0;
    color: #1f160f;
    font-size: 1.32rem;
    letter-spacing: 0.01em;
}

.featured-services__body p {
    margin: 0;
    color: #4f4a43;
    line-height: 1.65;
    font-size: 1.26rem;
}

.featured-services__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
}

.featured-services__link span {
    transition: transform 0.2s ease;
}

.featured-services__link:hover span {
    transform: translateX(2px);
}

.featured-services__list {
    margin: 0;
    padding: 0 0 0 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    color: #4f4a43;
    font-size: 1.05rem;
    line-height: 1.5;
}

.featured-services__list li::marker {
    color: var(--primary-green);
}

.featured-services__price {
    font-size: 1.05rem !important;
    color: #2f2418 !important;
    background: #f8f4ee;
    padding: 0.6rem 0.9rem;
    border-radius: 6px;
    border-left: 3px solid var(--primary-green);
}

.featured-services__cta {
    margin-top: 2.8rem;
    display: flex;
    justify-content: center;
}

.featured-services__cta-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: #ffffff;
    border-radius: 999px;
    padding: 0.9rem 2.1rem;
    box-shadow: 0 10px 25px rgba(163, 125, 40, 0.28);
    border: none;
    letter-spacing: 0.02em;
}

.featured-services__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(163, 125, 40, 0.3);
    color: #ffffff;
}

/* ── Featured Panels (accordion) ── */
.featured-panels {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2.2rem;
}

.featured-panel {
    border-bottom: 1px solid rgba(163, 125, 40, 0.18);
    overflow: hidden;
}

.featured-panel:first-child {
    border-top: 1px solid rgba(163, 125, 40, 0.18);
}

.featured-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.35rem 0.5rem;
    cursor: pointer;
    list-style: none;
    transition: background 0.25s ease;
}

.featured-panel__header::-webkit-details-marker {
    display: none;
}

.featured-panel__header:hover {
    background: rgba(163, 125, 40, 0.04);
}

.featured-panel__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 500;
    color: #1f160f;
    letter-spacing: 0.01em;
    line-height: 1.35;
}

.featured-panel__chevron {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-left: 1rem;
    fill: none;
    stroke: #8a7c68;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
}

.featured-panel[open]>.featured-panel__header .featured-panel__chevron {
    transform: rotate(180deg);
}

.featured-panel__body {
    display: flex;
    gap: 2.5rem;
    padding: 0.5rem 0.5rem 2rem;
    align-items: flex-start;
    animation: panelSlideIn 0.35s ease;
}

@keyframes panelSlideIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.featured-panel__image {
    flex: 0 0 280px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 8px;
}

.featured-panel__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-panel__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.featured-panel__content p {
    margin: 0;
    color: #4f4a43;
    font-size: 1.05rem;
    line-height: 1.7;
}

.featured-panel__content h4 {
    margin: 0.6rem 0 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.12rem;
    font-weight: 600;
    color: #2f2619;
    padding-left: 0.75rem;
    border-left: 3px solid var(--primary-green);
    line-height: 1.4;
}

.featured-panel__list {
    margin: 0;
    padding: 0 0 0 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    color: #4f4a43;
    font-size: 1.02rem;
    line-height: 1.55;
}

.featured-panel__list li::marker {
    color: var(--primary-green);
}

.featured-panel__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    margin-top: 0.3rem;
    transition: gap 0.2s ease;
}

.featured-panel__link:hover {
    gap: 0.7rem;
}

/* ── Tablet ── */
@media (max-width: 900px) {
    .featured-panel__body {
        gap: 1.8rem;
    }

    .featured-panel__image {
        flex: 0 0 220px;
    }
}

/* ── Mobile ── */
@media (max-width: 600px) {
    .featured-panel__header {
        padding: 1.1rem 0.3rem;
    }

    .featured-panel__body {
        flex-direction: column;
        gap: 1.2rem;
        padding: 0 0.3rem 1.6rem;
    }

    .featured-panel__image {
        flex: none;
        width: 100%;
        max-width: 400px;
        aspect-ratio: 4 / 5;
    }

    .featured-panel__content p {
        font-size: 0.98rem;
    }
}

@media (min-width: 1200px) {
    .featured-services .page-wrapper {
        max-width: 1500px;
        padding: 0 2.5%;
    }

    .featured-services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.8rem 2.4rem;
    }

    .featured-services__body h3 {
        font-size: 1.32rem;
    }

    .featured-services__body p {
        font-size: 1.26rem;
    }
}

/* ===== SERVICES PAGE MOSAIC ===== */
.services-mosaic-section {
    background: var(--cream);
}

.services-mosaic__wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.services-mosaic__kicker {
    font-family: 'Bebas Neue', 'League Spartan', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 2.5rem;
    color: #050505;
}

.services-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(4, 320px);
    gap: 1.5rem;
}

.services-mosaic__card {
    min-height: 100%;
}

.services-mosaic__card--one {
    grid-column: 1;
    grid-row: 1;
}

.services-mosaic__card--two {
    grid-column: 1;
    grid-row: 2;
}

.services-mosaic__card--three {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.services-mosaic__card--four {
    grid-column: 1;
    grid-row: 3 / span 2;
}

.services-mosaic__card--five {
    grid-column: 2;
    grid-row: 3;
}

.services-mosaic__card--six {
    grid-column: 2;
    grid-row: 4;
}

.signature-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.signature-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 420px;
    display: block;
    box-shadow: 0 30px 60px rgba(34, 25, 12, 0.18);
    isolation: isolate;
}

.signature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.signature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 24, 20, 0.05) 20%, rgba(15, 24, 20, 0.7) 100%);
    z-index: 1;
    transition: opacity 0.35s ease;
}

.signature-card-content {
    position: absolute;
    inset: 0;
    padding: 2.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    z-index: 2;
}

.signature-card h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1.7rem;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.signature-card-arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.signature-card:hover img {
    transform: scale(1.08);
}

.signature-card:hover::after {
    opacity: 0.9;
}

.signature-card:hover .signature-card-arrow {
    background: #ffffff;
    color: #3a2a12;
    border-color: #ffffff;
    transform: translateX(6px);
}

.signature-grid--page {
    margin-top: 2.5rem;
}

.signature-page-wrapper {
    max-width: 1400px;
    padding-left: 5%;
    padding-right: 5%;
}

.signature-description {
    margin-top: 2rem;
    font-size: 1rem;
    color: #4a4239;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(163, 125, 40, 0.12);
    transition: all 0.35s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 580px;
    box-shadow: 0 18px 40px rgba(163, 125, 40, 0.12);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 74, 0.16), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(163, 125, 40, 0.18);
    border-color: rgba(201, 162, 74, 0.4);
}

.service-image {
    position: relative;
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}

.service-card-body {
    padding: 2.2rem 2.4rem 2.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.service-card-category {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-green);
}

.service-card h3 {
    margin-bottom: 0.6rem;
    color: var(--dark-text);
}

.service-card p {
    font-size: 0.98rem;
    color: #3f3f3f;
    margin-bottom: 0.25rem;
}

.service-card-price {
    font-size: 1.28rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-top: 0.25rem;
}

.service-card-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.65rem;
    margin-top: auto;
    padding-top: 1.3rem;
}

.service-card .btn {
    padding: 12px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 1 0;
    min-width: 0;
    white-space: nowrap;
}

.service-card .service-book {
    min-width: 140px;
}

.btn-addon {
    background: rgba(255, 255, 255, 0.65);
    color: var(--primary-green);
    border: 2px solid rgba(163, 125, 40, 0.35);
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    display: inline-flex;
}

.btn-addon:hover,
.btn-addon[aria-expanded="true"] {
    background: var(--primary-green);
    color: var(--light-text);
    border-color: var(--primary-green);
}

.service-addons {
    margin-top: 0;
    border-radius: 10px;
    background: rgba(201, 162, 74, 0.12);
    border: 1px solid transparent;
    overflow: hidden;
    max-height: 0;
    padding: 0 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.35s ease, padding 0.25s ease, opacity 0.25s ease, border-color 0.25s ease, margin 0.25s ease;
}

.service-addons[aria-hidden="false"] {
    max-height: 280px;
    padding: 1.2rem 1.5rem 1.35rem;
    margin-top: 1.1rem;
    margin-bottom: 0.75rem;
    opacity: 1;
    pointer-events: auto;
    border-color: rgba(163, 125, 40, 0.18);
}

.service-addons h4 {
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #caa652;
    font-weight: 700;
    margin-bottom: 0.9rem;
}

.service-addons ul {
    list-style: disc;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    color: #4b3823;
    padding-left: 1.2rem;
    margin: 0;
}

.service-addons li {
    font-size: 0.97rem;
    line-height: 1.6;
}

.service-addons li::marker {
    color: #caa652;
}

@media (max-width: 1024px) {
    .services {
        padding: 5rem 4%;
    }

    .about-yaniv {
        padding: 5rem 0 4rem;
        background: #ffffff;
    }

    .about-yaniv__grid {
        grid-template-columns: 1fr;
    }

    .about-yaniv__copy {
        order: 2;
    }

    .about-yaniv__gallery {
        order: 1;
    }

    .featured-services {
        padding: 5rem 3%;
    }

    .featured-services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.2rem 1.4rem;
    }

    .services-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-rows: auto;
    }

    .services-mosaic__card {
        grid-column: auto;
        grid-row: auto;
    }

    .services-mosaic__card--one,
    .services-mosaic__card--two,
    .services-mosaic__card--three,
    .services-mosaic__card--four,
    .services-mosaic__card--five,
    .services-mosaic__card--six {
        grid-column: auto;
        grid-row: auto;
    }

    .signature-grid {
        gap: 1.5rem;
    }

    .service-card {
        min-height: 560px;
    }

    .service-image {
        height: 300px;
    }

    .service-card-body {
        padding: 2rem 2.1rem 2.2rem;
    }

    .gallery {
        padding: 4.5rem 0;
    }

    .gallery-inner {
        padding: 0 3%;
    }

    .gallery-feature {
        grid-template-columns: 1fr;
    }

    .gallery-feature__content h2 {
        font-size: 2.5rem;
    }

    .gallery-mosaic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 220px;
    }

    .gallery-mosaic__item--primary,
    .gallery-mosaic__item--secondary,
    .gallery-mosaic__item--tertiary,
    .gallery-mosaic__item--more {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 4.5rem 1.4rem;
    }

    .about-yaniv {
        padding: 4.25rem 0 3.5rem;
    }

    .about-yaniv__header {
        margin-bottom: 2.5rem;
        gap: 0.9rem;
    }

    .about-yaniv__headline {
        font-size: 1.5rem;
    }

    .about-yaniv__quote {
        font-size: 1.3rem;
    }

    .about-yaniv__soho-cta {
        width: 100%;
        max-width: 420px;
        padding: 0.85rem 1.15rem;
        font-size: 0.92rem;
    }

    .about-yaniv__visuals {
        width: 100%;
    }

    .about-yaniv__grid {
        gap: 1.5rem;
    }

    .about-yaniv__copy,
    .about-yaniv__gallery-inner {
        padding: 1.6rem;
    }

    .about-yaniv__gallery-img {
        aspect-ratio: 4 / 3;
        object-position: center 52%;
    }

    .services-mosaic__kicker {
        font-size: 2.4rem;
        margin-bottom: 1.75rem;
    }

    .services-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-rows: auto;
        gap: 1.75rem;
    }

    .services-mosaic__card {
        min-height: 480px;
    }

    .featured-services {
        padding: 3.5rem 0 3.9rem;
    }

    .featured-services__intro {
        text-align: left;
        justify-items: start;
    }

    .featured-services .page-wrapper {
        padding: 0 3%;
    }

    .featured-services__grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .featured-services__card {
        align-items: center;
        gap: 1.15rem;
    }

    .featured-services__image {
        aspect-ratio: 4 / 5;
        max-width: 600px;
    }

    .featured-services__body {
        width: min(520px, 100%);
        padding: 0;
    }

    .featured-services__body h3 {
        font-size: 1.32rem;
    }

    .featured-services__body p {
        font-size: 1.26rem;
    }

    .featured-services__cta {
        margin-top: 2.3rem;
    }

    .signature-grid {
        grid-template-columns: 1fr;
    }

    .signature-card {
        min-height: 360px;
    }

    .signature-card-content {
        padding: 2rem;
    }

    .service-card {
        min-height: 520px;
        border-radius: 12px;
    }

    .service-image {
        height: 375px;
        border-radius: 12px 12px 0 0;
    }

    .service-card-actions {
        gap: 0.6rem;
    }

    .gallery {
        padding: 3.5rem 0;
    }

    .gallery-inner {
        padding: 0 1rem;
    }

    .gallery-feature__content h2 {
        font-size: 2rem;
        letter-spacing: 0.08em;
    }

    .gallery-stats {
        gap: 1.25rem;
    }

    .gallery-mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .gallery-mosaic__item--primary,
    .gallery-mosaic__item--secondary,
    .gallery-mosaic__item--tertiary,
    .gallery-mosaic__item--more {
        grid-column: auto;
        grid-row: auto;
    }
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: 5.5rem 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--light-green) 100%);
    color: var(--dark-text);
}

/* Home gallery grid */
.home-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.home-gallery__title {
    margin: 0;
    font-size: 2.3rem;
    color: var(--primary-green);
    text-align: center;
    letter-spacing: 0.02em;
}

.home-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.home-gallery__item {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    background: #f3ead6;
    box-shadow: 0 12px 28px rgba(36, 26, 12, 0.12);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-gallery__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(36, 26, 12, 0.16);
}

.home-gallery__item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 3 / 4;
}

.home-gallery__cta {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}

/* Home gallery lightbox */
.home-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 10, 8, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1300;
}

.home-lightbox.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.home-lightbox__content {
    max-width: min(1050px, 95vw);
    max-height: 88vh;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.home-lightbox__content img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #0b0f0d;
}

.home-lightbox__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #1a1206;
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ===== GALLERY RESPONSIVE TWEAKS ===== */
@media (max-width: 1024px) {
    .gallery {
        padding: 4.5rem 0;
    }

    .home-gallery__grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 3.5rem 0;
    }

    .home-gallery__grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 0.9rem;
    }
}

/* ===== EXPERIENCE SECTION ===== */
.experience {
    padding: 6rem 5%;
    background: #ffffff;
}

.experience-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    align-items: center;
}

.experience-text h2 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.experience-text p {
    font-size: 1.05rem;
    color: #4d4d4d;
    margin-bottom: 1.5rem;
}

.experience-list {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.experience-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--primary-green);
}

.experience-list li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-green);
    color: var(--light-text);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.experience-video video,
.experience-video iframe {
    width: 100%;
    border: none;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(82, 61, 24, 0.18);
    background: #000;
}

.experience-video video {
    max-height: 360px;
    object-fit: cover;
}

.experience-caption {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #5f4c34;
    text-align: center;
}

/* ===== TESTIMONIAL SHOWCASE ===== */
.testimonial-showcase {
    padding: 5.5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--light-green) 0%, var(--cream) 100%);
}

.testimonial-showcase__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 4rem;
    align-items: center;
}

.testimonial-carousel {
    padding-right: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-carousel__icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel__icon span {
    font-size: 3.2rem;
    color: var(--primary-green);
    font-family: 'Bebas Neue', 'League Spartan', sans-serif;
}

.testimonial-carousel__track-wrapper {
    overflow: hidden;
    min-height: 230px;
}

.testimonial-carousel__track {
    display: flex;
    transition: transform 0.6s ease;
    will-change: transform;
}

.testimonial-slide {
    flex: 0 0 100%;
    padding-top: 1rem;
}

.testimonial-quote {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-family: 'Bebas Neue', 'League Spartan', sans-serif;
    color: #2a1c08;
    line-height: 1.35;
    margin-bottom: 1.75rem;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.testimonial-person img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-green);
}

.testimonial-person h4 {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.95rem;
    color: #2a1c08;
}

.testimonial-person span {
    font-size: 0.85rem;
    color: #6a583b;
}

.testimonial-intro h2 {
    font-family: 'Bebas Neue', 'League Spartan', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.testimonial-intro p {
    color: #4f3f29;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 360px;
}

.testimonial-tag {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    color: var(--primary-green);
    display: inline-block;
    margin-bottom: 0.75rem;
}

.testimonial-nav {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonial-nav__btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    background: rgba(163, 125, 40, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    font-size: 1.1rem;
    color: var(--primary-green);
}

.testimonial-nav__btn:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: #ffffff;
}

@media (max-width: 1024px) {
    .testimonial-showcase {
        padding: 5rem 4%;
    }

    .testimonial-showcase__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .testimonial-carousel {
        padding-right: 0;
    }

    .testimonial-intro {
        order: -1;
    }
}

@media (max-width: 768px) {
    .testimonial-showcase {
        padding: 4rem 1.5rem;
    }

    .testimonial-intro h2 {
        font-size: 2.75rem;
    }

    .testimonial-quote {
        font-size: 1.5rem;
    }

    .testimonial-nav {
        justify-content: flex-end;
    }
}

/* ===== BOOKING SECTION ===== */
.booking {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    color: var(--light-text);
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 12px;
    margin-bottom: 6rem;
}

.booking h2 {
    color: var(--light-text);
    margin-bottom: 1rem;
}

.booking p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER ===== */
.site-footer {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    color: #ffffff;
    padding: 4.5rem 5% 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 -10px 28px rgba(42, 28, 8, 0.18);
}

.site-footer__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.footer-top h2 {
    font-family: 'Bebas Neue', 'League Spartan', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
    color: #ffffff;
}

.footer-top__btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(10, 7, 2, 0.18);
}

.footer-top__btn:hover {
    background: transparent;
    color: #ffffff;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(201, 162, 74, 0.35);
    margin: 0 0 2.5rem;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-logo-text {
    font-family: 'Bebas Neue', 'League Spartan', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-brand {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-brand__main {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.footer-brand__sub {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    align-self: flex-end;
    margin-top: 0.1rem;
}

.footer-column__title {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.82);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-list li::before {
    content: '•';
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-list a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #ffffff;
}

.footer-newsletter label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.78);
}

.footer-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.65);
    padding-bottom: 0.5rem;
}

.footer-form input {
    flex: 1;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 1rem;
    padding: 0.35rem 0;
}

.footer-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-form input:focus {
    outline: none;
}

.footer-form button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.85);
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: #ffffff;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(10, 7, 2, 0.18);
}

.footer-form button:hover {
    background: #ffffff;
    color: var(--primary-green);
}

.footer-bottom {
    border-top: 1px solid rgba(201, 162, 74, 0.3);
    padding-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.82);
}

.footer-meta-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-meta-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-meta-links a,
.footer-meta-nav a,
.footer-credit a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 0.18em;
    transition: color 0.3s ease;
}

.footer-meta-links a:visited,
.footer-credit a:visited {
    color: var(--gold);
}

.footer-meta-links a:active,
.footer-credit a:active {
    color: #ffffff;
}

.footer-meta-links a:hover,
.footer-meta-nav a:hover,
.footer-credit a:hover {
    color: #ffffff;
}

.footer-credit,
.footer-copyright {
    margin: 0;
}

.footer-credit {
    justify-self: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.92);
}

.footer-copyright {
    justify-self: end;
    text-align: right;
    color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 1024px) {
    .site-footer {
        padding: 4rem 4% 3rem;
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 3.5rem 1.5rem 2.5rem;
    }

    .footer-top h2 {
        font-size: 2.5rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 0.75rem;
    }

    .footer-meta-links {
        gap: 1rem;
    }

    .footer-meta-nav {
        gap: 1rem;
    }

    .footer-credit,
    .footer-copyright {
        justify-self: start;
        text-align: left;
    }
}

/* ===== INTERNAL PAGE LAYOUTS ===== */
.page-hero {
    margin-top: 92px;
    padding: 5.5rem 5% 4rem;
    background: var(--cream);
}

.page-hero .page-hero-inner {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

.page-heading {
    font-size: 3.4rem;
    color: var(--primary-green);
    font-weight: 600;
    margin: 0;
    position: relative;
    padding-bottom: 1.5rem;
}

.page-heading::after {
    content: '';
    display: block;
    width: 72px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    border-radius: 4px;
    margin: 1rem auto 0;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #5e4c36;
    margin: 0;
}

.page-hero p {
    color: #616c64;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}


.page-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4%;
}

.page-section {
    padding: 4.5rem 0;
    background: var(--cream);
}

.page-section.section-tight {
    padding: 3rem 0;
}

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

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

.content-grid {
    display: grid;
    gap: 3.5rem;
    align-items: center;
}

.content-grid.two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-experience {
    align-items: stretch;
}

.experience-bullets {
    list-style: none;
    display: grid;
    gap: 0.65rem;
    padding: 0;
    color: #4b3823;
}

.experience-bullets li {
    position: relative;
    padding-left: 1.65rem;
    line-height: 1.6;
}

.experience-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    box-shadow: 0 0 10px rgba(201, 162, 74, 0.4);
}

.image-stack {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 420px;
}

.image-stack img {
    border-radius: 12px;
    box-shadow: 0 28px 60px rgba(36, 26, 12, 0.18);
    width: 65%;
    object-fit: cover;
}

.image-stack-single {
    justify-content: center;
}

.image-stack-single .image-stack-primary {
    width: 100%;
    box-shadow: 0 30px 70px rgba(36, 26, 12, 0.2);
}

.image-stack-primary {
    position: relative;
    z-index: 2;
}

.image-stack-secondary {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 50%;
    border: 6px solid var(--cream);
    z-index: 1;
}

.about-experience-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.text-lead {
    font-size: 1.1rem;
    color: #5c4a33;
    max-width: 600px;
}

/* ===== GALLERY PAGE ===== */
.gallery-collection {
    padding: 4.5rem 0 5.5rem;
    background: var(--cream);
}

.gallery-collection__head {
    display: grid;
    grid-template-columns: minmax(0, 2fr) auto;
    align-items: flex-end;
    gap: 1.5rem;
}

.gallery-collection__head h2 {
    margin: 0 0 0.5rem;
}

.gallery-collection__head .text-lead {
    margin: 0;
    color: #5e4c36;
}

.gallery-grid {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-auto-rows: 240px;
    grid-auto-flow: dense;
    gap: 1.25rem;
}

.gallery-grid__item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(36, 26, 12, 0.14);
    cursor: pointer;
}

.gallery-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.35s ease;
}

.gallery-grid__item figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1rem 1.25rem 1.35rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.01em;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 100%);
    pointer-events: none;
}

.gallery-grid__item:hover img {
    transform: scale(1.05);
    filter: saturate(1.05);
}

.gallery-grid__item:focus-visible {
    outline: 3px solid var(--accent-green);
    outline-offset: 4px;
}

.gallery-grid__item--wide {
    grid-column: span 2;
}

.gallery-grid__item--tall {
    grid-row: span 2;
}

.gallery-grid__item--big {
    grid-column: span 2;
    grid-row: span 2;
}

@media (min-width: 769px) {
    .gallery-grid__item--desktop-taller {
        grid-row: span 2 !important;
    }

    .gallery-grid__item--desktop-taller .gallery-grid__img--desktop-taller {
        height: 147% !important;
        max-height: none !important;
        object-fit: cover !important;
        object-position: center top !important;
    }

    .gallery-grid__item--desktop-taller-secondary {
        grid-row: span 2 !important;
    }

    .gallery-grid__item--desktop-taller-third {
        grid-row: span 2 !important;
    }

    .gallery-grid__item--desktop-taller-fourth {
        grid-row: span 2 !important;
    }

    .gallery-grid__item--desktop-taller-fifth {
        grid-row: span 2 !important;
    }

    .gallery-grid__item--desktop-taller-sixth {
        grid-row: span 2 !important;
    }

    .gallery-grid__item--desktop-taller-seventh {
        grid-row: span 2 !important;
    }

    .gallery-grid__item--desktop-taller-eighth {
        grid-row: span 2 !important;
    }

    .gallery-grid__item--desktop-taller-eighth .gallery-grid__img--desktop-taller-eighth {
        height: 138% !important;
        max-height: none !important;
        object-fit: cover !important;
        object-position: center top !important;
    }

    .gallery-grid__item--desktop-taller-ninth {
        grid-row: span 2 !important;
    }

    .gallery-grid__item--desktop-taller-tenth {
        grid-row: span 2 !important;
    }

    .gallery-grid__item--desktop-taller-eleventh {
        grid-row: span 2 !important;
    }

    .gallery-grid__item--desktop-taller-twelfth {
        grid-row: span 2 !important;
    }

    .gallery-grid__item--desktop-taller-thirteenth {
        grid-column: span 2 !important;
        grid-row: span 2 !important;
    }

    .gallery-grid__item--desktop-taller-fourteenth {
        grid-row: span 2 !important;
    }

    .gallery-grid__item--desktop-taller-fourteenth .gallery-grid__img--desktop-taller-fourteenth {
        height: 142% !important;
        max-height: none !important;
        object-fit: cover !important;
        object-position: center top !important;
    }
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 10, 8, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2.5rem;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1200;
}

.lightbox.open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.lightbox__content {
    max-width: min(1100px, 96vw);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
}

.lightbox img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.45);
    background: #0c110e;
}

.lightbox__text {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-weight: 600;
}

.lightbox__caption {
    margin: 0;
    max-width: 80%;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.5;
}

.lightbox__status {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
}

.lightbox__close {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(12, 19, 16, 0.75);
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}

.lightbox__close:hover {
    transform: scale(1.05);
    background: rgba(12, 19, 16, 0.9);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(12, 19, 16, 0.75);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}

.lightbox__nav:hover {
    transform: translateY(-50%) scale(1.05);
    background: rgba(12, 19, 16, 0.9);
}

.lightbox__nav--prev {
    left: 2rem;
}

.lightbox__nav--next {
    right: 2rem;
}

body.lightbox-open {
    overflow: hidden;
}

/* ===== HAIRCUT VARIANTS ===== */
.variant-section-head {
    display: grid;
    grid-template-columns: minmax(0, 2fr) auto;
    align-items: end;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.variant-section-head h2 {
    margin: 0.25rem 0 0.75rem;
}

.variant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.variant-grid--color {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

@media (min-width: 1024px) {
    .variant-grid--color {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.variant-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.8rem 1.9rem;
    border: 1px solid rgba(163, 125, 40, 0.16);
    box-shadow: 0 18px 45px rgba(36, 26, 12, 0.12);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    overflow: hidden;
}

.variant-card__image {
    width: calc(100% + 3.8rem);
    margin: -1.8rem -1.9rem 1.1rem;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.variant-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.45s ease, object-position 0.3s ease;
}

.addon-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.addon-toggle {
    border: 1px dashed rgba(163, 125, 40, 0.4);
    background: rgba(163, 125, 40, 0.08);
    color: var(--primary-green);
    border-radius: 999px;
    padding: 0.65rem 1.15rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.addon-toggle:hover {
    background: rgba(163, 125, 40, 0.16);
    border-color: rgba(163, 125, 40, 0.6);
}

.addon-list {
    margin-top: 1rem;
    background: #f8f4ea;
    border: 1px solid rgba(163, 125, 40, 0.18);
    border-radius: 12px;
    display: grid;
    gap: 0.35rem;
    padding: 0.75rem 1rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease;
}

.variant-card.addons-open .addon-list {
    max-height: 600px;
    opacity: 1;
}

.addon-list__item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(163, 125, 40, 0.12);
    font-weight: 600;
    color: #3d2f1e;
}

.addon-list__item:last-child {
    border-bottom: none;
}

.addon-list__item small {
    font-weight: 500;
    color: #766241;
}

@media (max-width: 768px) {
    .addon-actions {
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
    }

    .addon-actions .variant-cta {
        order: 1;
        width: auto;
    }

    .addon-actions .addon-toggle {
        order: 2;
        width: auto;
    }
}

.variant-card:hover .variant-card__image img {
    transform: scale(1.04);
}

.variant-card__top h3 {
    margin: 0.2rem 0 0.5rem;
}

.variant-card__top p {
    margin: 0;
    color: #5e4c36;
}

.variant-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.85rem;
    border-radius: 8px;
    background: rgba(163, 125, 40, 0.16);
    color: var(--primary-green);
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 0.9rem;
}

.variant-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
    color: #4a3824;
}

.variant-list li {
    position: relative;
    padding-left: 1.2rem;
}

.variant-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

.variant-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.15rem;
    font-weight: 700;
    color: #4b3823;
    background: rgba(163, 125, 40, 0.08);
    border: 1px solid rgba(163, 125, 40, 0.16);
    padding: 0.7rem 0.95rem;
    border-radius: 10px;
}

.variant-cta {
    width: 100%;
    text-align: center;
    margin-top: 0.35rem;
}

.image-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 65px rgba(36, 26, 12, 0.18);
}

.image-frame img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.stat-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.stat-card {
    background: var(--light-text);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 20px 45px rgba(48, 35, 15, 0.12);
    border: 1px solid rgba(163, 125, 40, 0.12);
    text-align: center;
}

.stat-card h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.stat-card p {
    margin: 0;
    color: #5c4a33;
}

.card-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.info-card {
    background: var(--light-text);
    border-radius: 12px;
    padding: 2.25rem;
    border: 1px solid rgba(163, 125, 40, 0.12);
    box-shadow: 0 18px 40px rgba(36, 26, 12, 0.1);
}

.info-card h3 {
    margin-bottom: 1rem;
}

.info-card p {
    margin-bottom: 0.5rem;
}

.list-check {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    padding: 0;
}

.list-check li {
    position: relative;
    padding-left: 1.75rem;
}

.list-check li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-green);
    font-weight: 700;
}

.pricing-card {
    background: var(--light-text);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(163, 125, 40, 0.12);
    box-shadow: 0 24px 55px rgba(36, 26, 12, 0.15);
}

.pricing-card h3 {
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: 2.1rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-card ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.pricing-card ul li {
    color: #5c4a33;
}

.services-grid--menu {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    justify-content: center;
}

.services-grid--menu .service-card {
    min-height: auto;
}

.services-grid--menu .service-image {
    height: 260px;
}

.services-grid--menu .service-card-body {
    background: #ffffff;
    gap: 1.1rem;
    border-radius: 0 0 12px 12px;
}

.services-grid--menu .service-card:nth-child(3n) .service-card-body {
    background: linear-gradient(180deg, rgba(245, 232, 205, 0.7) 0%, #ffffff 100%);
}

.services-grid--menu .service-card:nth-child(3n + 1) .service-card-body {
    background: linear-gradient(180deg, rgba(233, 215, 184, 0.55) 0%, #ffffff 85%);
}

.services-grid--menu .service-card:nth-child(3n + 2) .service-card-body {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(233, 215, 184, 0.4) 100%);
}

@media (min-width: 1400px) {
    .services-grid--menu {
        grid-template-columns: repeat(3, minmax(360px, 1fr));
        gap: 3.5rem;
    }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
}

.team-card {
    background: var(--light-text);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(36, 26, 12, 0.14);
    border: 1px solid rgba(163, 125, 40, 0.12);
    display: flex;
    flex-direction: column;
}

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-card-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.team-card-content h3 {
    margin: 0;
}

.team-card-content span {
    font-size: 0.95rem;
    color: #5c4a33;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.team-card-content p {
    margin: 0;
}

.tag-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.9rem;
    border-radius: 8px;
    background: rgba(163, 125, 40, 0.16);
    color: var(--primary-green);
    font-size: 0.85rem;
    font-weight: 600;
}

.journey-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.timeline-item {
    background: var(--light-text);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(163, 125, 40, 0.12);
    box-shadow: 0 20px 50px rgba(36, 26, 12, 0.12);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.timeline-year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(163, 125, 40, 0.16);
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.quote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.quote-card {
    background: var(--light-text);
    border-radius: 12px;
    padding: 2.25rem;
    border: 1px solid rgba(163, 125, 40, 0.12);
    box-shadow: 0 20px 44px rgba(36, 26, 12, 0.1);
}

.quote-card blockquote {
    font-style: italic;
    color: #4b3823;
    margin: 0 0 1.25rem;
    line-height: 1.7;
}

.quote-card figcaption {
    font-weight: 600;
    color: var(--primary-green);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.step-grid {
    display: grid;
    gap: 1.75rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.step-card {
    background: var(--light-text);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(163, 125, 40, 0.12);
    box-shadow: 0 18px 44px rgba(36, 26, 12, 0.12);
}

.step-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: var(--light-text);
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-list {
    display: grid;
    gap: 1.25rem;
}

.faq-item {
    background: var(--light-text);
    border-radius: 10px;
    padding: 1.75rem;
    box-shadow: 0 18px 42px rgba(36, 26, 12, 0.1);
    border: 1px solid rgba(163, 125, 40, 0.12);
}

.faq-item h3 {
    margin-bottom: 0.5rem;
}


.cta-banner {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: var(--light-text);
    padding: 3rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: 0 24px 60px rgba(36, 26, 12, 0.2);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    align-items: stretch;
    gap: 3rem;
}

.contact-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 2.5rem;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-card h2 {
    margin: 0;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.contact-info-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: flex-start;
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(163, 125, 40, 0.16);
    color: var(--primary-green);
    font-size: 1.05rem;
    box-shadow: inset 0 0 0 1px rgba(163, 125, 40, 0.12);
}

.contact-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #59452f;
    margin: 0 0 0.2rem;
}

.contact-value {
    margin: 0;
    color: #4b3823;
    line-height: 1.6;
}

.contact-value a {
    color: inherit;
    text-decoration: none;
}

.contact-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.contact-form form {
    display: grid;
    gap: 1rem;
}

.form-row {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.input-group label {
    font-weight: 700;
    color: #5a4426;
    font-size: 0.95rem;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    border: 1px solid rgba(163, 125, 40, 0.22);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    background: #fdf6ea;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-group textarea {
    resize: vertical;
    min-height: 140px;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(201, 162, 74, 0.35);
}

.form-note {
    margin: 0;
    font-size: 0.95rem;
    color: #5c4a33;
}

.contact-map .map-embed {
    min-height: 420px;
}

.map-embed {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(36, 26, 12, 0.15);
    border: 1px solid rgba(163, 125, 40, 0.12);
    min-height: 340px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
    list-style: none;
    padding: 0;
}

.hours-grid li {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: #5c4a33;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.95rem;
    border-radius: 8px;
    background: rgba(163, 125, 40, 0.2);
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(163, 125, 40, 0.16);
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.social-links a i {
    font-size: 1.05rem;
}

.cta-panel {
    background: var(--light-text);
    border-radius: 12px;
    padding: 2.75rem;
    box-shadow: 0 25px 60px rgba(36, 26, 12, 0.16);
    border: 1px solid rgba(163, 125, 40, 0.14);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cta-panel .btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.testimonial-carousel {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}


/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1100px) {
    .hero {
        padding: 6rem 5%;
        align-items: flex-end;
    }

    .hero h1 {
        font-size: 3.1rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .page-hero {
        padding: 6rem 5% 3.5rem;
    }

    .page-hero h1 {
        font-size: 2.6rem;
    }

    .content-grid.two-column {
        grid-template-columns: 1fr;
    }

    .services-grid--menu {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 2rem;
    }

    .services-grid--menu .service-image {
        height: 240px;
    }

    .gallery-collection__head {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .gallery-collection__head .btn {
        justify-self: flex-start;
    }

    .gallery-grid {
        grid-auto-rows: 220px;
    }

    .variant-section-head {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .variant-section-head .btn {
        justify-self: flex-start;
        width: auto;
    }

}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .page-hero {
        margin-top: 70px;
        padding: 4.5rem 1.75rem 3rem;
    }

    .page-hero h1 {
        font-size: 2.25rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .page-wrapper {
        padding: 0 0.75rem;
    }

    .page-section {
        padding: 3rem 0;
    }

    .image-stack {
        min-height: auto;
        justify-content: flex-start;
        align-items: stretch;
        flex-direction: column;
        gap: 1.5rem;
    }

    .image-stack img {
        position: relative;
        width: 100%;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .image-stack-secondary {
        position: relative;
        bottom: 0;
        right: 0;
    }

    .about-experience .image-stack {
        order: 2;
    }

    .about-experience .about-experience-text {
        order: 1;
    }

    .services-grid--menu {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .services-grid--menu .service-card-body {
        padding: 1.85rem 1.9rem 2.1rem;
    }

    .services-grid--menu .service-image {
        height: 220px;
    }

    .section-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .section-actions .btn {
        min-width: 0;
    }

    .journey-timeline {
        grid-template-columns: 1fr;
    }

    .quote-grid {
        grid-template-columns: 1fr;
    }



    nav {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 0.75rem;
        padding: 1.1rem 1.4rem;
    }

    .logo {
        min-width: 0;
    }

    .logo img {
        height: 44px;
        max-width: 190px;
        width: auto;
        object-fit: contain;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 12px);
        right: 1.4rem;
        left: 1.4rem;
        background: var(--cream);
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        border-radius: 10px;
        border: 1px solid rgba(201, 162, 74, 0.25);
        box-shadow: 0 20px 45px rgba(26, 26, 26, 0.08);
        opacity: 0;
        transform: translateY(-12px);
        pointer-events: none;
        transition: transform 0.35s ease, opacity 0.35s ease;
    }

    .nav-links.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(201, 162, 74, 0.18);
        padding-bottom: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .nav-links li:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 0.25rem 0;
        font-weight: 600;
        color: var(--primary-green);
    }

    .nav-links a:hover {
        color: var(--accent-green);
    }

    .menu-toggle {
        display: flex;
        background: rgba(201, 162, 74, 0.16);
        border-radius: 10px;
        padding: 8px 10px;
        transition: background 0.3s ease, box-shadow 0.3s ease;
    }

    .menu-toggle.open {
        background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
        box-shadow: 0 12px 30px rgba(82, 61, 24, 0.25);
    }

    .menu-toggle.open span {
        background: var(--light-text);
    }

    .nav-cta {
        margin-left: 0;
        justify-content: flex-end;
        gap: 0.65rem;
        flex-wrap: nowrap;
    }

    .nav-cta .btn {
        padding: 10px 18px;
        white-space: nowrap;
    }

    .hero {
        padding: 5rem 1.75rem 3rem;
        min-height: 100vh;
        align-items: flex-start;
    }

    .hero-content {
        align-items: flex-start;
        text-align: left;
        gap: 1.5rem;
        width: 100%;
        margin-top: 20rem;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p {
        max-width: 100%;
        text-align: left;
    }

    .services-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .stat-grid,
    .step-grid {
        grid-template-columns: 1fr;
    }

    .experience-content {
        grid-template-columns: 1fr;
    }

    .experience-video video {
        max-height: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-highlights {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .gallery-mosaic {
        columns: 1;
        column-gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    .nav-cta .btn {
        width: auto;
    }

    .cta-panel .btn-group {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-banner {
        padding: 2.25rem;
    }

    .contact-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .gallery-collection {
        padding: 3.5rem 0 4.25rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        grid-auto-rows: 350px;
        gap: 1rem;
    }

    .gallery-grid__item--wide,
    .gallery-grid__item--tall,
    .gallery-grid__item--big {
        grid-column: auto;
        grid-row: auto;
    }

    .lightbox {
        padding: 1.5rem;
    }

    .lightbox__nav {
        display: none;
    }

    .lightbox__content {
        gap: 0.65rem;
    }

    .lightbox__caption {
        max-width: 100%;
    }

    .lightbox__text {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }

    .lightbox__close {
        top: 14px;
        right: 14px;
    }

    .variant-grid {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .variant-card {
        padding: 1.5rem 1.6rem;
    }

    .variant-card__image {
        width: calc(100% + 3.2rem);
        margin: -1.5rem -1.6rem 1rem;
        aspect-ratio: 4 / 4;
    }

    .variant-cta {
        width: auto;
        padding: 10px 20px;
        align-self: flex-start;
        min-width: 0;
        margin-top: 0.1rem;
    }
}

@media (min-width: 1025px) {
    .about-yaniv__visuals {
        width: min(100%, clamp(420px, 52vw, 760px));
    }

    .hero-fallback--mobile {
        display: none;
    }

    .hero-fallback--desktop {
        display: block;
    }
}

/* ===== HOUSECALL & CONTACT ===== */
.housecall {
    background: linear-gradient(135deg, #fffdf8 0%, #faf3e5 50%, #f3e7d4 100%);
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}

.housecall__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.4;
}

.housecall__orb--right {
    width: 320px;
    height: 320px;
    top: -140px;
    right: -140px;
    background: radial-gradient(circle, rgba(163, 125, 40, 0.18) 0%, transparent 70%);
}

.housecall__orb--left {
    width: 240px;
    height: 240px;
    bottom: -120px;
    left: -120px;
    background: radial-gradient(circle, rgba(201, 162, 74, 0.16) 0%, transparent 70%);
}

.housecall__inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.housecall__header h2 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.housecall__header p {
    color: #3b2a14;
    font-size: 1.1rem;
}

.housecall__cta {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
    justify-items: center;
}

.housecall__cta-label {
    font-weight: 600;
    color: #3b2a14;
}

.housecall__cta-actions {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.9rem 1.75rem;
    border-radius: 999px;
    border: 1px solid rgba(163, 125, 40, 0.25);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.housecall__cta-phone {
    color: #2f210f;
    font-weight: 700;
    text-decoration: none;
}

.housecall__cta-link {
    color: var(--primary-green);
    font-weight: 700;
    text-decoration: none;
}

.housecall__cta-separator {
    color: #9c8461;
}

.contact-block {
    background: linear-gradient(135deg, #f8f3e7 0%, #f0e4cf 100%);
    padding: 4.75rem 0;
    position: relative;
    overflow: hidden;
}

.contact-block__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.4;
}

.contact-block__orb--right {
    width: 260px;
    height: 260px;
    top: -120px;
    right: -120px;
    background: radial-gradient(circle, rgba(163, 125, 40, 0.16) 0%, transparent 70%);
}

.contact-block__orb--left {
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: -80px;
    background: radial-gradient(circle, rgba(201, 162, 74, 0.12) 0%, transparent 70%);
}

.contact-block__header {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2.5rem;
}

.contact-block__header h2 {
    color: var(--primary-green);
}

.contact-block__header p {
    color: #3b2a14;
    font-size: 1.05rem;
}

.contact-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-form-card,
.contact-info__card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(6px);
}

.contact-form-card h3,
.contact-info h3 {
    color: #2f210f;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    color: #4f412d;
    font-weight: 600;
}

.contact-form__field input,
.contact-form__field textarea {
    width: 100%;
    padding: 0.85rem 0.9rem;
    border: 2px solid rgba(163, 125, 40, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.85);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    color: #2f210f;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(163, 125, 40, 0.15);
}

.contact-form__field textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form__field--full {
    grid-column: auto;
}

.contact-form__submit {
    grid-column: auto;
    width: 100%;
    padding: 0.95rem;
    font-size: 1rem;
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.contact-info__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-info__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info__label {
    margin: 0 0 0.1rem 0;
    color: #6a5638;
    font-size: 0.95rem;
}

.contact-info__value {
    margin: 0;
    color: #2f210f;
    font-weight: 700;
    line-height: 1.4;
}

.contact-info__value a {
    color: inherit;
    text-decoration: none;
}

.contact-info__card h4 {
    margin: 0 0 1rem 0;
    color: #2f210f;
}

.contact-hours {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #4f412d;
    display: grid;
    gap: 0.6rem;
}

.contact-hours li {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.contact-info__book {
    width: 100%;
    text-align: center;
    padding: 1rem;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form__field--full,
    .contact-form__submit {
        grid-column: auto;
    }

    .housecall__cta-actions {
        flex-direction: column;
        gap: 0.5rem;
        border-radius: 14px;
    }
}

@media (max-width: 600px) {
    .housecall {
        padding: 3.25rem 0;
    }

    .housecall__cta-actions {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .contact-block {
        padding: 3.5rem 0;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

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

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}
