/* =========================================================
   Bashan’s — FINAL CSS (מסודר ונקי)
   כולל: תיקון Lightbox (הכפתורים לא “נופלים” ב-hover),
   ורספונסיביות נקייה לגלריה/קטלוג במובייל.
   ========================================================= */


/* =========================
   1) ROOT / TOKENS
   ========================= */
:root {
    --bg: #fbf8f2;
    --bg2: #f1eee7;

    --card: rgba(255, 255, 255, .76);
    --card2: rgba(255, 255, 255, .60);

    --border: rgba(17, 17, 19, .12);
    --border2: rgba(17, 17, 19, .18);

    --text: #121215;
    --muted: #4a4a52;

    --gold: #c7a35f;
    --gold2: #e6cf98;

    --shadow: 0 18px 55px rgba(0, 0, 0, .10);

    --radius: 18px;
    --radius2: 26px;

    --max: 1160px;

    /* קו כללי למקטעים (במקום var(--line) שהיה חסר) */
    --line: rgba(17, 17, 19, .10);
}


/* =========================
   2) BASE / RESET
   ========================= */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    font-family: "Heebo", system-ui, -apple-system, Segoe UI, Roboto, Arial;
    background:
        radial-gradient(1200px 800px at 85% 15%, rgba(199, 163, 95, .22), transparent 60%),
        radial-gradient(900px 650px at 12% 25%, rgba(0, 0, 0, .06), transparent 60%),
        linear-gradient(180deg, var(--bg), var(--bg2));
    color: var(--text);
    overflow-x: hidden;
}

.container {
    width: min(var(--max), calc(100% - 42px));
    margin-inline: auto;
}

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

button {
    font-family: inherit;
}

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


/* =========================
   3) LOGO
   ========================= */
#logo {
    width: 167px;
    height: 50px;
}

#logofo {
    height: 167px;
}


/* =========================
   4) HEADER / NAVBAR
   ========================= */
.site-header {
    padding: 18px 0 32px;
}

.navbar {
    padding: 14px;
    border: 1px solid rgba(17, 17, 19, .10);
    border-radius: 22px;
    background: rgba(251, 248, 242, .80);
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, .08);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    position: sticky;
    top: 14px;
    z-index: 50;
}

/* (אם אתה משתמש ב-brand בהמשך) */
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 14px;
    transition: transform .25s ease, background .25s ease;
}

.brand:hover {
    transform: translateY(-1px);
    background: rgba(0, 0, 0, .04);
}

.brand-mark {
    width: 14px;
    height: 14px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    box-shadow: 0 10px 22px rgba(199, 163, 95, .20);
}

.brand-text {
    font-weight: 900;
    letter-spacing: .6px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-link {
    font-size: 14px;
    color: rgba(18, 18, 21, .72);
    padding: 10px 10px;
    border-radius: 12px;
    transition: color .25s ease, background .25s ease, transform .25s ease;
}

.nav-link:hover {
    color: rgba(18, 18, 21, .95);
    background: rgba(18, 18, 21, .05);
    transform: translateY(-1px);
}

.nav-cta {
    display: flex;
    gap: 10px;
    padding-right: 6px;
    border-right: 1px solid rgba(17, 17, 19, .10);
    margin-right: 2px;
}


/* =========================
   5) MOBILE NAV TOGGLE
   ========================= */
.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(17, 17, 19, .18);
    background: rgba(255, 255, 255, .10);
    border-radius: 16px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .10);
    transition: transform .15s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
    -webkit-tap-highlight-color: transparent;
    appearance: none;
}

.nav-toggle:hover {
    border-color: rgba(199, 163, 95, .45);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
    transform: translateY(-1px);
}

.nav-toggle:active {
    transform: translateY(0);
}

/* קווי ההמבורגר (עם aria-expanded) */
.nav-toggle-lines {
    position: relative;
    width: 24px;
    height: 2px;
    background: rgba(18, 18, 21, .95);
    border-radius: 999px;
    transition: background .2s ease;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
    content: "";
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: rgba(18, 18, 21, .95);
    border-radius: 999px;
    transition: transform .28s ease, top .28s ease, opacity .2s ease, width .28s ease;
}

.nav-toggle-lines::before {
    top: -8px;
    width: 18px;
}

.nav-toggle-lines::after {
    top: 8px;
    width: 12px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
    top: 0;
    width: 24px;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
    top: 0;
    width: 24px;
    transform: rotate(-45deg);
}


/* =========================
   6) BUTTONS
   ========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-weight: 800;
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
    position: relative;
    overflow: hidden;
    user-select: none;
}

.btn-xl {
    padding: 14px 18px;
    border-radius: 16px;
}

.btn-gold {
    color: #161617;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    box-shadow: 0 12px 28px rgba(199, 163, 95, .22);
}

.btn-gold:before {
    content: "";
    position: absolute;
    inset: -60%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .70), transparent 55%);
    transform: translateX(120%) rotate(18deg);
    transition: transform .6s ease;
    opacity: .55;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(199, 163, 95, .26);
}

.btn-gold:hover:before {
    transform: translateX(-10%) rotate(18deg);
}

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

.btn-ghost {
    background: rgba(255, 255, 255, .68);
    border-color: rgba(17, 17, 19, .14);
    color: rgba(18, 18, 21, .86);
}

.btn-ghost:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .90);
    border-color: rgba(17, 17, 19, .20);
    box-shadow: 0 16px 35px rgba(0, 0, 0, .08);
}

.btn-glass {
    background: rgba(255, 255, 255, .58);
    border-color: rgba(17, 17, 19, .14);
    color: rgba(18, 18, 21, .86);
}

.btn-glass:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .88);
    border-color: rgba(17, 17, 19, .20);
    box-shadow: 0 16px 35px rgba(0, 0, 0, .08);
}


/* =========================
   7) HERO
   ========================= */
.hero {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 26px;
    padding-top: 34px;
    align-items: stretch;
}

.hero-title {
    margin: 14px 0 12px;
    line-height: 1.02;
}

.hero-title-top,
.hero-title-bottom {
    display: block;
    font-weight: 900;
    font-size: clamp(34px, 4.6vw, 54px);
}

.hero-title-bottom {
    background: linear-gradient(135deg, rgba(18, 18, 21, .92), rgba(199, 163, 95, .92));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-title-sub {
    display: block;
    margin-top: 10px;
    font-weight: 400;
    font-size: clamp(16px, 1.9vw, 18px);
    color: rgba(18, 18, 21, .72);
}

.hero-desc {
    margin: 0 0 18px;
    color: rgba(18, 18, 21, .75);
    line-height: 1.8;
    max-width: 58ch;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}


/* =========================
   8) MEDIA / CARDS
   ========================= */
.media {
    border-radius: var(--radius2);
    border: 1px solid rgba(17, 17, 19, .12);
    box-shadow: var(--shadow);
    overflow: hidden;
    background: rgba(255, 255, 255, .70);
}

.media-hero {
    min-height: 360px;
    max-height: 650px;
}

.media-hero img {
    object-position: center 60%;
}

.glass {
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(17, 17, 19, .10);
    border-radius: var(--radius2);
    box-shadow: var(--shadow);
}

.bordered {
    background: rgba(255, 255, 255, .62);
    border: 1px solid rgba(17, 17, 19, .12);
    border-radius: var(--radius2);
    box-shadow: var(--shadow);
}


/* =========================
   9) SECTIONS / TYPO
   ========================= */
.section {
    padding: 70px 0;
}

.section-head {
    margin-bottom: 22px;
}

.section-title {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 900;
}

.section-subtitle {
    margin: 8px 0 0;
    color: rgba(18, 18, 21, .68);
    line-height: 1.7;
    max-width: 70ch;
}

.card-title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 900;
}

