/* ============================================
   DESIGN TOKENS — Тёплый след
   Palette from brandbook, layout from references
   ============================================ */
:root {
    --blue: #2C5F7C;
    --blue-dark: #1E4A63;
    --blue-deeper: #163A4F;
    --sage: #6B8E7B;
    --sage-light: rgba(107, 142, 123, 0.15);
    --ochre: #C4956A;
    --ochre-light: rgba(196, 149, 106, 0.12);
    --ivory: #F5F0EB;
    --ivory-dark: #EDE5DC;
    --graphite: #4A4A4A;
    --graphite-light: #7A7A7A;
    --white: #FDFAF7;

    --font-logo: 'Noto Serif', Georgia, serif;
    --font-heading: 'Golos Text', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', 'Golos Text', system-ui, sans-serif;
    --font-accent: 'Inter', system-ui, sans-serif;

    --border: 2px solid var(--blue);
    --border-light: 1px solid rgba(44, 95, 124, 0.15);
}

/* ============================================
   RESET
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--graphite);
    background: var(--ivory);
    overflow-x: hidden;
    max-width: 100%;
}

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

::selection {
    background: var(--ochre);
    color: var(--white);
}

/* Offset for fixed header on anchor navigation */
[id] {
    scroll-margin-top: 80px;
}

#hero {
    scroll-margin-top: 0;
}

@media (max-width: 600px) {
    [id] {
        scroll-margin-top: 60px;
    }
    #hero {
        scroll-margin-top: 0;
    }
}

@media (max-width: 480px) {
    [id] {
        scroll-margin-top: 50px;
    }
}

/* ============================================
   HEADER — Editorial style, tight grid
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--ivory);
    border-bottom: var(--border);
    transition: all 0.3s ease;
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.header-left {
    display: flex;
    align-items: center;
    border-right: var(--border);
    padding: 16px 24px;
    gap: 14px;
}

.logo-mark {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-mark svg {
    width: 100%;
    height: 100%;
}

.logo-name {
    font-family: var(--font-logo);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--blue-dark);
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.logo-sub {
    font-family: var(--font-accent);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--graphite-light);
    margin-top: 2px;
}

.header-center {
    display: flex;
    border-right: var(--border);
}

.header-center a {
    font-family: var(--font-accent);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 20px 20px;
    color: var(--graphite);
    transition: all 0.3s ease;
    border-right: var(--border-light);
    position: relative;
}

.header-center a:last-child {
    border-right: none;
}

.header-center a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--ochre-light);
    transition: height 0.3s ease;
    z-index: -1;
}

.header-center a:hover {
    color: var(--blue-dark);
}

.header-center a:hover::after {
    height: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 16px 24px;
    gap: 16px;
}

.header-status {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sage);
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.header-phone {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--blue);
    padding: 10px 20px;
    border: var(--border);
    transition: all 0.3s ease;
}

.header-phone:hover {
    background: var(--blue);
    color: var(--ivory);
}

/* ============================================
   HERO — Editorial / Magazine layout
   Giant typography, asymmetric grid, decorative elements
   ============================================ */
.hero {
    min-height: 100vh;
    padding-top: 62px;
    /* header height */
    display: flex;
    flex-direction: column;
    border-bottom: var(--border);
}

.hero-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Left column — text heavy */
.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: var(--border);
    position: relative;
}

.hero-tagline {
    padding: 24px;
    border-bottom: var(--border-light);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tagline-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-tagline-text {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--graphite-light);
}

.hero-tagline .deco-star {
    color: var(--ochre);
    font-size: 1.2rem;
}

.tagline-info-row {
    display: none;
    align-items: center;
    gap: 8px;
}

.tagline-info {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--blue-dark);
    padding: 5px 12px;
    border: 1px solid rgba(44, 95, 124, 0.2);
    letter-spacing: 0.02em;
}

.tagline-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--graphite-light);
}

.hero-headline {
    padding: 32px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 0.95;
    color: var(--blue-dark);
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.hero-title .line {
    display: block;
}

.hero-title .accent {
    color: var(--ochre);
    font-style: italic;
    font-weight: 700;
}

/* Decorative arrow — like in reference */
.hero-deco-arrow {
    width: 60px;
    height: 60px;
    margin-top: 24px;
    color: var(--blue);
    opacity: 0.4;
}

.hero-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: var(--border);
}

