:root {
    --cream: #f9f4ec;
    --cream-soft: #f3ebdc;
    --ivory: #fdfbf6;
    --warm-white: #faf7f1;
    --text: #2a2620;
    --text-muted: #7a6f64;
    --text-light: #a89e92;
    --primary: #b8876b;
    --primary-dark: #95684e;
    --primary-light: #d4ad8e;
    --accent: #c9a96e;
    --sage: #b8c5a8;
    --blush: #f0d7c8;
    --error: #d97a6c;
    --border: rgba(184, 135, 107, 0.15);
    --border-strong: rgba(184, 135, 107, 0.25);
    --shadow-sm: 0 2px 12px rgba(80, 50, 30, 0.06);
    --shadow-md: 0 16px 40px rgba(80, 50, 30, 0.08);
    --shadow-lg: 0 30px 80px rgba(80, 50, 30, 0.12);
    --shadow-xl: 0 40px 100px rgba(80, 50, 30, 0.18);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 36px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: 0.5s var(--ease);
    --transition-fast: 0.3s var(--ease);
    --transition-slow: 0.8s var(--ease);
    --serif: 'Cormorant Garamond', 'Times New Roman', serif;
    --sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--text);
    background: var(--cream);
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img,
svg {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4 {
    margin: 0;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    font-family: var(--serif);
}

p {
    margin: 0;
}

button {
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(36px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes kenburns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-1.5%, -1%); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.55); }
    50% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
}

@keyframes scrollDot {
    0% { transform: translateY(0); opacity: 1; }
    70% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) skewX(-20deg); }
    100% { transform: translateX(200%) skewX(-20deg); }
}

@keyframes optionAppear {
    from { opacity: 0; transform: translateX(-12px); }
    to { opacity: 1; transform: translateX(0); }
}

.anim-fade-up {
    opacity: 0;
    animation: fadeUp 1.1s var(--ease-out) forwards;
    animation-delay: var(--d, 0s);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out), filter 1.1s var(--ease-out);
    will-change: opacity, transform;
    filter: blur(4px);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.header.is-scrolled {
    background: rgba(249, 244, 236, 0.92);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    box-shadow: 0 2px 24px rgba(80, 50, 30, 0.06);
    padding: 12px 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 19px;
    letter-spacing: 0.06em;
    color: #fff;
    flex-shrink: 0;
    font-family: var(--sans);
    transition: color var(--transition-fast);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.logo__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 8px 24px rgba(184, 135, 107, 0.45);
    transition: transform 0.6s var(--ease-back);
    text-shadow: none;
}

.logo:hover .logo__mark {
    transform: rotate(-8deg) scale(1.05);
}

.logo__mark sup {
    font-size: 11px;
    margin-left: 1px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav__link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
    position: relative;
    padding: 4px 0;
    transition: color var(--transition-fast);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.nav__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.5s var(--ease);
}

.nav__link:hover {
    color: var(--accent);
}

.nav__link:hover::after {
    width: 100%;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    transition: color var(--transition-fast);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.header__phone:hover {
    color: var(--accent);
}

.header.is-scrolled .logo,
.header.is-scrolled .nav__link,
.header.is-scrolled .header__phone {
    color: var(--text);
    text-shadow: none;
}

.header.is-scrolled .nav__link:hover,
.header.is-scrolled .header__phone:hover {
    color: var(--primary);
}

.header.is-scrolled .nav__link::after {
    background: var(--primary);
}

.header.is-scrolled .burger span {
    background: var(--text);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease);
    white-space: nowrap;
    text-align: center;
    font-family: inherit;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s var(--ease);
    pointer-events: none;
    z-index: 1;
}

.btn:hover::before {
    left: 130%;
}

.btn > * {
    position: relative;
    z-index: 2;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 10px 28px rgba(184, 135, 107, 0.4);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(184, 135, 107, 0.5);
}

.btn--ivory {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.btn--ivory:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.btn--lg {
    padding: 18px 34px;
    font-size: 15px;
}

.header__btn {
    padding: 12px 22px;
    font-size: 13px;
}

.burger {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
}

.burger span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.5s var(--ease), opacity 0.5s var(--ease), background 0.4s var(--ease);
}

.burger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
    opacity: 0;
}

.burger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    padding: 140px 0 120px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenburns 22s ease-out infinite alternate;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(15, 10, 5, 0.85) 0%, rgba(15, 10, 5, 0.65) 35%, rgba(15, 10, 5, 0.35) 65%, rgba(15, 10, 5, 0.55) 100%),
        linear-gradient(180deg, rgba(15, 10, 5, 0.4) 0%, rgba(15, 10, 5, 0.05) 30%, rgba(15, 10, 5, 0.45) 80%, rgba(15, 10, 5, 0.85) 100%);
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.hero__content {
    max-width: 780px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #82d093;
    animation: pulse 2.5s infinite;
}