.card-text {
    margin: 0;
    color: rgba(18, 18, 21, .74);
    line-height: 1.9;
}


/* =========================
   10) ABOUT / CALLOUT
   ========================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.about-card {
    padding: 20px;
}

.callout {
    padding: 12px;
    border-radius: 22px;
    border: 1px solid rgba(199, 163, 95, .22);
    background:
        radial-gradient(900px 260px at 50% 0%, rgba(199, 163, 95, .18), transparent 60%),
        rgba(255, 255, 255, .55);
}

.callout-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(17, 17, 19, .10);

    transition: transform .22s ease, border-color .22s ease, background .22s ease;
    margin-top: 10px;
}

.callout-item:hover {
    transform: translateY(-2px);
    border-color: rgba(199, 163, 95, .28);
    background: rgba(255, 255, 255, .92);
}

.callout-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 900;
    color: #161617;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    box-shadow: 0 14px 30px rgba(199, 163, 95, .18);

    flex: 0 0 auto;
}

.callout-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
    flex: 1;
}

.callout-text strong {
    color: rgba(18, 18, 21, .95);
}

.callout-text span {
    color: rgba(18, 18, 21, .68);
    font-size: 13px;
}

.callout-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}


/* =========================
   11) FEATURES
   ========================= */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.feature {
    border-radius: 22px;
    border: 1px solid rgba(17, 17, 19, .10);
    background: rgba(255, 255, 255, .70);
    padding: 18px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .08);
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.feature:hover {
    transform: translateY(-3px);
    border-color: rgba(199, 163, 95, .22);
    background: rgba(255, 255, 255, .90);
}

.feature-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(199, 163, 95, .14);
    border: 1px solid rgba(199, 163, 95, .22);
    color: rgba(18, 18, 21, .88);
    font-weight: 900;
}

.feature-title {
    margin: 0;
    font-weight: 900;
}

.feature-text {
    margin: 10px 0 0;
    color: rgba(18, 18, 21, .72);
    line-height: 1.9;
}


/* =========================
   12) GALLERY
   ========================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    justify-items: stretch;
}

.media-gallery {
    position: relative;
    cursor: zoom-in;
    transition: transform .25s ease, box-shadow .25s ease;
    aspect-ratio: 4 / 3;
    margin: 0;
    /* חשוב כדי שלא יהיו היסטים */
}

.media-gallery img {
    transition: transform .45s ease, filter .45s ease;
}

.media-gallery::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(800px 240px at 50% 0%, rgba(199, 163, 95, .18), transparent 55%);
    opacity: 0;
    transition: opacity .35s ease;
}

.media-gallery:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

.media-gallery:hover img {
    transform: scale(1.04);
    filter: saturate(1.06) contrast(1.02);
}

.media-gallery:hover::after {
    opacity: 1;
}

/* “תמונה ראשונה גדולה” רק במסכים גדולים */
@media (min-width: 981px) {
    .gallery-grid figure:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }
}

.gallery-cta {
    margin-top: 16px;
    padding: 18px;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.gallery-cta-title {
    margin: 0;
    font-weight: 900;
    font-size: 18px;
}

.gallery-cta-sub {
    margin: 6px 0 0;
    color: rgba(18, 18, 21, .72);
    line-height: 1.9;
    max-width: 62ch;
}


/* =========================
   13) ORDER / STEPS
   ========================= */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.step {
    border-radius: 22px;
    border: 1px solid rgba(17, 17, 19, .10);
    background: rgba(255, 255, 255, .70);
    padding: 18px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .08);

    display: flex;
    gap: 12px;
    align-items: flex-start;

    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.step:hover {
    transform: translateY(-3px);
    border-color: rgba(199, 163, 95, .22);
    background: rgba(255, 255, 255, .90);
}

.step-num {
    width: 44px;
    height: 44px;
    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 900;
    color: #161617;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    box-shadow: 0 14px 30px rgba(199, 163, 95, .16);
    flex: 0 0 auto;
}

.step-title {
    margin: 0;
    font-weight: 900;
}

.step-text {
    margin: 8px 0 0;
    color: rgba(18, 18, 21, .72);
    line-height: 1.9;
}

.order-cta {
    margin-top: 16px;
    padding: 18px;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.order-cta-title {
    margin: 0;
    font-weight: 900;
}

.order-cta-text {
    margin: 6px 0 0;
    color: rgba(18, 18, 21, .72);
    line-height: 1.9;
}


/* =========================
   14) CONTACT / FORM
   ========================= */
.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 14px;
}

.contact-card {
    padding: 20px;
}

.contact-form {
    padding: 20px;
}

.contact-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.mini-note {
    margin-top: 10px;
    font-size: 13px;
    color: rgba(18, 18, 21, .75);
    min-height: 18px;
}

.mini-details {
    margin-top: 12px;
    font-size: 13px;
    color: rgba(18, 18, 21, .72);
    display: grid;
    gap: 6px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

label {
    font-size: 13px;
    color: rgba(18, 18, 21, .78);
    font-weight: 800;
}

input,
select,
textarea {
    background: rgba(255, 255, 255, .80);
    border: 1px solid rgba(17, 17, 19, .12);
    border-radius: 14px;
    padding: 12px 12px;
    color: rgba(18, 18, 21, .92);
    outline: none;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

input::placeholder,
textarea::placeholder {
    color: rgba(18, 18, 21, .45);
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(199, 163, 95, .35);
    background: rgba(255, 255, 255, .95);
    transform: translateY(-1px);
}

textarea {
    resize: vertical;
}

.form-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

/* סטטוסים לטופס (אם אתה משתמש בזה) */
.form-status {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(17, 17, 19, .12);
    background: rgba(255, 255, 255, .78);
    color: rgba(18, 18, 21, .85);
    font-size: 14px;
    line-height: 1.7;
    display: none;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
}

.form-status.success {
    display: block;
    border-color: rgba(199, 163, 95, .45);
    background: linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(251, 248, 242, .9));
}

.form-status.success::before {
    content: "✓ ";
    font-weight: 900;
    color: rgba(199, 163, 95, .9);
}

.form-status.error {
    display: block;
    border-color: rgba(190, 60, 60, .45);
    background: rgba(255, 235, 235, .85);
    color: rgba(120, 30, 30, .95);
}

.form-loading {
    pointer-events: none;
    opacity: .7;
}

.form-loading .btn {
    filter: grayscale(.2);
    cursor: wait;
}

input.error,
textarea.error,
select.error {
    border-color: rgba(190, 60, 60, .55) !important;
    background: rgba(255, 235, 235, .7);
}


/* =========================
   15) SOCIALS
   ========================= */
.socials {
    padding: 32px 0 18px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, .55);
}

.socials__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    text-align: center;
}

.socials__label {
    font-weight: 900;
    color: var(--muted);
    letter-spacing: .04em;
}

.socialIcon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    border: 1px solid rgba(17, 17, 19, .12);
    background: rgba(255, 255, 255, .7);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.socialIcon:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .92);
    border-color: rgba(199, 163, 95, .25);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .10);
}

