:root {
    --ob-bg: #0b0d10;
    --ob-bg-soft: #11151a;
    --ob-card: rgba(20, 24, 30, 0.82);
    --ob-card-solid: #14181d;
    --ob-line: rgba(201, 168, 76, 0.18);
    --ob-gold: #c9a84c;
    --ob-gold-strong: #f0cb68;
    --ob-text: #f4f1ea;
    --ob-muted: #a6a6aa;
    --ob-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    --ob-radius: 28px;
    --ob-container: 1280px;
    --ob-header-h: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.ob-site {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(201,168,76,.07), transparent 24%),
        linear-gradient(180deg, #07090c 0%, #090c10 42%, #0c1116 100%);
    color: var(--ob-text);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.ob-container { width: min(var(--ob-container), calc(100% - 40px)); margin: 0 auto; }
.ob-site-shell { overflow: clip; }

.ob-kicker {
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ob-gold);
    margin-bottom: 18px;
    font-weight: 700;
}

.ob-btn {
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    border: 1px solid var(--ob-gold);
    background: linear-gradient(135deg, var(--ob-gold) 0%, var(--ob-gold-strong) 100%);
    color: #111;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
    box-shadow: 0 14px 30px rgba(201, 168, 76, 0.24);
}
.ob-btn:hover { transform: translateY(-2px); }
.ob-btn--ghost {
    background: transparent;
    color: var(--ob-text);
    box-shadow: none;
}
.ob-btn--sm { min-height: 46px; padding: 0 22px; font-size: 12px; }

.ob-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(8, 10, 13, 0.72);
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.ob-header__inner {
    min-height: var(--ob-header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.ob-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.ob-brand--has-logo .custom-logo-link,
.ob-brand__logo {
    display: inline-flex;
    align-items: center;
}
.ob-brand__logo img {
    max-height: 54px;
    width: auto;
}
.ob-brand__mark {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--ob-gold), var(--ob-gold-strong));
    color: #111;
    font-weight: 800;
    font-family: 'Unbounded', sans-serif;
}
.ob-brand__text strong,
.ob-brand__text small { display: block; }
.ob-brand__text strong {
    font-family: 'Unbounded', sans-serif;
    font-size: 15px;
    letter-spacing: 0.08em;
}
.ob-brand__text small {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ob-muted);
    margin-top: 4px;
}
.ob-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}
.ob-nav a,
.ob-header__phone,
.ob-mobile-nav a {
    text-decoration: none;
    color: var(--ob-text);
    transition: color .3s ease, opacity .3s ease;
}
.ob-nav a:hover,
.ob-header__phone:hover,
.ob-mobile-nav a:hover { color: var(--ob-gold); }
.ob-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.ob-header__phone {
    font-weight: 700;
    white-space: nowrap;
}
.ob-burger {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    background: transparent;
    padding: 0;
    cursor: pointer;
}
.ob-burger span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
    transition: transform .3s ease, opacity .3s ease;
}
.ob-menu-open { overflow: hidden; }
.ob-menu-open .ob-burger span:first-child { transform: translateY(7px) rotate(45deg); }
.ob-menu-open .ob-burger span:last-child { transform: translateY(-7px) rotate(-45deg); }
.ob-mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 80;
    pointer-events: none;
}
.ob-mobile-nav__overlay {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(3, 5, 8, .82);
    opacity: 0;
    transition: opacity .35s ease;
    backdrop-filter: blur(6px);
}
.ob-mobile-nav__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(420px, 100%);
    height: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    background:
        radial-gradient(circle at top right, rgba(201,168,76,.12), transparent 24%),
        linear-gradient(180deg, #0b0f14 0%, #080b10 100%);
    border-left: 1px solid rgba(255,255,255,.08);
    box-shadow: -24px 0 64px rgba(0,0,0,.38);
    transform: translateX(100%);
    transition: transform .42s cubic-bezier(.22,1,.36,1);
    isolation: isolate;
}
.ob-mobile-nav.is-open .ob-mobile-nav__panel {
    transform: translateX(0);
}
@media (max-width: 767px) {
    .ob-mobile-nav__panel {
        width: 100%;
        border-left: 0;
        padding: 20px;
    }

    .ob-mobile-nav__links {
        gap: 12px;
    }

    .ob-mobile-nav__links a {
        min-height: 62px;
        font-size: 17px;
        background: rgba(255,255,255,.06);
    }
}
.ob-mobile-nav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.ob-mobile-nav__close {
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.03);
}
.ob-mobile-nav__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: #fff;
}
.ob-mobile-nav__close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.ob-mobile-nav__close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }
.ob-mobile-nav__links {
    display: grid;
    gap: 10px;
}
.ob-mobile-nav__links a {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.045);
    font-size: 18px;
}
.ob-mobile-nav__footer {
    margin-top: auto;
    display: grid;
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
}
.ob-mobile-nav__footer .ob-header__phone {
    font-size: 18px;
}
.ob-mobile-nav.is-open {
    pointer-events: auto;
}
.ob-mobile-nav.is-open .ob-mobile-nav__overlay {
    opacity: 1;
}
.ob-mobile-nav.is-open .ob-mobile-nav__panel {
    transform: translateX(0);
}
.ob-home h1,
.ob-home h2,
.ob-home h3 { margin: 0; font-family: 'Unbounded', sans-serif; letter-spacing: -.03em; }
.ob-home p { margin: 0; }
.ob-home--luxury .ob-section { padding: 120px 0; }
.ob-home--luxury .ob-hero-showcase {
    min-height: calc(100vh - var(--ob-header-h));
    background-size: cover;
    background-position: center right;
    overflow: hidden;
}
.ob-home--luxury .ob-hero-showcase::before,
.ob-home--luxury .ob-hero-showcase::after { display: none; }
.ob-hero-showcase__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(6,8,10,.97) 0%, rgba(6,8,10,.88) 28%, rgba(6,8,10,.56) 52%, rgba(6,8,10,.28) 100%),
        radial-gradient(circle at 78% 22%, rgba(201,168,76,.18), transparent 18%);
}
.ob-hero-showcase__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(320px, 600px) minmax(360px, 520px);
    gap: 56px;
    align-items: center;
    padding: 72px 0 82px;
}
.ob-hero-showcase__content { max-width: 600px; }
.ob-hero-showcase__eyebrow {
    margin: 0 0 16px;
    color: rgba(244,241,234,.52);
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: 12px;
}
.ob-hero-showcase__content h1 {
    margin: 0 0 22px;
    max-width: 560px;
    font-size: clamp(48px, 7vw, 75px);
    line-height: .88;
    color: #fff8ef;
    text-shadow: 0 12px 30px rgba(0,0,0,.28);
}
.ob-hero-showcase__text {
    max-width: 520px;
    margin: 0 0 32px;
    color: rgba(244,241,234,.76);
    font-size: 18px;
    line-height: 1.9;
}
.ob-hero-showcase__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}
.ob-hero-showcase__actions .ob-btn--ghost { background: rgba(255,255,255,.04); }
.ob-section { padding: 132px 0; position: relative; }
.ob-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: min(1240px, calc(100% - 40px));
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(201,168,76,.22), transparent);
    opacity: .7;
}
.ob-section-head {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 480px);
    gap: 40px;
    align-items: end;
    margin-bottom: 64px;
}
.ob-section-head--center {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
}
.ob-section-head h2,
.ob-section h2 { font-size: clamp(34px, 5vw, 62px); line-height: .96; }
.ob-section-head p { color: rgba(244, 241, 234, .68); line-height: 1.8; }