.hero__title {
    font-size: clamp(44px, 7vw, 88px);
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -0.015em;
    font-weight: 500;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.accent {
    color: var(--accent);
    font-style: italic;
    font-weight: 500;
}

.hero .accent {
    color: #f0d8a8;
}

.hero__text {
    max-width: 580px;
    margin-bottom: 40px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

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

.hero__cards {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    color: var(--text);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    min-width: 200px;
    animation: float 7s ease-in-out infinite;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.hero__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.hero__card:nth-child(2) {
    animation-delay: 1.5s;
}

.hero__card strong {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    font-family: var(--sans);
}

.hero__card span {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero__card--rating .rating__stars {
    display: flex;
    gap: 3px;
    color: var(--accent);
    margin-bottom: 8px;
}

.hero__card--rating .rating__stars svg {
    width: 16px;
    height: 16px;
}

.hero__card--deals {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero__card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero__scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 46px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 14px;
    z-index: 2;
    display: block;
}

.hero__scroll span {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 2px;
    animation: scrollDot 2s ease-out infinite;
}

/* ---------- Stats bar ---------- */
.stats {
    background: var(--ivory);
    padding: 64px 0;
    position: relative;
    border-bottom: 1px solid var(--border);
}

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

.stat {
    text-align: center;
    position: relative;
}

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: var(--border);
}

.stat__value {
    display: block;
    font-family: var(--serif);
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 6px;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat__label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
}

/* ---------- Sections ---------- */
.section {
    padding: 120px 0;
    position: relative;
}

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

.section__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 72px;
}

.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--primary);
    margin-bottom: 18px;
}

.section__title {
    font-size: clamp(34px, 4.5vw, 56px);
    margin-bottom: 18px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.section__subtitle {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---------- Services ---------- */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service {
    padding: 40px 36px;
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), border-color 0.6s var(--ease);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.service--featured {
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 30px 60px rgba(184, 135, 107, 0.35);
}

.service--featured .service__title,
.service--featured p {
    color: #fff;
    opacity: 1;
}

.service__desc-sell {
    color: #ffffff !important;
    opacity: 1 !important;
}

.service--featured .service__icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.service--featured .service__price {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.service--featured .service__link {
    color: #fff;
}

.service--featured .service__meta {
    border-color: rgba(255, 255, 255, 0.25);
}

.service__tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(201, 169, 110, 0.5);
}

.service__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--cream-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: transform 0.6s var(--ease-back), background 0.5s var(--ease);
}

.service:hover .service__icon {
    transform: scale(1.12) rotate(-8deg);
}

.service__icon svg {
    width: 30px;
    height: 30px;
}

.service__title {
    font-size: 26px;
    margin-bottom: 14px;
    font-weight: 500;
}

.service p {
    color: var(--text-muted);
    font-size: 15px;
    flex-grow: 1;
    line-height: 1.65;
}

.service__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border-strong);
}

.service__price {
    display: inline-block;
    padding: 6px 14px;
    background: var(--cream-soft);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.service__link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    transition: transform var(--transition-fast);
}

.service__link:hover {
    transform: translateX(4px);
}

/* ---------- Process ---------- */
.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process__step {
    padding: 36px 30px;
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), border-color 0.6s var(--ease);
    position: relative;
}

.process__step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.process__num {
    display: inline-block;
    font-family: var(--serif);
    font-size: 48px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 18px;
    line-height: 1;
    letter-spacing: -0.02em;
}

.process__step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 500;
}

.process__step p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
}

/* ---------- About ---------- */
.about__inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__lead {
    font-size: 18px;
    color: var(--text-muted);
    margin: 24px 0 36px;
    line-height: 1.7;
}

.about__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about__list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform var(--transition);
}

.about__list li:hover {
    transform: translateX(4px);
}

.about__list svg {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
    width: 24px;
    height: 24px;
    padding: 4px;
    background: var(--cream-soft);
    border-radius: 50%;
}

.about__list strong {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    font-family: var(--sans);
}

.about__list span {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.about__visual {
    position: relative;
    padding: 48px;
    background: linear-gradient(160deg, var(--blush) 0%, var(--cream-soft) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.about__visual::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(184, 135, 107, 0.12);
    border-radius: 50%;
    filter: blur(40px);
    animation: float 8s ease-in-out infinite;
}

.about__years {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 32px;
    position: relative;
}

.about__years-num {
    font-family: var(--serif);
    font-size: clamp(80px, 12vw, 140px);
    font-weight: 500;
    line-height: 0.9;
    color: var(--primary);
    letter-spacing: -0.04em;
}

.about__years-text {
    font-size: 16px;
    color: var(--text);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.4;
}

.about__quote {
    position: relative;
    font-family: var(--serif);
    font-size: 22px;
    font-style: italic;
    color: var(--text);
    line-height: 1.5;
    padding-left: 24px;
    border-left: 2px solid var(--primary);
}

/* ---------- Feedback ---------- */
.feedback__wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: start;
}

.feedback__text {
    font-size: 17px;
    color: var(--text-muted);
    margin: 18px 0 32px;
    line-height: 1.7;
}

.feedback__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.feedback__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
    transition: transform var(--transition);
}