.socialIcon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}


/* =========================
   16) FOOTER
   ========================= */
footer {
    padding: 26px 0 20px;
    border-top: 1px solid rgba(17, 17, 19, .08);
    background: black;
    text-align: center;
}

footer .copyright {
    margin: 0;
    color: white;
    font-size: 13px;
}


/* =========================
   17) TO TOP
   ========================= */
.to-top {
    position: fixed;
    left: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;
    border: 1px solid rgba(17, 17, 19, .12);
    background: rgba(251, 248, 242, .78);
    backdrop-filter: blur(10px);

    color: rgba(18, 18, 21, .92);
    box-shadow: 0 16px 44px rgba(0, 0, 0, .10);
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.to-top:hover {
    transform: translateY(-2px);
    border-color: rgba(199, 163, 95, .28);
    background: rgba(255, 255, 255, .85);
}


/* =========================
   18) REVEAL ANIMATION
   ========================= */
[data-reveal] {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .7s ease, transform .7s ease;
}

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


/* =========================
   19) LIGHTBOX (כולל תיקון הכפתורים!)
   ========================= */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 12, .72);
    display: grid;
    place-items: center;
    padding: 18px;
    z-index: 9999;

    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

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

.lightbox-inner {
    width: min(980px, 100%);
    max-height: 86vh;
    background: rgba(251, 248, 242, .92);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 22px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .25);
    overflow: hidden;
    position: relative;
}

.lightbox-img {
    width: 100%;
    height: 70vh;
    max-height: 70vh;
    object-fit: contain;
    background: rgba(0, 0, 0, .05);
}

.lightbox-caption {
    padding: 12px 14px;
    font-weight: 800;
    color: rgba(18, 18, 21, .78);
    border-top: 1px solid rgba(17, 17, 19, .10);
    background: rgba(255, 255, 255, .65);
}

/* כפתורי Lightbox */
.lb-btn {
    position: fixed;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .14);
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    cursor: pointer;
    display: grid;
    place-items: center;
    backdrop-filter: blur(10px);
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

/* חשוב: ב-hover לא “לדרוס” transform של prev/next (שיש להם translateY(-50%)) */
.lb-btn:hover {
    background: rgba(255, 255, 255, .20);
    border-color: rgba(255, 255, 255, .35);
}

/* Close כן יכול לקבל “הרמה” רגילה */
.lb-close:hover {
    transform: translateY(-2px);
}

/* Prev/Next שומרים על המרכז + הרמה קלה */
.lb-prev:hover,
.lb-next:hover {
    transform: translateY(-50%) translateY(-2px);
}

.lb-close {
    top: 18px;
    right: 18px;
    font-size: 18px;
}

.lb-prev {
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    font-size: 28px;
}

.lb-next {
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    font-size: 28px;
}


/* =========================
   20) CATALOG PAGE
   ========================= */
.catalog-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.catalog-bottom-cta {
    margin-top: 16px;
    padding: 18px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.whatsapp-btn {
    transition: background .25s ease, color .25s ease, box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}

.whatsapp-btn:hover {
    background: #25d366;
    color: #ffffff;
    border-color: #25d366;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.65), 0 12px 30px rgba(37, 211, 102, 0.35);
    transform: translateY(-2px);
}

.whatsapp-btn:hover::before {
    opacity: 0;
}

/* =========================================================
   21) RESPONSIVE — נקי (בלי כפילויות ובלי דריסות מיותרות)
   ========================================================= */

/* <= 980px */
@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 24px;
    }

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

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

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

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

    .order-cta,
    .gallery-cta,
    .catalog-bottom-cta {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .media-gallery {
        aspect-ratio: 16 / 10;
    }

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

/* <= 720px (תפריט מובייל) */
@media (max-width: 720px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 74px;
        right: 14px;
        left: 14px;

        background: rgba(251, 248, 242, .95);
        border: 1px solid rgba(17, 17, 19, .10);
        border-radius: 18px;
        padding: 12px;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;

        box-shadow: 0 18px 60px rgba(0, 0, 0, .10);

        opacity: 0;
        transform: translateY(-10px) scale(.98);
        pointer-events: none;
        visibility: hidden;
        transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
        transform-origin: top;
    }

    .nav-menu.open {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
        visibility: visible;
    }

    .nav-cta {
        border-right: none;
        margin-right: 0;
        padding-right: 0;
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }
}

/* <= 720px (Lightbox במובייל) */
@media (max-width: 720px) {
    .lightbox-inner {
        border-radius: 18px;
    }

    .lightbox-img {
        height: 62vh;
        max-height: 62vh;
    }
}

/* <= 520px — “מרווחים גדולים” זה בדרך כלל מה-container.
   כאן אנחנו מרחיבים את ה-container במובייל + מצופפים grid. */
@media (max-width: 520px) {
    .container {
        width: min(var(--max), calc(100% - 20px));
    }

    /* גלריה: 2 בעמודה, צפוף, לאורך */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .media-gallery {
        aspect-ratio: 3 / 4;
        border-radius: 16px;
    }

    /* מבטל במובייל את “תמונה ראשונה גדולה” */
    .gallery-grid figure:nth-child(1) {
        grid-column: auto;
        grid-row: auto;
    }

    /* קטלוג: 2 בשורה גם במובייל (לא נופל ל-1) */
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
}

/* <= 420px — עוד יותר צפוף */
@media (max-width: 420px) {
    .gallery-grid {
        gap: 4px;
    }

    .catalog-grid {
        gap: 4px;
    }
}

/* =========================================================
   PREMIUM ENHANCEMENTS v2
   ========================================================= */

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ── Stagger delays for [data-stagger] children ── */
[data-stagger] > *:nth-child(1) { transition-delay: .00s; }
[data-stagger] > *:nth-child(2) { transition-delay: .09s; }
[data-stagger] > *:nth-child(3) { transition-delay: .18s; }
[data-stagger] > *:nth-child(4) { transition-delay: .27s; }
[data-stagger] > *:nth-child(5) { transition-delay: .36s; }
[data-stagger] > *:nth-child(6) { transition-delay: .45s; }

/* ── Keyframes ── */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 12px 28px rgba(199,163,95,.22); }
    50%       { box-shadow: 0 18px 44px rgba(199,163,95,.42); }
}

@keyframes shimmer-sweep {
    from { transform: translateX(130%) rotate(18deg); }
    to   { transform: translateX(-130%) rotate(18deg); }
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Gold btn shimmer on hover */
.btn-gold:hover::before {
    animation: shimmer-sweep .65s ease forwards;
}

/* Primary CTA subtle glow pulse */
.btn-gold.btn-xl {
    animation: glow-pulse 3.5s ease infinite;
}
.btn-gold.btn-xl:hover {
    animation: none;
}

/* ── Section divider ── */
.section-divider {
    width: 52px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold2));
    border-radius: 999px;
    margin: 12px 0 0;
}

/* ── Eyebrow label ── */
.page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(199,163,95,.28);
    background: rgba(199,163,95,.08);
    font-size: 12px;
    font-weight: 700;
    color: rgba(18,18,21,.78);
    margin-bottom: 16px;
    letter-spacing: .05em;
}

/* ── About grid + image ── */
.about-image {
    border-radius: var(--radius2);
    overflow: hidden;
    min-height: 300px;
    border: 1px solid rgba(17,17,19,.12);
    box-shadow: var(--shadow);
}