.ob-hero {
    min-height: calc(100vh - var(--ob-header-h));
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}
.ob-hero::before,
.ob-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    pointer-events: none;
}
.ob-hero::before {
    width: 420px;
    height: 420px;
    right: -80px;
    top: 14%;
    background: radial-gradient(circle, rgba(201,168,76,.18), transparent 68%);
}
.ob-hero::after {
    width: 260px;
    height: 260px;
    left: 4%;
    bottom: 5%;
    background: radial-gradient(circle, rgba(255,255,255,.08), transparent 72%);
}
.ob-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 20%, rgba(201,168,76,.22), transparent 20%),
        radial-gradient(circle at 20% 80%, rgba(255,255,255,.08), transparent 18%),
        linear-gradient(90deg, rgba(4,5,7,.92) 0%, rgba(4,5,7,.68) 46%, rgba(4,5,7,.36) 100%);
}
.ob-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 32px;
    align-items: center;
    padding: 80px 0 70px;
}
.ob-hero__content h1 {
    font-size: clamp(42px, 7vw, 92px);
    line-height: .95;
    margin-bottom: 24px;
    max-width: 850px;
    text-wrap: balance;
    text-shadow: 0 8px 30px rgba(0,0,0,.34);
}
.ob-hero__content p {
    max-width: 620px;
    color: rgba(244, 241, 234, .78);
    line-height: 1.85;
    font-size: 18px;
    margin-bottom: 30px;
}
.ob-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}
.ob-hero__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 760px;
}
.ob-hero__facts div,
.ob-hero__panel {
    border: 1px solid rgba(255,255,255,.07);
    background:
        linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015)),
        rgba(20, 24, 30, 0.72);
    backdrop-filter: blur(10px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04),
        0 30px 90px rgba(0,0,0,.28);
    border-radius: 24px;
    transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.ob-hero__facts div:hover {
    transform: translateY(-4px);
    border-color: rgba(201,168,76,.28);
}
.ob-hero__facts strong,
.ob-hero__facts span { display: block; }
.ob-hero__facts strong { margin-bottom: 8px; font-size: 16px; }
.ob-hero__facts span { color: var(--ob-gold); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
.ob-hero__panel {
    padding: 38px;
    border-radius: 24px;
    position: relative;
}
.ob-hero__panel::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(145deg, rgba(201,168,76,.26), rgba(255,255,255,.03), transparent 65%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.ob-hero__panel h2 { font-size: clamp(28px, 3vw, 42px); margin-bottom: 20px; }
.ob-hero__panel ul { margin: 0; padding-left: 0; color: var(--ob-muted); line-height: 1.9; display: grid; gap: 8px; }
.ob-hero__panel li {
    position: relative;
    padding-left: 24px;
}
.ob-hero__panel li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ob-gold), var(--ob-gold-strong));
    box-shadow: 0 0 18px rgba(201,168,76,.4);
}