.feedback__list li:hover {
    transform: translateX(4px);
}

.feedback__list svg {
    color: var(--primary);
    flex-shrink: 0;
    padding: 4px;
    background: var(--cream-soft);
    border-radius: 50%;
}

.feedback__contact {
    padding-top: 28px;
    border-top: 1px solid var(--border-strong);
}

.feedback__phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    color: var(--primary);
    transition: color var(--transition-fast), transform var(--transition);
}

.feedback__phone:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

.feedback__phone svg {
    padding: 10px;
    background: var(--cream-soft);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: transform 0.5s var(--ease-back), background 0.4s var(--ease);
}

.feedback__phone:hover svg {
    transform: rotate(-12deg) scale(1.05);
    background: var(--blush);
}

.feedback__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form__label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.form__input {
    width: 100%;
    padding: 16px 18px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
    background: var(--warm-white);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.form__input::placeholder {
    color: var(--text-light);
}

.form__input:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(184, 135, 107, 0.12);
}

.form__textarea {
    resize: vertical;
    min-height: 90px;
    font-family: inherit;
}

.form__check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    cursor: pointer;
    margin-top: 4px;
}

.form__check input {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.form__check a {
    color: var(--primary);
    text-decoration: underline;
}

.form__submit {
    margin-top: 6px;
    width: 100%;
}

.form__success {
    display: none;
    padding: 14px 18px;
    background: rgba(130, 208, 147, 0.15);
    border: 1px solid rgba(130, 208, 147, 0.4);
    border-radius: var(--radius-sm);
    color: #3a7d4a;
    font-size: 14px;
    font-weight: 500;
}

.form__success.is-visible {
    display: block;
    animation: fadeUp 0.6s var(--ease-out) forwards;
}

/* ---------- Custom select ---------- */
.select {
    position: relative;
    width: 100%;
}

.select__btn {
    width: 100%;
    padding: 16px 18px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
    background: var(--warm-white);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    text-align: left;
}

.select__btn:hover {
    background: #fff;
    border-color: var(--primary-light);
}

.select.is-open .select__btn {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(184, 135, 107, 0.12);
}

.select.is-invalid .select__btn {
    border-color: var(--error);
    box-shadow: 0 0 0 4px rgba(217, 122, 108, 0.12);
}

.select__value {
    color: var(--text-light);
    transition: color var(--transition-fast);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select__value.has-value {
    color: var(--text);
    font-weight: 500;
}

.select__chevron {
    color: var(--text-muted);
    transition: transform 0.5s var(--ease), color var(--transition-fast);
    flex-shrink: 0;
}

.select.is-open .select__chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.select__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    box-shadow: 0 24px 60px rgba(80, 50, 30, 0.18);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(0.98);
    transform-origin: top center;
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
    z-index: 20;
}

.select.is-open .select__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.select__options {
    padding: 8px;
    max-height: 320px;
    overflow-y: auto;
}

.select__option {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 15px;
    color: var(--text);
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast), padding var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.select__option:hover {
    background: var(--cream-soft);
    color: var(--primary);
    padding-left: 18px;
}

.select__option.is-selected {
    background: linear-gradient(90deg, rgba(184, 135, 107, 0.12), rgba(184, 135, 107, 0.04));
    color: var(--primary);
    font-weight: 600;
}

.select__check {
    color: var(--primary);
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.3s var(--ease), transform 0.5s var(--ease-back);
    flex-shrink: 0;
}

.select__option.is-selected .select__check {
    opacity: 1;
    transform: scale(1);
}

.select.is-open .select__option {
    opacity: 0;
    animation: optionAppear 0.5s var(--ease-out) forwards;
}

.select.is-open .select__option:nth-child(1) { animation-delay: 0.05s; }
.select.is-open .select__option:nth-child(2) { animation-delay: 0.09s; }
.select.is-open .select__option:nth-child(3) { animation-delay: 0.13s; }
.select.is-open .select__option:nth-child(4) { animation-delay: 0.17s; }
.select.is-open .select__option:nth-child(5) { animation-delay: 0.21s; }
.select.is-open .select__option:nth-child(6) { animation-delay: 0.25s; }
.select.is-open .select__option:nth-child(7) { animation-delay: 0.29s; }

/* ---------- Contacts ---------- */
.contacts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 820px;
    margin: 0 auto;
}