/* ── Workshop teaser on homepage ── */
.workshop-teaser {
    display: flex;
    gap: 32px;
    align-items: center;
    padding: 32px;
    overflow: hidden;
}

.workshop-teaser-content {
    flex: 1;
}

.workshop-teaser-image {
    flex: 0 0 360px;
    border-radius: var(--radius2);
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
}

.workshop-teaser-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(0,0,0,.12);
}

@media (max-width: 800px) {
    .workshop-teaser {
        flex-direction: column-reverse;
        gap: 20px;
    }
    .workshop-teaser-image {
        flex: unset;
        width: 100%;
        min-height: 220px !important;
    }
}

/* ── Stats strip ── */
.stats-strip {
    display: flex;
    border-radius: var(--radius2);
    border: 1px solid rgba(17,17,19,.10);
    background: rgba(255,255,255,.75);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.stat-item + .stat-item::before {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(17,17,19,.10);
}

.stat-num {
    display: block;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--text), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: rgba(18,18,21,.65);
    margin-top: 6px;
    font-weight: 600;
}

/* ── Testimonials ── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.testimonial-card {
    padding: 24px;
}

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

.testimonial-text {
    margin: 0 0 18px;
    color: rgba(18,18,21,.78);
    line-height: 1.85;
    font-size: 14px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 900;
    font-size: 14px;
}

.testimonial-role {
    font-size: 12px;
    color: rgba(18,18,21,.55);
    margin-top: 3px;
}

/* ── Inclusions list ── */
.inclusion-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.inclusion-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255,255,255,.60);
    border: 1px solid rgba(17,17,19,.08);
    transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.inclusion-item:hover {
    transform: translateX(-3px);
    background: rgba(255,255,255,.88);
    border-color: rgba(199,163,95,.20);
}

.inclusion-icon {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 17px;
}

.inclusion-text strong {
    display: block;
    font-weight: 900;
    font-size: 14px;
    margin-bottom: 3px;
}

.inclusion-text span {
    color: rgba(18,18,21,.65);
    font-size: 13px;
    line-height: 1.65;
}

/* ── Workshop enhanced gallery layout ── */
.workshop-gallery-enhanced {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 14px;
}

.workshop-gallery-enhanced-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ── Workshop pill badge ── */
.workshop-pill {
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(17,17,19,.12);
    background: rgba(255,255,255,.74);
    font-size: 13px;
    color: rgba(18,18,21,.82);
    font-weight: 500;
}

/* ── Active nav link ── */
.nav-link--active {
    color: rgba(18,18,21,.95) !important;
    background: rgba(199,163,95,.10);
    border-radius: 12px;
}

/* ── Legal page content ── */
.legal-page-wrap {
    padding: 50px 0 90px;
}

.legal-content {
    max-width: 72ch;
}

.legal-content h2 {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 900;
    margin: 36px 0 10px;
    color: var(--text);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p,
.legal-content li {
    color: rgba(18,18,21,.78);
    line-height: 2;
    font-size: 15px;
}

.legal-content ul {
    padding-inline-start: 22px;
    margin: 8px 0 16px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content a:hover {
    color: rgba(199,163,95,.80);
}

.legal-last-updated {
    font-size: 12px;
    color: rgba(18,18,21,.50);
    margin-top: 6px;
    display: block;
}

/* ── Footer legal links ── */
.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.12);
}

.footer-legal a {
    color: rgba(255,255,255,.55);
    font-size: 12px;
    transition: color .2s ease;
}

.footer-legal a:hover {
    color: rgba(255,255,255,.88);
}

/* ── Responsive for new components ── */
@media (max-width: 980px) {
    .stats-strip {
        flex-wrap: wrap;
    }
    .stat-item {
        flex: 1 1 50%;
    }
    .stat-item:nth-child(2)::before {
        display: none;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .workshop-gallery-enhanced {
        grid-template-columns: 1fr;
    }
    .workshop-gallery-enhanced-right {
        flex-direction: row;
    }
}

@media (max-width: 520px) {
    .stat-item {
        flex: 1 1 100%;
    }
    .stat-item + .stat-item::before {
        display: none;
    }
    .workshop-gallery-enhanced-right {
        flex-direction: column;
    }
}

/* ========================================
   WORKSHOPS PAGE
======================================== */

.workshop-page {
    padding-top: 40px;
    padding-bottom: 90px;
    display: flex;
    flex-direction: column;
    gap: 90px;
}

/* כל בלוק ראשי יקבל נוכחות של סקשן */
.workshop-page>.section-head,
.workshop-page>.workshop-hero,
.workshop-page>.workshop-grid,
.workshop-page>.workshop-flow,
.workshop-page>.workshop-gallery-wrap,
.workshop-page>.workshop-cta {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* spotlight עדין לכל אזור */
.workshop-page>.section-head::before,
.workshop-page>.workshop-hero::before,
.workshop-page>.workshop-grid::before,
.workshop-page>.workshop-flow::before,
.workshop-page>.workshop-gallery-wrap::before,
.workshop-page>.workshop-cta::before {
    content: "";
    position: absolute;
    inset: -18px;
    border-radius: 30px;
    background: radial-gradient(700px 220px at 50% 0%, rgba(199, 163, 95, .08), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.workshop-page>.section-head>*,
.workshop-page>.workshop-hero>*,
.workshop-page>.workshop-grid>*,
.workshop-page>.workshop-flow>*,
.workshop-page>.workshop-gallery-wrap>*,
.workshop-page>.workshop-cta>* {
    position: relative;
    z-index: 1;
}

.workshop-page .section-head {
    margin-bottom: 0;
}

.workshop-hero {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 24px;
    align-items: center;
}

.workshop-hero-content,
.workshop-card,
.workshop-flow,
.workshop-cta {
    padding: 28px;
}

.workshop-title {
    margin: 0 0 16px;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 900;
}

.workshop-text {
    margin: 0;
    color: rgba(18, 18, 21, .74);
    line-height: 2;
}

.workshop-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.workshop-pill {
    padding: 9px 12px;
    border-radius: 999px;
    border: 1px solid rgba(17, 17, 19, .12);
    background: rgba(255, 255, 255, .74);
    font-size: 13px;
    color: rgba(18, 18, 21, .82);
}

.workshop-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.workshop-main-image {
    min-height: 100%;
    display: flex;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.workshop-main-image:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .10);
}

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}

.workshop-card {
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}

.workshop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .10);
    border-color: rgba(199, 163, 95, .22);
    background: rgba(255, 255, 255, .90);
}

.workshop-flow {
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}

.workshop-flow:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .10);
    border-color: rgba(199, 163, 95, .22);
    background: rgba(255, 255, 255, .90);
}

.workshop-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 12px;
}

.workshop-gallery-wrap {
    margin-top: 0;
}

.workshop-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.workshop-frame {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.workshop-frame:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .10);
    border-color: rgba(199, 163, 95, .22);
}

.workshop-placeholder {
    width: 100%;
    height: 100%;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px dashed rgba(199, 163, 95, .45);
    border-radius: 24px;
    background:
        radial-gradient(900px 240px at 50% 0%, rgba(199, 163, 95, .10), transparent 60%),
        rgba(255, 255, 255, .55);
    color: rgba(18, 18, 21, .55);
    font-weight: 800;
    font-size: 15px;
    text-align: center;
    padding: 20px;
    transition: transform .35s ease, border-color .3s ease, background .3s ease;
}