.hero-desc {
    padding: 24px;
    border-right: var(--border);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--graphite);
}

.hero-cta-block {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.btn-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: var(--border);
    background: var(--blue);
    color: var(--ivory);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: var(--blue-deeper);
    letter-spacing: 0.02em;
}

.btn-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-cta:hover svg {
    transform: translateX(4px);
}

.cta-messengers {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.btn-messenger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 12px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.78rem;
    cursor: pointer;
    border: var(--border);
    background: transparent;
    color: var(--blue);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-messenger svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-messenger:hover {
    transform: translateY(-2px);
}

.btn-messenger.wa:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

.btn-messenger.tg:hover {
    background: #2AABEE;
    border-color: #2AABEE;
    color: #fff;
}

.btn-messenger.max:hover {
    background: #5B21B6;
    border-color: #5B21B6;
    color: #fff;
}

/* Right column — image + decorative elements */
.hero-right {
    display: flex;
    flex-direction: column;
    position: relative;
}

.hero-info-strip {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: var(--border);
}

.info-cell {
    padding: 16px 20px;
    border-right: var(--border-light);
    text-align: center;
}

.info-cell:last-child {
    border-right: none;
}

.info-cell-label {
    font-family: var(--font-accent);
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--graphite-light);
    margin-bottom: 4px;
}

.info-cell-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--blue-dark);
}

.hero-image-area {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(160deg,
            var(--ivory-dark) 0%,
            rgba(44, 95, 124, 0.08) 100%);
}

/* Color to B&W effect on hover */
.hero-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.6s ease, transform 0.6s ease;
}

.hero-image-area:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* Placeholder when no image */
.hero-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: filter 0.6s ease;
}

.hero-image-area:hover .hero-image-placeholder {
    filter: grayscale(100%);
}

.hero-paw-icon {
    width: 140px;
    height: 140px;
    opacity: 0.12;
}

.hero-image-label {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--graphite-light);
    opacity: 0.5;
}

/* Corner decorative elements — inspired by Geisel reference */
.deco-corner {
    position: absolute;
    font-family: var(--font-accent);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--graphite-light);
    opacity: 0.5;
}

.deco-corner.top-right {
    top: 16px;
    right: 16px;
}

.deco-corner.bottom-left {
    bottom: 16px;
    left: 16px;
}

/* Trust strip at very bottom of hero */
.hero-trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: var(--border);
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.trust-cell {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: var(--border-light);
    transition: background 0.3s ease;
}

.trust-cell:last-child {
    border-right: none;
}

.trust-cell:hover {
    background: var(--ochre-light);
}

.trust-cell svg {
    width: 22px;
    height: 22px;
    color: var(--sage);
    flex-shrink: 0;
}

.trust-cell-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--graphite);
    line-height: 1.3;
}

.trust-cell-sub {
    font-family: var(--font-accent);
    font-size: 0.6rem;
    color: var(--graphite-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Decorative elements — sparkle, arrows */
.deco-sparkle {
    display: inline-block;
    color: var(--ochre);
    font-size: 1.6rem;
    line-height: 1;
}

/* ============================================
   SECTION HEADER — Reusable across sections
   ============================================ */
/* Full-width section divider */
.section-divider {
    border: none;
    border-bottom: var(--border);
    margin: 0;
}

.services {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px 24px;
    min-height: calc(100vh - 62px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--blue-dark);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--graphite-light);
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.section-subtitle .deco-star {
    color: var(--ochre);
    font-size: 0.7rem;
}

/* ============================================
   CALCULATOR — Compact single-viewport
   ============================================ */
.calc-section {
    margin-bottom: 16px;
}

.calc-section-label {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: var(--graphite-light);
    margin-bottom: 8px;
}

/* Pet cards — photo backgrounds with grayscale effect */
.pet-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
}

.pet-card {
    border: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 6px;
    text-align: center;
}

.pet-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.5s ease;
    z-index: 0;
}