.contact-card {
    padding: 44px 36px;
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), border-color 0.6s var(--ease);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.contact-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    margin: 0 auto 24px;
    background: var(--cream-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s var(--ease-back), background 0.5s var(--ease);
}

.contact-card:hover .contact-card__icon {
    transform: scale(1.1) rotate(-8deg);
    background: var(--blush);
}

.contact-card__icon svg {
    width: 28px;
    height: 28px;
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    font-weight: 500;
}

.contact-card__link {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
    font-family: var(--sans);
}

.contact-card__link:hover {
    color: var(--primary-dark);
}

.contact-card__hint {
    font-size: 14px;
    color: var(--text-muted);
}

.contact-card__address {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---------- Footer ---------- */
.footer {
    background: #1f1812;
    color: rgba(255, 255, 255, 0.75);
    padding: 80px 0 0;
}

.footer .logo {
    color: #fff;
    text-shadow: none;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
    gap: 48px;
    padding-bottom: 56px;
}

.footer__desc {
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    max-width: 320px;
    line-height: 1.7;
}

.footer__title {
    font-size: 16px;
    margin-bottom: 22px;
    color: #fff;
    font-family: var(--sans);
    font-weight: 600;
}

.footer__list li {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.6;
    transition: transform var(--transition-fast);
}

.footer__list a {
    transition: color var(--transition-fast);
}

.footer__list a:hover {
    color: var(--accent);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 0;
}

.footer__bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    text-align: center;
}

/* ---------- Responsive: tablet (≤ 992px) ---------- */
@media (max-width: 992px) {
    .nav {
        display: none;
    }

    .header__phone {
        display: none;
    }

    .hero {
        padding: 120px 0 110px;
        min-height: 90vh;
    }

    .hero__title {
        font-size: clamp(40px, 8vw, 64px);
    }

    .hero__cards {
        flex-direction: row;
    }

    .hero__card {
        flex: 1;
        min-width: 180px;
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }

    .stat:nth-child(2)::after {
        display: none;
    }

    .section {
        padding: 80px 0;
    }

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

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

    .about__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .feedback__wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

/* ---------- Responsive: mobile (≤ 720px) ---------- */
@media (max-width: 720px) {
    .container {
        padding: 0 18px;
    }

    .header {
        padding: 14px 0;
    }

    .header__btn {
        display: none;
    }

    .header__actions {
        display: none;
    }

    .burger {
        display: flex;
    }

    .nav {
        display: flex;
        position: absolute;
        top: calc(100% + 8px);
        left: 16px;
        right: 16px;
        flex-direction: column;
        gap: 0;
        padding: 16px;
        background: var(--ivory);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    }

    .nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav__link {
        display: block;
        padding: 12px 16px;
        font-size: 15px;
        border-radius: 12px;
        color: var(--text);
        text-shadow: none;
    }

    .nav__link:hover {
        background: var(--cream-soft);
        color: var(--primary);
    }

    .nav__link::after {
        display: none;
    }

    .logo__text {
        font-size: 17px;
    }

    .logo__mark {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .hero {
        min-height: 85vh;
        padding: 100px 0 40px;
    }

    .hero__inner {
        gap: 36px;
        margin: auto 0;
    }

    .hero__title {
        font-size: 42px;
    }

    .hero__text {
        font-size: 16px;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .hero__cards {
        flex-direction: column;
        gap: 12px;
    }

    .hero__card {
        width: 100%;
        padding: 16px 20px;
    }

    .hero__scroll {
        display: none;
    }

    .stats {
        padding: 48px 0;
    }

    .stats__grid {
        gap: 32px 18px;
    }

    .stat::after {
        display: none;
    }

    .section {
        padding: 64px 0;
    }

    .section__head {
        margin-bottom: 48px;
    }

    .services,
    .process {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contacts {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 480px;
    }

    .service,
    .contact-card,
    .process__step {
        padding: 32px 26px;
        border-radius: var(--radius-md);
    }

    .about__visual {
        padding: 36px 28px;
        border-radius: var(--radius-lg);
    }

    .about__quote {
        font-size: 19px;
    }

    .feedback__wrap {
        gap: 32px;
    }

    .feedback__form {
        padding: 28px 24px;
        border-radius: var(--radius-md);
    }

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

    .feedback__phone {
        font-size: 24px;
    }

    .footer {
        padding-top: 56px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 36px;
    }
}

@media (max-width: 380px) {
    .hero__title {
        font-size: 36px;
    }

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero__bg img {
        animation: none;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
        filter: none;
    }
}