.workshop-frame:hover .workshop-placeholder,
.workshop-main-image:hover .workshop-placeholder {
    transform: scale(1.02);
    border-color: rgba(199, 163, 95, .65);
    background:
        radial-gradient(900px 240px at 50% 0%, rgba(199, 163, 95, .16), transparent 60%),
        rgba(255, 255, 255, .72);
}

.workshop-cta {
    margin-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}

.workshop-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .10);
    border-color: rgba(199, 163, 95, .22);
    background: rgba(255, 255, 255, .90);
}

/* אנימציות חיות יותר */
.workshop-page [data-reveal] {
    transition: opacity .9s ease, transform .9s ease;
}

.workshop-page .revealed.workshop-card,
.workshop-page .revealed.workshop-frame,
.workshop-page .revealed.workshop-cta,
.workshop-page .revealed.workshop-hero-content,
.workshop-page .revealed.workshop-main-image,
.workshop-page .revealed.workshop-flow {
    animation: workshopFloatIn .8s ease both;
}

@keyframes workshopFloatIn {
    from {
        opacity: 0;
        transform: translateY(22px) scale(.985);
    }

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

/* =========================
   TABLET
========================= */
@media (max-width: 980px) {
    .workshop-page {
        gap: 60px;
        padding-bottom: 70px;
    }

    .workshop-page>.section-head,
    .workshop-page>.workshop-hero,
    .workshop-page>.workshop-grid,
    .workshop-page>.workshop-flow,
    .workshop-page>.workshop-gallery-wrap,
    .workshop-page>.workshop-cta {
        min-height: auto;
        padding: 30px 0;
    }

    .workshop-hero {
        grid-template-columns: 1fr;
        gap: 18px;
    }

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

    .workshop-steps {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .workshop-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .workshop-hero-content,
    .workshop-card,
    .workshop-flow,
    .workshop-cta {
        padding: 22px;
    }

    .workshop-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 520px) {
    .workshop-page {
        gap: 40px;
        padding-top: 20px;
        padding-bottom: 50px;
    }

    .workshop-page>.section-head,
    .workshop-page>.workshop-hero,
    .workshop-page>.workshop-grid,
    .workshop-page>.workshop-flow,
    .workshop-page>.workshop-gallery-wrap,
    .workshop-page>.workshop-cta {
        padding: 18px 0;
    }

    .workshop-hero {
        gap: 14px;
    }

    .workshop-gallery {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .workshop-hero-content,
    .workshop-card,
    .workshop-flow,
    .workshop-cta {
        padding: 18px;
    }

    .workshop-placeholder {
        min-height: 220px;
    }
}

/* =========================================================
   VISUAL POLISH v3 — Proportions, Rhythm & Motion
   Full override for cards, spacing, animations, depth.
   ========================================================= */


/* ── Easing curve token ─────────────────────────────────── */
:root {
    --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-lift: 0 28px 70px rgba(0, 0, 0, .13);
    --shadow-card: 0 12px 38px rgba(0, 0, 0, .08);
}


/* ── Reveal animation — spring-based, with scale ────────── */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px) scale(0.982);
    transition:
        opacity  0.85s var(--ease-out),
        transform 0.85s var(--ease-out);
}

.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}


/* ── Stagger — slightly wider intervals ──────────────────── */
[data-stagger] > *:nth-child(1) { transition-delay: 0.00s; }
[data-stagger] > *:nth-child(2) { transition-delay: 0.12s; }
[data-stagger] > *:nth-child(3) { transition-delay: 0.24s; }
[data-stagger] > *:nth-child(4) { transition-delay: 0.36s; }
[data-stagger] > *:nth-child(5) { transition-delay: 0.48s; }
[data-stagger] > *:nth-child(6) { transition-delay: 0.60s; }


/* ── Section rhythm — more breathing room ───────────────── */
.section {
    padding: 96px 0;
}

.section-head {
    margin-bottom: 40px;
}

.section-subtitle {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.75;
}


/* ── Hero image — continuous float ──────────────────────── */
/* Applied to figure (no hover transform on media-hero) */
.hero-visual .media-hero {
    animation: float 7s ease-in-out 1.6s infinite;
    will-change: transform;
}


/* ── Glass depth — inner radial glow ────────────────────── */
.glass {
    background:
        radial-gradient(520px 180px at 60% -10%, rgba(199, 163, 95, .07), transparent 55%),
        rgba(255, 255, 255, .74);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.bordered {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}


/* ── CTA blocks — inner gold wash ───────────────────────── */
.gallery-cta,
.order-cta,
.workshop-cta,
.catalog-bottom-cta {
    background:
        radial-gradient(700px 220px at 50% 0%, rgba(199, 163, 95, .09), transparent 55%),
        rgba(255, 255, 255, .80);
    border: 1px solid rgba(17, 17, 19, .08);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .09);
}

.gallery-cta  { padding: 28px 34px; margin-top: 20px; }
.order-cta    { padding: 28px 34px; margin-top: 20px; }
.workshop-cta { padding: 32px 36px; }

.catalog-bottom-cta { padding: 28px 34px; }

.gallery-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}


/* ── About card — more interior space ───────────────────── */
.about-card {
    padding: 38px 40px;
}

.about-card .card-title {
    font-size: 22px;
    margin-bottom: 18px;
    letter-spacing: -0.015em;
}

.about-card .card-text {
    font-size: 15px;
    line-height: 2.05;
}

/* About image hover zoom */
.about-image {
    overflow: hidden;
    transition:
        transform 0.45s var(--ease-spring),
        box-shadow 0.45s ease;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lift);
}

.about-image img {
    transition: transform 0.6s var(--ease-spring);
}

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


/* ── Feature cards — taller, deeper, animated icon ──────── */
.features {
    gap: 16px;
}

.feature {
    padding: 28px 26px 30px;
    box-shadow: var(--shadow-card);
    transition:
        transform  0.38s var(--ease-spring),
        box-shadow 0.38s ease,
        border-color 0.25s ease,
        background   0.25s ease;
    position: relative;
    overflow: hidden;
}

/* Inner spotlight that fades in on hover */
.feature::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(440px 160px at 50% -20%, rgba(199, 163, 95, .10), transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.feature:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, .12);
    border-color: rgba(199, 163, 95, .32);
    background: rgba(255, 255, 255, .95);
}

.feature:hover::before {
    opacity: 1;
}

/* Icon bounce on card hover */
.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    font-size: 17px;
    transition: transform 0.38s var(--ease-spring);
    position: relative;
    z-index: 1;
}

.feature:hover .feature-icon {
    transform: scale(1.15) rotate(-6deg);
}

.feature-title {
    font-size: 15px;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

.feature-text {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.88;
    position: relative;
    z-index: 1;
}


/* ── Gallery grid — breathable gap ──────────────────────── */
.gallery-grid {
    gap: 16px;
}

.media-gallery {
    transition:
        transform  0.38s var(--ease-spring),
        box-shadow 0.38s ease;
}

.media-gallery img {
    transition:
        transform 0.55s var(--ease-spring),
        filter    0.55s ease;
}

.media-gallery:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 68px rgba(0, 0, 0, .15);
}