.pet-card:hover .pet-card-bg {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.pet-card.selected .pet-card-bg {
    filter: grayscale(0%);
}

/* Overlay gradient for text readability */
.pet-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(30, 74, 99, 0.85) 0%, transparent 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.pet-card.selected::before {
    height: 100%;
    background: linear-gradient(to top, rgba(196, 149, 106, 0.85) 0%, rgba(196, 149, 106, 0.4) 100%);
}

/* Selected indicator */
.pet-card.selected::after {
    content: '\2713';
    position: absolute;
    top: 6px;
    right: 6px;
    width: 20px;
    height: 20px;
    background: var(--ochre);
    border-radius: 50%;
    color: #fff;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.pet-label {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--ivory);
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.pet-weight {
    font-family: var(--font-accent);
    font-size: 0.6rem;
    color: rgba(245, 240, 235, 0.7);
    letter-spacing: 0.03em;
    position: relative;
    z-index: 2;
    margin-top: 2px;
}

/* Bottom half: Type + Extras + Total in a grid */
.calc-bottom {
    display: grid;
    grid-template-columns: 3fr 7fr;
    gap: 0;
    border: var(--border);
    margin-top: 0;
}

/* Type selection — compact left column */
.type-col {
    border-right: var(--border);
    display: flex;
    flex-direction: column;
}

.type-card {
    padding: 14px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.type-card:first-child {
    border-bottom: var(--border-light);
}

.type-card:hover {
    background: rgba(196, 149, 106, 0.06);
}

.type-card.selected {
    background: rgba(44, 95, 124, 0.06);
}

.type-radio-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(44, 95, 124, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.type-radio-circle::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    transform: scale(0);
    transition: transform 0.25s ease;
}

.type-card.selected .type-radio-circle {
    border-color: var(--blue);
}

.type-card.selected .type-radio-circle::after {
    transform: scale(1);
}

.type-card-info {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.type-card-name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue-dark);
}

.type-card-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ochre);
    line-height: 1;
    min-width: 72px;
}

.type-card-price span {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--graphite-light);
}

.type-card-hint {
    font-family: var(--font-body);
    font-size: 0.68rem;
    color: var(--graphite-light);
    margin-left: auto;
}

/* Right column: extras + total */
.calc-right-col {
    display: contents;
}

.extras-section {
    grid-column: 2;
}

/* Extras — compact grid */
.extras-section {
    padding: 12px 16px;
    border-bottom: var(--border-light);
    flex: 1;
}

.extras-section .calc-section-label {
    margin-bottom: 6px;
    font-size: 0.6rem;
}

.extras-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.extra-item {
    border: 1px solid rgba(44, 95, 124, 0.15);
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--graphite);
}

.extra-item:hover {
    border-color: var(--ochre);
    background: var(--ochre-light);
}

.extra-item.checked {
    border-color: var(--blue);
    background: rgba(44, 95, 124, 0.06);
}

.extra-checkbox {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(44, 95, 124, 0.25);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.extra-checkbox svg {
    width: 10px;
    height: 10px;
    color: var(--white);
    opacity: 0;
    transform: scale(0);
    transition: all 0.25s ease;
}

.extra-item.checked .extra-checkbox {
    background: var(--blue);
    border-color: var(--blue);
}

.extra-item.checked .extra-checkbox svg {
    opacity: 1;
    transform: scale(1);
}

.extra-name {
    font-weight: 600;
    color: var(--blue-dark);
    font-size: 0.75rem;
}

.extra-price {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ochre);
    white-space: nowrap;
    margin-left: 2px;
}

/* Eye icon for preview */
.extra-eye {
    width: 16px;
    height: 16px;
    color: var(--graphite-light);
    opacity: 0.3;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
}

.extra-eye:hover {
    opacity: 1;
    color: var(--blue);
    transform: scale(1.15);
}

.extra-item.checked .extra-eye {
    opacity: 0.5;
}

/* Extra preview panel */
.extra-preview {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.3s ease,
                margin 0.3s ease;
    margin-top: 0;
}

.extra-preview.open {
    max-height: 280px;
    opacity: 1;
    margin-top: 10px;
}

.extra-preview-inner {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: var(--border-light);
    background: var(--white);
    padding: 14px;
    position: relative;
    animation: previewFadeIn 0.35s ease;
}