.ob-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    width: min(1380px, calc(100% - 24px));
    margin: 0 auto;
}
.ob-gallery__item {
    min-height: 320px;
    overflow: hidden;
    position: relative;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,.06);
    box-shadow: 0 24px 70px rgba(0,0,0,.26);
}
.ob-gallery__item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.06), transparent 26%);
    z-index: 1;
    pointer-events: none;
}
.ob-gallery__item::after {
    z-index: 2;
    background: linear-gradient(180deg, rgba(0,0,0,0) 20%, rgba(0,0,0,.2) 52%, rgba(0,0,0,.68) 100%);
}
.ob-gallery__item:hover {
    border-color: rgba(201,168,76,.2);
}
.ob-gallery__item--tall { grid-row: span 2; min-height: 648px; }
.ob-gallery__item--wide { grid-column: span 2; }

.ob-prices { background: linear-gradient(180deg, #0f1216 0%, #131920 100%); }
.ob-prices__grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 48px;
    align-items: start;
}
.ob-prices__intro p { color: rgba(244, 241, 234, .68); line-height: 1.8; margin: 20px 0 28px; }
.ob-prices__list {
    border-top: 0;
    padding: 10px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015)),
        rgba(20, 24, 30, 0.72);
    border: 1px solid rgba(255,255,255,.07);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04),
        0 30px 90px rgba(0,0,0,.28);
}
.ob-price-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 26px 24px;
    border-radius: 18px;
    border: 1px solid transparent;
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.ob-price-row:hover {
    transform: translateX(6px);
    border-color: rgba(201,168,76,.22);
    background: rgba(255,255,255,.03);
}
.ob-price-row span { color: var(--ob-text); font-size: 17px; }
.ob-price-row strong { color: var(--ob-gold); white-space: nowrap; font-size: 18px; letter-spacing: .04em; }