.media-gallery:hover img {
    transform: scale(1.07);
    filter: saturate(1.1) contrast(1.03) brightness(1.01);
}


/* ── Step cards — gold bottom bar on hover ───────────────── */
.steps {
    gap: 16px;
}

.step {
    padding: 26px 24px;
    box-shadow: var(--shadow-card);
    transition:
        transform  0.38s var(--ease-spring),
        box-shadow 0.38s ease,
        border-color 0.25s ease,
        background   0.25s ease;
    position: relative;
    overflow: hidden;
}

/* Gold accent bar slides in from right on hover */
.step::after {
    content: "";
    position: absolute;
    bottom: 0;
    inset-inline: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold2));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.42s var(--ease-spring);
    border-radius: 0 0 var(--radius) var(--radius);
}

.step:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 58px rgba(0, 0, 0, .12);
    border-color: rgba(199, 163, 95, .30);
    background: rgba(255, 255, 255, .95);
}

.step:hover::after {
    transform: scaleX(1);
}

.step-num {
    font-size: 14px;
    box-shadow: 0 10px 26px rgba(199, 163, 95, .28);
}

.step-title {
    font-size: 15px;
    letter-spacing: -0.01em;
}

.step-text {
    font-size: 14px;
    line-height: 1.85;
}


/* ── Contact card ────────────────────────────────────────── */
.contact-card {
    padding: 38px 40px;
}

.contact-card .card-title {
    font-size: 20px;
    margin-bottom: 4px;
}


/* ── Buttons — spring transitions ────────────────────────── */
.btn {
    transition:
        transform  0.32s var(--ease-spring),
        box-shadow 0.32s ease,
        background  0.22s ease,
        border-color 0.22s ease,
        color 0.22s ease;
    font-size: 14px;
    letter-spacing: 0.02em;
}

.btn-gold {
    box-shadow: 0 8px 26px rgba(199, 163, 95, .30), 0 2px 8px rgba(199, 163, 95, .18);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 46px rgba(199, 163, 95, .36), 0 4px 14px rgba(199, 163, 95, .22);
}

.btn-ghost:hover,
.btn-glass:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .10);
}

.btn:active {
    transform: translateY(0) scale(0.98) !important;
    transition-duration: 0.1s;
}


/* ── Nav links — spring lift ─────────────────────────────── */
.nav-link {
    transition:
        color      0.22s ease,
        background 0.22s ease,
        transform  0.32s var(--ease-spring);
    font-weight: 500;
}


/* ── To-top button ───────────────────────────────────────── */
.to-top {
    transition:
        transform  0.32s var(--ease-spring),
        box-shadow 0.32s ease,
        border-color 0.22s ease,
        background   0.22s ease;
}

.to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 52px rgba(0, 0, 0, .14);
    border-color: rgba(199, 163, 95, .34);
}


/* ── Social icons ────────────────────────────────────────── */
.socialIcon {
    transition:
        transform  0.32s var(--ease-spring),
        box-shadow 0.32s ease,
        background   0.22s ease,
        border-color 0.22s ease;
}

.socialIcon:hover {
    transform: translateY(-5px) scale(1.06);
    background: rgba(255, 255, 255, .97);
    border-color: rgba(199, 163, 95, .32);
    box-shadow: 0 22px 52px rgba(0, 0, 0, .13);
}


/* ── Workshop page ────────────────────────────────────────── */

/* Remove the 100vh minimum that creates dead whitespace */
.workshop-page {
    gap: 72px;
}

.workshop-page > .section-head,
.workshop-page > .workshop-hero,
.workshop-page > .workshop-grid,
.workshop-page > .workshop-flow,
.workshop-page > .workshop-gallery-wrap,
.workshop-page > .workshop-cta {
    min-height: unset !important;
    display: block;
}

/* Workshop card more generous padding */
.workshop-hero-content,
.workshop-card,
.workshop-flow {
    padding: 36px 38px;
}

/* Workshop title */
.workshop-title {
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.12;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.workshop-text {
    font-size: 15px;
    line-height: 2.0;
}

/* Workshop hero gap */
.workshop-hero {
    gap: 28px;
}

/* Workshop tags */
.workshop-tags {
    gap: 10px;
    margin-top: 26px;
}

.workshop-pill {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    transition:
        background   0.22s ease,
        border-color 0.22s ease,
        transform    0.28s var(--ease-spring);
}

.workshop-pill:hover {
    background: rgba(255, 255, 255, .95);
    border-color: rgba(199, 163, 95, .28);
    transform: translateY(-2px);
}

/* Workshop actions */
.workshop-actions {
    margin-top: 30px;
    gap: 14px;
}

/* Workshop grid gap */
.workshop-grid {
    gap: 16px;
}

/* Workshop card hover — more lift + shadow */
.workshop-card {
    transition:
        transform  0.38s var(--ease-spring),
        box-shadow 0.38s ease,
        border-color 0.25s ease,
        background   0.25s ease;
}

.workshop-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 30px 68px rgba(0, 0, 0, .13);
    border-color: rgba(199, 163, 95, .34);
    background: rgba(255, 255, 255, .96);
}

/* Workshop flow blocks */
.workshop-flow {
    transition:
        transform  0.38s var(--ease-spring),
        box-shadow 0.38s ease,
        border-color 0.25s ease,
        background   0.25s ease;
}

.workshop-flow:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 62px rgba(0, 0, 0, .11);
    border-color: rgba(199, 163, 95, .24);
    background: rgba(255, 255, 255, .94);
}

/* Steps inside workshop flow */
.workshop-steps {
    gap: 18px;
    margin-top: 26px;
}

.workshop-flow .step {
    background: rgba(255, 255, 255, .55);
    border-color: rgba(17, 17, 19, .08);
}

.workshop-flow .step:hover {
    background: rgba(255, 255, 255, .88);
    border-color: rgba(199, 163, 95, .24);
}

/* Workshop main image — hover lift + zoom */
.workshop-main-image {
    overflow: hidden;
    transition:
        transform  0.45s var(--ease-spring),
        box-shadow 0.45s ease;
}

.workshop-main-image img {
    transition: transform 0.6s var(--ease-spring);
}

.workshop-main-image:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 34px 75px rgba(0, 0, 0, .14) !important;
}

.workshop-main-image:hover img {
    transform: scale(1.05);
}

/* Workshop gallery gap */
.workshop-gallery {
    gap: 16px;
}

/* Workshop gallery frames */
.workshop-frame {
    overflow: hidden;
    transition:
        transform  0.38s var(--ease-spring),
        box-shadow 0.38s ease,
        border-color 0.25s ease;
}

.workshop-frame img {
    transition: transform 0.6s var(--ease-spring);
}

.workshop-frame:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 28px 65px rgba(0, 0, 0, .13);
    border-color: rgba(199, 163, 95, .30);
}

.workshop-frame:hover img {
    transform: scale(1.06);
}

/* Workshop CTA */
.workshop-cta {
    transition:
        transform  0.38s var(--ease-spring),
        box-shadow 0.38s ease,
        border-color 0.25s ease;
}

.workshop-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 68px rgba(0, 0, 0, .12);
    border-color: rgba(199, 163, 95, .28);
}