@keyframes previewFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.extra-preview-img {
    width: 160px;
    height: 160px;
    flex-shrink: 0;
    overflow: hidden;
    border: var(--border-light);
}

.extra-preview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.5s ease;
}

.extra-preview-text {
    flex: 1;
    min-width: 0;
}

.extra-preview-name {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 6px;
}

.extra-preview-desc {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--graphite);
    line-height: 1.6;
    margin-bottom: 10px;
}

.extra-preview-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ochre);
}

.extra-preview-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border: var(--border-light);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--graphite-light);
    transition: all 0.25s ease;
    padding: 0;
}

.extra-preview-close:hover {
    color: var(--blue-dark);
    border-color: var(--blue);
}

.extra-preview-close svg {
    width: 14px;
    height: 14px;
}

/* Total bar — compact */
.calc-total-bar {
    grid-column: 1 / -1;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(44, 95, 124, 0.03);
    border-top: var(--border);
    transition: all 0.3s ease;
}

.calc-total-bar.inactive {
    opacity: 0.35;
    pointer-events: none;
}

.calc-total-left {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.calc-total-label {
    font-family: var(--font-accent);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--graphite-light);
}

.calc-total-amount {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-dark);
    line-height: 1;
}

.calc-total-amount span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--graphite-light);
}

.calc-total-breakdown {
    font-family: var(--font-body);
    font-size: 0.68rem;
    color: var(--graphite-light);
}

.calc-total-actions {
    display: flex;
    gap: 6px;
    align-items: center;
}

.btn-calc-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    border: var(--border);
    background: var(--blue);
    color: var(--ivory);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-calc-cta:hover {
    background: var(--blue-deeper);
}

.btn-calc-cta svg {
    width: 16px;
    height: 16px;
}

.btn-calc-msg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: var(--border);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--blue);
}

.btn-calc-msg svg {
    width: 16px;
    height: 16px;
}

.btn-calc-msg.wa:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

.btn-calc-msg.tg:hover {
    background: #2AABEE;
    border-color: #2AABEE;
    color: #fff;
}

.btn-calc-msg.max-btn:hover {
    background: #5B21B6;
    border-color: #5B21B6;
    color: #fff;
}

/* Full price table */
.full-price-toggle {
    text-align: center;
    margin-top: 10px;
}

.full-price-toggle button {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--graphite-light);
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 12px;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.full-price-toggle button:hover {
    color: var(--blue);
}

.full-price-toggle button svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.full-price-toggle button.open svg {
    transform: rotate(180deg);
}

.full-price-table-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.full-price-table-wrap.open {
    max-height: 600px;
}

.full-price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    border: var(--border);
    table-layout: fixed;
}

.full-price-table th {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--graphite-light);
    padding: 10px 12px;
    text-align: left;
    border-bottom: var(--border);
    background: rgba(44, 95, 124, 0.03);
}

.full-price-table td {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--graphite);
    padding: 8px 12px;
    border-bottom: var(--border-light);
}

.full-price-table tr:last-child td {
    border-bottom: none;
}

.full-price-table td:not(:first-child) {
    font-weight: 600;
    color: var(--blue-dark);
    text-align: center;
}

.full-price-table th:not(:first-child) {
    text-align: center;
}

.services-note {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--graphite-light);
    margin-top: 10px;
    font-style: italic;
}

/* ============================================
   ENTRANCE ANIMATIONS
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.fade-up-d1 {
    animation-delay: 0.1s;
}

.fade-up-d2 {
    animation-delay: 0.25s;
}

.fade-up-d3 {
    animation-delay: 0.4s;
}

.fade-up-d4 {
    animation-delay: 0.55s;
}

.fade-up-d5 {
    animation-delay: 0.7s;
}

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

/* ============================================
   RESPONSIVE — Main sections
   ============================================ */