.ob-reviews { background: linear-gradient(180deg, #11151a 0%, #0e1318 100%); }
.ob-reviews__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.ob-review-card {
    padding: 38px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015)),
        rgba(20, 24, 30, 0.72);
    border: 1px solid rgba(255,255,255,.07);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04),
        0 30px 90px rgba(0,0,0,.28);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.ob-review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201,168,76,.2);
    box-shadow: 0 36px 90px rgba(0,0,0,.32);
}
.ob-review-card__stars { color: var(--ob-gold); margin-bottom: 18px; letter-spacing: .18em; }
.ob-review-card p { color: rgba(244, 241, 234, .68); line-height: 1.9; margin-bottom: 20px; }
.ob-review-card strong {
    display: inline-block;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--ob-gold);
}
.ob-review-card::before {
    content: '“';
    position: absolute;
    top: 18px;
    right: 28px;
    font-family: Georgia, serif;
    font-size: 108px;
    line-height: 1;
    color: rgba(201,168,76,.12);
}

.ob-team { overflow: hidden; }
.ob-team__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.18) saturate(1.05);
    transform: scale(1.06);
}
.ob-team::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6,8,10,.82) 0%, rgba(6,8,10,.56) 48%, rgba(6,8,10,.84) 100%);
}
.ob-team__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 30px;
    align-items: center;
}
.ob-team-card,
.ob-team__aside,
.ob-location,
.ob-contact__form {
    border-radius: var(--ob-radius);
    background: var(--ob-card);
    border: 1px solid rgba(255,255,255,.07);
    box-shadow: var(--ob-shadow);
    backdrop-filter: blur(12px);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.ob-team-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    overflow: hidden;
    margin-top: 30px;
}
.ob-team-card__photo {
    min-height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.ob-team-card__photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.2) 100%);
}
.ob-team-card__body { padding: 30px; }
.ob-team-card__body h3 { font-size: 30px; margin-bottom: 14px; }
.ob-team-card__body p { color: var(--ob-muted); line-height: 1.8; }
.ob-team__aside { padding: 38px; }
.ob-team__aside p { color: rgba(244, 241, 234, .68); line-height: 1.85; margin: 16px 0 26px; }
.ob-team-card:hover,
.ob-team__aside:hover {
    transform: translateY(-6px);
    border-color: rgba(201,168,76,.22);
}