/* ── Testimonial cards ────────────────────────────────────── */
.testimonial-card {
    padding: 30px 32px;
    transition:
        transform  0.38s var(--ease-spring),
        box-shadow 0.38s ease,
        border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

/* Decorative opening quote */
.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 10px;
    left: 22px;
    font-size: 80px;
    line-height: 1;
    color: rgba(199, 163, 95, .12);
    font-family: Georgia, serif;
    pointer-events: none;
    user-select: none;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 62px rgba(0, 0, 0, .12);
    border-color: rgba(199, 163, 95, .24);
}

.testimonial-stars {
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 20px;
}


/* ── Stats strip ────────────────────────────────────────── */
.stat-item {
    padding: 36px 22px;
    transition: background 0.25s ease;
    cursor: default;
}

.stat-item:hover {
    background: rgba(199, 163, 95, .04);
}


/* ── Inclusion items ─────────────────────────────────────── */
.inclusion-item {
    padding: 18px 20px;
    transition:
        transform  0.32s var(--ease-spring),
        background  0.22s ease,
        border-color 0.22s ease,
        box-shadow  0.32s ease;
}

.inclusion-item:hover {
    transform: translateX(-4px);
    background: rgba(255, 255, 255, .94);
    border-color: rgba(199, 163, 95, .24);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}


/* ── Workshop teaser ─────────────────────────────────────── */
.workshop-teaser {
    padding: 36px 38px;
    transition:
        box-shadow 0.35s ease,
        border-color 0.25s ease;
}

.workshop-teaser:hover {
    box-shadow: 0 30px 70px rgba(0, 0, 0, .11);
    border-color: rgba(199, 163, 95, .20);
}


/* ── Catalog grid gap ────────────────────────────────────── */
.catalog-grid {
    gap: 14px;
}


/* ── Responsive overrides ────────────────────────────────── */
@media (max-width: 980px) {
    .section {
        padding: 76px 0;
    }

    .section-head {
        margin-bottom: 32px;
    }

    .about-card {
        padding: 30px 32px;
    }

    .contact-card {
        padding: 30px 32px;
    }

    .gallery-cta,
    .order-cta {
        padding: 24px 28px;
    }

    .workshop-hero-content,
    .workshop-card,
    .workshop-flow {
        padding: 28px 30px;
    }
}

@media (max-width: 520px) {
    .section {
        padding: 60px 0;
    }

    .section-head {
        margin-bottom: 26px;
    }

    .about-card {
        padding: 24px 26px;
    }

    .contact-card {
        padding: 24px 26px;
    }

    .gallery-cta,
    .order-cta {
        padding: 20px 22px;
    }

    .workshop-hero-content,
    .workshop-card,
    .workshop-flow,
    .workshop-cta {
        padding: 22px 24px;
    }

    /* Stop floating on mobile (performance) */
    .hero-visual .media-hero {
        animation: none;
    }

    /* No step bar accent on mobile */
    .step::after {
        display: none;
    }

    /* Reduce workshop gap */
    .workshop-page {
        gap: 50px;
    }
}


/* =========================================================
   PROPORTION REFINEMENT v4
   Controlled aspect ratios, image sizing, card balance.
   No blind enlargements — every dimension is intentional.
   ========================================================= */

/* ── 1. About section — image proportion, no grid-stretch ── */

/* Don't stretch the image to match the tall text card height  */
.about-image {
    aspect-ratio: 4 / 3;    /* landscape, shorter than the text card — editorial */
    align-self: start;       /* break out of grid stretch so aspect-ratio wins  */
    min-height: unset;
    height: auto;
}

/* ── 2. Workshop hero — image is start-aligned, portrait ─── */

/* Hero content and image both align from the top — no forced equal-height */
.workshop-hero {
    align-items: start;
}

/* Portrait aspect-ratio keeps the image from stretching to text-block height */
.workshop-main-image {
    aspect-ratio: 5 / 6;
    align-self: start;
    min-height: unset;
    display: block;          /* remove the display:flex that was causing stretch */
}

/* ── 3. Enhanced gallery — driven by left frame aspect-ratio ─ */

/* Base workshop frame: 4/3 landscape for secondary gallery */
.workshop-frame {
    aspect-ratio: 4 / 3;
    min-height: unset;
}

/* Left (2fr) frame: landscape editorial proportion drives row height.
   Must come AFTER .workshop-frame to win the cascade at equal specificity. */
.workshop-frame--main {
    aspect-ratio: 3 / 2;
    align-self: start;
}

/* Right stacked frames: fill the right column height equally */
.workshop-frame--side {
    flex: 1;
    min-height: 0;           /* allow flex-shrink below min-content */
    aspect-ratio: unset;     /* height comes from flex, not aspect-ratio */
}

/* ── 4. Workshop card padding — reduce for ⅓-width cards ─── */

.workshop-hero-content,
.workshop-card,
.workshop-flow {
    padding: 28px 30px;
}

/* ── 5. Workshop CTA padding — trim slightly ─────────────── */

.workshop-cta {
    padding: 28px 32px;
}

/* ── 6. Workshop steps inside flow — less vertical gap ────── */

.workshop-steps {
    gap: 14px;
    margin-top: 20px;
}

/* ── 7. Stats strip — tighter height ────────────────────── */

.stat-item {
    padding: 28px 20px;
}


/* ── Responsive overrides for v4 ──────────────────────────── */

@media (max-width: 980px) {

    /* On tablet, enhanced gallery collapses to 1 col.
       Left frame takes full width — landscape is fine.        */
    .workshop-frame--main {
        aspect-ratio: 3 / 2;
        align-self: auto;
    }

    /* Right frames go side-by-side (existing CSS: flex-direction row).
       Give them an aspect-ratio so they don't collapse.        */
    .workshop-frame--side {
        flex: 1;
        aspect-ratio: 3 / 2;
        min-height: 0;
    }

    /* Workshop hero image: shallower portrait on tablet */
    .workshop-main-image {
        aspect-ratio: 3 / 2;
    }

    /* About image: landscape on tablet (shorter row) */
    .about-image {
        aspect-ratio: 3 / 2;
    }

    .workshop-hero-content,
    .workshop-card,
    .workshop-flow {
        padding: 22px 24px;
    }

    .workshop-cta {
        padding: 22px 26px;
    }
}

@media (max-width: 520px) {

    /* Right frames go back to column stack on mobile */
    .workshop-frame--side {
        flex: unset;
        aspect-ratio: 4 / 3;
        width: 100%;
    }

    /* Workshop hero image: standard landscape on mobile */
    .workshop-main-image {
        aspect-ratio: 4 / 3;
    }

    /* About image: landscape — does not dominate on mobile */
    .about-image {
        aspect-ratio: 4 / 3;
    }

    .workshop-hero-content,
    .workshop-card,
    .workshop-flow,
    .workshop-cta {
        padding: 18px 20px;
    }
}


/* ==============================================
   WORKSHOP REDESIGN — wsr- namespace
   ============================================== */

/* ── Hero ── */
.wsr-hero {
    position: relative;
    width: 100%;
    height: 68vh;
    min-height: 420px;
    max-height: 650px;
    overflow: hidden;
    border-radius: var(--radius2);
    margin-bottom: 56px;
}

.wsr-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

.wsr-hero-inner {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,14,16,.78) 0%, rgba(14,14,16,.18) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(24px, 5vw, 56px);
}

.wsr-hero-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.wsr-hero-title {
    font-size: clamp(32px, 6vw, 68px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 14px;
}

.wsr-hero-sub {
    font-size: clamp(15px, 1.8vw, 19px);
    color: rgba(255,255,255,.82);
    max-width: 520px;
    margin: 0 0 28px;
    line-height: 1.6;
}

.wsr-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── Split sections ── */
.wsr-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 72px;
}