@media (max-width: 1024px) {
    .header-center {
        display: none;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

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

    .hero-left {
        border-right: none;
        border-bottom: none;
    }

    .hero-right {
        display: none;
    }

    .tagline-info-row {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .hero-trust-strip {
        grid-template-columns: 1fr 1fr;
    }

    .trust-cell:nth-child(2) {
        border-right: none;
    }

    .pet-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pet-card {
        aspect-ratio: 1.2;
    }

    .calc-bottom {
        grid-template-columns: 1fr;
    }

    .type-col {
        border-right: none;
        border-bottom: var(--border-light);
        flex-direction: row;
    }

    .type-card:first-child {
        border-bottom: none;
        border-right: var(--border-light);
    }
}

@media (max-width: 600px) {
    .header-left {
        padding: 12px 16px;
        gap: 10px;
    }

    .logo-mark {
        width: 28px;
        height: 28px;
    }

    .logo-name {
        font-size: 1.05rem;
    }

    .logo-sub {
        font-size: 0.5rem;
    }

    .header-right {
        padding: 12px 16px;
    }

    .header-status {
        display: none;
    }

    .header-phone {
        font-size: 0.78rem;
        padding: 8px 12px;
        white-space: nowrap;
    }

    .hero {
        min-height: auto;
        padding-top: 56px;
    }

    .hero-headline {
        padding: 24px 16px;
    }

    .hero-tagline {
        padding: 16px;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-deco-arrow {
        display: none;
    }

    .hero-bottom-row {
        grid-template-columns: 1fr;
    }

    .hero-desc {
        border-right: none;
        border-bottom: var(--border);
    }

    .cta-messengers {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .hero-trust-strip {
        grid-template-columns: 1fr 1fr;
    }

    .trust-cell:nth-child(2) {
        border-right: none;
    }

    .trust-cell {
        border-right: none;
        border-bottom: var(--border-light);
    }

    .services {
        padding: 20px 10px 12px;
        min-height: auto;
    }

    .section-header {
        margin-bottom: 12px;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .section-subtitle {
        font-size: 0.75rem;
    }

    .calc-section {
        margin-bottom: 10px;
    }

    .calc-section-label {
        font-size: 0.58rem;
        margin-bottom: 6px;
    }

    .pet-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }

    .pet-card {
        aspect-ratio: 0.9;
        padding: 6px 4px;
    }

    .pet-label {
        font-size: 0.6rem;
    }

    .pet-weight {
        font-size: 0.5rem;
    }

    /* Mobile: vertical stack, no grid */
    .calc-bottom {
        display: flex;
        flex-direction: column;
        border: var(--border);
    }

    .type-col {
        border-right: none;
        border-bottom: var(--border-light);
        flex-direction: row;
    }

    .type-card {
        flex: 1;
        padding: 10px 12px;
        gap: 8px;
        flex-wrap: wrap;
    }

    .type-card:first-child {
        border-bottom: none;
        border-right: var(--border-light);
    }

    .type-radio-circle {
        width: 16px;
        height: 16px;
    }

    .type-radio-circle::after {
        width: 7px;
        height: 7px;
    }

    .type-card-name {
        font-size: 0.72rem;
    }

    .type-card-price {
        font-size: 0.85rem;
        min-width: auto;
    }

    .type-card-price span {
        font-size: 0.6rem;
    }

    .type-card-hint {
        display: none;
    }

    .type-card-info {
        gap: 6px;
    }

    /* Revert display:contents for mobile */
    .calc-right-col {
        display: flex;
        flex-direction: column;
    }

    .extras-section {
        grid-column: auto;
        padding: 10px;
        border-bottom: var(--border-light);
    }

    .extras-section .calc-section-label {
        font-size: 0.55rem;
        margin-bottom: 5px;
    }

    .extras-grid {
        flex-wrap: wrap;
        gap: 4px;
    }

    .extra-item {
        padding: 5px 8px;
        font-size: 0.62rem;
        gap: 5px;
    }

    .extra-checkbox {
        width: 14px;
        height: 14px;
    }

    .extra-checkbox svg {
        width: 8px;
        height: 8px;
    }

    .extra-name {
        font-size: 0.62rem;
    }

    .extra-price {
        font-size: 0.62rem;
    }

    .extra-eye {
        width: 14px;
        height: 14px;
    }

    .extra-preview.open {
        max-height: 400px;
    }

    .extra-preview-inner {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
    }

    .extra-preview-img {
        width: 100%;
        height: 160px;
    }

    .extra-preview-name {
        font-size: 0.82rem;
    }

    .extra-preview-desc {
        font-size: 0.72rem;
    }

    .extra-preview-price {
        font-size: 0.95rem;
    }

    /* Total bar: full width, stacked */
    .calc-total-bar {
        grid-column: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 10px;
        border-top: var(--border-light);
    }

    .calc-total-left {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .calc-total-amount {
        font-size: 1.2rem;
    }

    .calc-total-amount span {
        font-size: 0.7rem;
    }

    .calc-total-breakdown {
        font-size: 0.6rem;
        width: 100%;
    }

    /* CTA full-width, 3 messengers in a row */
    .calc-total-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .calc-total-actions .btn-calc-cta {
        width: 100%;
        flex: none;
        justify-content: center;
        padding: 10px 12px;
        font-size: 0.78rem;
    }

    .calc-total-actions .btn-messenger {
        flex: 1;
        font-size: 0.7rem;
        padding: 8px 10px;
    }

    .calc-total-actions .btn-messenger svg {
        width: 14px;
        height: 14px;
    }

    .full-price-toggle {
        margin-top: 6px;
    }

    .full-price-table th,
    .full-price-table td {
        padding: 6px 4px;
        font-size: 0.7rem;
    }

    .services-note {
        font-size: 0.65rem;
        margin-top: 6px;
    }
}

@media (max-width: 480px) {
    .header-left {
        padding: 10px 12px;
        gap: 8px;
    }

    .logo-mark {
        width: 24px;
        height: 24px;
    }

    .logo-name {
        font-size: 0.95rem;
    }

    .logo-sub {
        display: none;
    }

    .header-right {
        padding: 10px 12px;
    }

    .header-phone {
        font-size: 0.72rem;
        padding: 7px 10px;
    }

    .hero {
        padding-top: 48px;
    }

    .hero-tagline {
        padding: 12px;
        gap: 6px;
    }

    .hero-tagline-text {
        font-size: 0.6rem;
    }

    .hero-tagline .deco-star {
        font-size: 0.9rem;
    }
}

/* ============================================
   HOW-WE-WORK SECTION
   ============================================ */
.how-section {
    padding: 32px 5% 48px;
    max-width: 1140px;
    margin: 0 auto;
}

.how-section .section-header {
    text-align: center;
    margin-bottom: 24px;
}

.how-section .section-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 6px;
}

.how-section .section-subtitle {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--graphite-light);
}

/* ===== TOGGLE TABS ===== */
.how-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 24px;
}

.how-toggle-btn {
    padding: 12px 32px;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    border: var(--border-light);
    background: var(--white);
    color: var(--graphite);
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.how-toggle-btn:first-child {
    border-radius: 4px 0 0 4px;
    border-right: none;
}

.how-toggle-btn:last-child {
    border-radius: 0 4px 4px 0;
}

.how-toggle-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.how-toggle-btn.active {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.how-toggle-btn:not(.active):hover {
    background: var(--ivory-dark);
}

.how-toggle-label {
    font-family: var(--font-accent);
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.7;
    display: block;
}

/* ===== CARDS GRID ===== */
.how-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    align-items: stretch;
}

.how-card {
    border: var(--border-light);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    min-height: 270px;
    border-radius: 2px;
    background: var(--white);
    cursor: default;
}

.how-card:hover {
    border-color: var(--blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(44, 95, 124, 0.10);
    background: var(--ivory);
}

/* Card body */
.how-card-body {
    padding: 22px 18px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.how-card-num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: rgba(44, 95, 124, 0.10);
    line-height: 1;
    margin-bottom: 10px;
}

.how-card-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 8px;
}

.how-card-desc {
    font-family: var(--font-body);
    font-size: 0.76rem;
    color: var(--graphite);
    line-height: 1.55;
    min-height: 3.5em;
}

/* Trust badge (bottom of body) */
.how-card-badge {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(44, 95, 124, 0.04);
    border-top: 2px solid var(--blue);
    font-family: var(--font-accent);
    font-size: 0.58rem;
    letter-spacing: 0.04em;
    color: var(--blue);
    text-transform: uppercase;
    line-height: 1.4;
    min-height: 38px;
    transition: background 0.25s ease;
}

.how-card:hover .how-card-badge {
    background: rgba(44, 95, 124, 0.08);
}

.how-card-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Detail footer */
.how-card-detail {
    border-top: var(--border-light);
    padding: 10px 18px 12px;
    font-family: var(--font-body);
    font-size: 0.68rem;
    color: var(--graphite);
    line-height: 1.45;
    display: flex;
    align-items: center;
    gap: 6px;
}

.how-card-detail svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2;
}

.how-card-detail.muted {
    color: var(--graphite-light);
    font-style: italic;
}

/* Type accent strip — left border color per cremation type */
.how-card[data-accent="ind"] {
    border-left: 3px solid var(--blue);
}

.how-card[data-accent="shared"] {
    border-left: 3px solid var(--sage);
}

/* ===== How-we-work Responsive ===== */
@media (max-width: 768px) {
    .how-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .how-section {
        padding: 24px 4% 32px;
    }

    .how-section .section-header {
        margin-bottom: 16px;
    }

    .how-section .section-title {
        font-size: 1.3rem;
    }

    .how-toggle {
        margin-bottom: 16px;
    }

    .how-toggle-btn {
        flex: 1;
        justify-content: center;
        padding: 10px 12px;
        font-size: 0.75rem;
    }

    .how-cards-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .how-card {
        min-height: unset;
        flex-direction: row;
        align-items: stretch;
    }

    .how-card-body {
        padding: 12px 14px;
        flex: 1;
        min-width: 0;
    }

    .how-card-num {
        font-size: 1.4rem;
        margin-bottom: 4px;
    }

    .how-card-title {
        font-size: 0.78rem;
        margin-bottom: 3px;
    }

    .how-card-desc {
        font-size: 0.7rem;
        min-height: unset;
    }

    .how-card-badge {
        font-size: 0.52rem;
        padding: 5px 10px;
        margin-top: 6px;
        min-height: unset;
    }

    .how-card-detail {
        border-top: none;
        border-left: var(--border-light);
        padding: 10px 10px;
        min-width: 110px;
        max-width: 130px;
        flex-shrink: 0;
        font-size: 0.62rem;
    }
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
    padding: 56px 24px 48px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative background paw */
.reviews-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(196, 149, 106, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.reviews-section .section-header {
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

/* Slider container */
.rev-slider {
    position: relative;
    min-height: 300px;
    z-index: 1;
}

.rev-slide {
    display: none;
    opacity: 0;
    transform: translateY(12px);
}

.rev-slide.active {
    display: block;
    animation: revSlideIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes revSlideIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Giant opening quote */
.rev-quote-open {
    font-family: var(--font-logo);
    font-size: 5.5rem;
    line-height: 0.6;
    color: var(--ochre);
    opacity: 0.2;
    user-select: none;
    margin-bottom: 8px;
}

/* Quote text */
.rev-text {
    font-family: var(--font-logo);
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-style: italic;
    line-height: 1.75;
    color: var(--graphite);
    max-width: 660px;
    margin: 0 auto 28px;
    letter-spacing: 0.005em;
}

/* Author block */
.rev-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.rev-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--blue);
    background: rgba(44, 95, 124, 0.06);
    transition: all 0.3s ease;
}

.rev-slide.active .rev-avatar {
    animation: revAvatarPop 0.4s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes revAvatarPop {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.rev-author-info {
    text-align: left;
}

.rev-author-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--blue-dark);
}

.rev-author-pet {
    font-family: var(--font-accent);
    font-size: 0.68rem;
    color: var(--graphite-light);
    letter-spacing: 0.02em;
}

/* Navigation dots */
.rev-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 36px;
}

.rev-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(44, 95, 124, 0.3);
    background: transparent;
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0;
}

.rev-dot:hover {
    border-color: var(--blue);
}

.rev-dot.active {
    background: var(--blue);
    border-color: var(--blue);
    transform: scale(1.15);
}

/* Arrow buttons */
.rev-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
}

.rev-arrow {
    width: 42px;
    height: 42px;
    border: var(--border);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    transition: all 0.3s ease;
}

.rev-arrow:hover {
    background: var(--blue);
    color: var(--ivory);
}

.rev-arrow svg {
    width: 18px;
    height: 18px;
}

/* Progress bar under dots */
.rev-progress-wrap {
    width: 120px;
    height: 2px;
    background: rgba(44, 95, 124, 0.1);
    margin: 16px auto 0;
    border-radius: 1px;
    overflow: hidden;
}

.rev-progress-bar {
    height: 100%;
    background: var(--ochre);
    width: 0%;
    transition: width 0.3s ease;
}

/* 2GIS link */
.rev-footer {
    margin-top: 28px;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    color: var(--graphite-light);
    position: relative;
    z-index: 1;
}

.rev-footer a {
    color: var(--blue);
    border-bottom: 1px solid rgba(44, 95, 124, 0.25);
    transition: border-color 0.3s;
}

.rev-footer a:hover {
    border-color: var(--blue);
}

/* Rating stars */
.rev-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 20px;
}