.ob-about__grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 40px;
    align-items: center;
}
.ob-about__content > p {
    color: rgba(244, 241, 234, .68);
    line-height: 1.9;
    max-width: 680px;
    margin: 20px 0 28px;
}
.ob-about__points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}
.ob-about__points div {
    padding: 28px;
    border-radius: 24px;
    border: 1px solid var(--ob-line);
    background: rgba(255,255,255,.02);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.ob-about__points div:hover {
    transform: translateY(-6px);
    border-color: rgba(201,168,76,.22);
}
.ob-about__points strong,
.ob-about__points span { display: block; }
.ob-about__points strong { margin-bottom: 10px; font-size: 18px; }
.ob-about__points span { color: rgba(244, 241, 234, .68); line-height: 1.75; }
.ob-location { overflow: hidden; }
.ob-location__photo {
    min-height: 320px;
    background-size: cover;
    background-position: center;
}
.ob-location__body { padding: 34px; display: grid; gap: 14px; }
.ob-location__body p,
.ob-location__body span { color: rgba(244, 241, 234, .68); }
.ob-location__body a { color: var(--ob-gold); text-decoration: none; }
.ob-location__body strong { font-size: 20px; }
.ob-location:hover {
    transform: translateY(-6px);
    border-color: rgba(201,168,76,.22);
}

.ob-contact { background: linear-gradient(180deg, #0f1216 0%, #101317 100%); }
.ob-contact__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 36px;
    align-items: start;
}
.ob-contact__grid p { color: rgba(244, 241, 234, .68); line-height: 1.85; }
.ob-contact__form { padding: 34px; }
.ob-contact__form .wpcf7 { width: 100%; }
.ob-contact__form .wpcf7-form { display: grid; gap: 14px; }
.ob-contact__form .wpcf7-form p { margin: 0; }
.ob-contact__form input[type="text"],
.ob-contact__form input[type="email"],
.ob-contact__form input[type="tel"],
.ob-contact__form textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,.07);
    background: rgba(255,255,255,.025);
    color: var(--ob-text);
    border-radius: 18px;
    min-height: 56px;
    padding: 16px 18px;
    font: inherit;
    transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.ob-contact__form textarea { min-height: 150px; resize: vertical; }
.ob-contact__form input[type="text"]:focus,
.ob-contact__form input[type="email"]:focus,
.ob-contact__form input[type="tel"]:focus,
.ob-contact__form textarea:focus {
    outline: none;
    border-color: rgba(201,168,76,.38);
    background: rgba(255,255,255,.04);
    box-shadow: 0 0 0 4px rgba(201,168,76,.08);
}
.ob-contact__form input[type="submit"] {
    appearance: none;
    border: 1px solid var(--ob-gold);
    background: linear-gradient(135deg, var(--ob-gold) 0%, var(--ob-gold-strong) 100%);
    color: #111;
    min-height: 54px;
    border-radius: 999px;
    padding: 0 24px;
    font: inherit;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
    box-shadow: 0 16px 32px rgba(201,168,76,.22);
}
.ob-contact__form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(201,168,76,.3);
}

.ob-footer {
    border-top: 1px solid rgba(255,255,255,.06);
    background:
        radial-gradient(circle at top right, rgba(201,168,76,.08), transparent 18%),
        #090b0e;
}
.ob-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 28px;
    padding: 70px 0 54px;
}
.ob-footer__brand {
    font-family: 'Unbounded', sans-serif;
    font-size: 28px;
    margin-bottom: 14px;
}
.ob-footer__text,
.ob-footer p,
.ob-footer span,
.ob-footer a { color: rgba(244, 241, 234, .68); text-decoration: none; line-height: 1.8; }
.ob-footer h3 { margin: 0 0 12px; font-size: 16px; color: var(--ob-text); text-transform: uppercase; letter-spacing: .12em; }
.ob-footer a:hover { color: var(--ob-gold); }
.ob-footer__bottom { border-top: 1px solid rgba(255,255,255,.06); }
.ob-footer__bottom-inner {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ob-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .8s ease, transform .8s ease;
}
.ob-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .ob-nav, .ob-header__phone { display: none; }
    .ob-burger { display: inline-block; }
    .ob-hero__grid,
    .ob-prices__grid,
    .ob-team__grid,
    .ob-about__grid,
    .ob-contact__grid,
    .ob-section-head,
    .ob-footer__grid { grid-template-columns: 1fr; }
    .ob-hero__facts,
    .ob-about__points,
    .ob-reviews__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
    .ob-container { width: min(var(--ob-container), calc(100% - 24px)); }
    .ob-section { padding: 84px 0; }
    .ob-header__inner { min-height: 74px; }
    .ob-header__actions .ob-btn { display: none; }
    .ob-hero__grid { padding: 54px 0; }
    .ob-hero__content h1 { font-size: clamp(34px, 11vw, 54px); }
    .ob-hero__facts,
    .ob-about__points,
    .ob-reviews__grid,
    .ob-gallery { grid-template-columns: 1fr; }
    .ob-gallery__item,
    .ob-gallery__item--tall,
    .ob-gallery__item--wide { grid-column: auto; grid-row: auto; min-height: 240px; }
    .ob-team-card { grid-template-columns: 1fr; }
    .ob-team-card__photo { min-height: 260px; }
    .ob-price-row,
    .ob-footer__bottom-inner { flex-direction: column; align-items: start; }
}