.wsr-split--flip {
    direction: ltr;
}

.wsr-split--flip .wsr-split-text {
    direction: rtl;
}

.wsr-split-img {
    border-radius: var(--radius2);
    overflow: hidden;
    aspect-ratio: 4/5;
}

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

.wsr-split-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wsr-split-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
}

.wsr-split-title {
    font-size: clamp(24px, 3.2vw, 36px);
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
}

.wsr-split-body {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0;
}

.wsr-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.wsr-tag {
    background: rgba(17,17,19,.06);
    border: 1px solid rgba(17,17,19,.10);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 600;
}

/* ── Includes grid ── */
.wsr-includes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 72px;
}

.wsr-inc-card {
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(17,17,19,.10);
    border-radius: var(--radius2);
    box-shadow: var(--shadow);
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wsr-inc-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(17,17,19,.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.wsr-inc-title {
    font-size: 16px;
    font-weight: 800;
    margin: 0;
}

.wsr-inc-body {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}

/* ── Process ── */
.wsr-process-bg {
    background: rgba(17,17,19,.04);
    border-radius: var(--radius2);
    padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 48px);
    margin-bottom: 72px;
}

.wsr-process-head {
    text-align: center;
    margin-bottom: 40px;
}

.wsr-process-title {
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 900;
    margin: 0 0 10px;
}

.wsr-process {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
}

.wsr-step {
    text-align: center;
    padding: 0 12px;
}

.wsr-step-num {
    font-size: 42px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}

.wsr-step-title {
    font-size: 17px;
    font-weight: 800;
    margin: 0 0 8px;
}

.wsr-step-body {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

.wsr-step-arrow {
    font-size: 28px;
    color: rgba(17,17,19,.25);
    padding: 0 4px;
    user-select: none;
}

/* ── Gallery ── */
.wsr-gallery-wrap {
    margin-bottom: 72px;
}

.wsr-gallery-head {
    text-align: center;
    margin-bottom: 28px;
}

.wsr-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 10px;
}

.wsr-gal-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.wsr-gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.wsr-gal-item:hover img {
    transform: scale(1.04);
}

.wsr-gal-big {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: unset;
}

.wsr-gal-big img {
    aspect-ratio: unset;
    height: 100%;
    min-height: 340px;
}

.wsr-gal-sm {
    aspect-ratio: 4/3;
}

/* ── Testimonials ── */
.wsr-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 72px;
}

.wsr-tcard {
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(17,17,19,.10);
    border-radius: var(--radius2);
    box-shadow: var(--shadow);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wsr-tcard-stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
}

.wsr-tcard-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
    flex: 1;
}

.wsr-tcard-author {
    font-weight: 800;
    font-size: 14px;
}

.wsr-tcard-role {
    font-size: 13px;
    color: var(--text-muted);
}

/* ── CTA ── */
.wsr-cta {
    text-align: center;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(17,17,19,.10);
    border-radius: var(--radius2);
    box-shadow: var(--shadow);
    padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 56px);
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.wsr-cta-title {
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 900;
    margin: 0;
}

.wsr-cta-sub {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0;
}

.wsr-cta-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ── Responsive ── */
@media (max-width: 980px) {
    .wsr-split {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 52px;
    }

    .wsr-split--flip {
        direction: rtl;
    }

    .wsr-split-img {
        aspect-ratio: 3/2;
    }

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

    .wsr-process {
        grid-template-columns: 1fr;
        gap: 0;
        position: relative;
        padding-right: 48px;
    }

    /* vertical timeline line */
    .wsr-process::before {
        content: "";
        position: absolute;
        right: 20px;
        top: 24px;
        bottom: 24px;
        width: 2px;
        background: linear-gradient(to bottom, var(--gold), rgba(17,17,19,.10));
    }

    .wsr-step {
        text-align: right;
        padding: 0 0 36px;
        position: relative;
    }

    .wsr-step:last-child {
        padding-bottom: 0;
    }

    /* dot on the timeline */
    .wsr-step::before {
        content: "";
        position: absolute;
        right: -35px;
        top: 8px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--gold);
        box-shadow: 0 0 0 4px rgba(17,17,19,.06);
    }

    .wsr-step-arrow {
        display: none;
    }

    .wsr-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .wsr-gal-big {
        grid-column: span 2;
        grid-row: span 1;
    }

    .wsr-gal-big img {
        min-height: 220px;
    }

    /* testimonials: horizontal snap scroll */
    .wsr-testimonials {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        padding-bottom: 12px;
        margin-bottom: 52px;
        scrollbar-width: none;
    }

    .wsr-testimonials::-webkit-scrollbar {
        display: none;
    }

    .wsr-tcard {
        flex: 0 0 78vw;
        max-width: 340px;
        scroll-snap-align: start;
    }
}

@media (max-width: 520px) {
    .wsr-hero {
        height: 88vh;
        min-height: 520px;
        border-radius: var(--radius);
    }

    .wsr-hero-inner {
        background: linear-gradient(to top, rgba(14,14,16,.88) 0%, rgba(14,14,16,.25) 55%, transparent 100%);
        padding: 28px 22px;
    }

    .wsr-hero-title {
        font-size: clamp(34px, 9vw, 48px);
        margin-bottom: 10px;
    }

    .wsr-hero-sub {
        font-size: 15px;
        margin-bottom: 22px;
    }

    .wsr-hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .wsr-hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .wsr-split {
        margin-bottom: 40px;
    }

    .wsr-split-img {
        aspect-ratio: 4/3;
        border-radius: var(--radius);
    }

    .wsr-includes {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .wsr-inc-card {
        padding: 20px 16px;
        gap: 10px;
    }

    .wsr-inc-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .wsr-inc-title {
        font-size: 14px;
    }

    .wsr-inc-body {
        font-size: 13px;
    }

    .wsr-process-bg {
        padding: 28px 20px 28px 24px;
        margin-bottom: 48px;
    }

    .wsr-process {
        padding-right: 40px;
    }

    .wsr-process::before {
        right: 16px;
    }

    .wsr-step::before {
        right: -31px;
    }

    .wsr-step-num {
        font-size: 32px;
    }

    .wsr-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .wsr-gallery-wrap {
        margin-bottom: 48px;
    }

    .wsr-tcard {
        flex: 0 0 86vw;
    }

    .wsr-cta {
        padding: 36px 22px;
        gap: 16px;
        border-radius: var(--radius);
    }

    .wsr-cta-title {
        font-size: clamp(22px, 6vw, 30px);
    }

    .wsr-cta-sub {
        font-size: 15px;
    }

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

/* lightbox arrows: bigger touch targets on mobile */
@media (max-width: 720px) {
    .lb-prev,
    .lb-next {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        font-size: 26px;
        top: auto;
        bottom: 28px;
        transform: none;
    }

    .lb-prev:hover,
    .lb-next:hover {
        transform: translateY(-2px);
    }

    .lb-prev {
        right: auto;
        left: calc(50% + 36px);
    }

    .lb-next {
        left: auto;
        right: calc(50% + 36px);
    }

    .lb-close {
        top: 14px;
        right: 14px;
        width: 44px;
        height: 44px;
        border-radius: 50%;
    }
}