.rev-stars span {
    color: var(--ochre);
    font-size: 0.9rem;
}

/* ===== Reviews Responsive ===== */
@media (max-width: 768px) {
    .reviews-section {
        padding: 40px 16px 36px;
    }
    .rev-slider {
        min-height: 260px;
    }
    .rev-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    .rev-quote-open {
        font-size: 4rem;
    }
    .rev-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 32px 12px 28px;
    }
    .rev-slider {
        min-height: 300px;
    }
    .rev-text {
        font-size: 0.88rem;
    }
    .rev-quote-open {
        font-size: 3.5rem;
    }
    .rev-author-name {
        font-size: 0.82rem;
    }
    .rev-author-pet {
        font-size: 0.62rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--blue);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left: messengers + emotional text */
.footer-left {
    padding: 56px 48px;
    border-right: 1px solid rgba(245, 240, 235, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-emotional {
    font-family: var(--font-logo);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-style: italic;
    color: var(--ivory);
    line-height: 1.65;
    margin-bottom: 28px;
    opacity: 0.9;
}

.footer-messengers-label {
    font-family: var(--font-accent);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(245, 240, 235, 0.4);
    margin-bottom: 12px;
}

.footer-messengers {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-msg-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border: 2px solid rgba(245, 240, 235, 0.2);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--ivory);
    transition: all 0.3s ease;
    background: transparent;
}

.footer-msg-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.footer-msg-btn.wa:hover {
    background: #25D366;
    border-color: #25D366;
}

.footer-msg-btn.tg:hover {
    background: #2AABEE;
    border-color: #2AABEE;
}

.footer-msg-btn.max:hover {
    background: #5B21B6;
    border-color: #5B21B6;
}

.footer-msg-btn.vk:hover {
    background: #0077FF;
    border-color: #0077FF;
}

.footer-note {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: rgba(245, 240, 235, 0.45);
    margin-top: 18px;
    line-height: 1.5;
    font-style: italic;
}

/* Right: phone + hours */
.footer-right {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-phone-label {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(245, 240, 235, 0.4);
    margin-bottom: 8px;
}

.footer-phone {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--ivory);
    display: block;
    transition: color 0.3s;
    letter-spacing: -0.01em;
}

.footer-phone:hover {
    color: var(--ochre);
}

.footer-hours {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: rgba(245, 240, 235, 0.7);
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-hours svg {
    width: 18px;
    height: 18px;
    color: var(--ochre);
    flex-shrink: 0;
    opacity: 0.7;
}

.footer-address {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: rgba(245, 240, 235, 0.5);
    margin-top: 8px;
    padding-left: 28px;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(245, 240, 235, 0.1);
}

.footer-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sage);
    animation: pulse 2s ease-in-out infinite;
}

.footer-status-text {
    font-family: var(--font-accent);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(245, 240, 235, 0.5);
}

/* Copyright bar */
.footer-bottom {
    border-top: 1px solid rgba(245, 240, 235, 0.08);
    padding: 16px 24px;
    text-align: center;
    font-family: var(--font-accent);
    font-size: 0.58rem;
    color: rgba(245, 240, 235, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== Footer Responsive ===== */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
    .footer-left {
        border-right: none;
        border-bottom: 1px solid rgba(245, 240, 235, 0.1);
        padding: 40px 24px;
    }
    .footer-right {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .footer-left, .footer-right {
        padding: 28px 16px;
    }
    .footer-messengers {
        flex-direction: column;
    }
    .footer-msg-btn {
        justify-content: center;
    }
    .footer-address {
        padding-left: 0;
    }
}