/* ==========================================================================
   Heriz Fine Antique Persian Rugs — site styles (v2 redesign)
   Palette drawn from the rugs: madder red, indigo, ivory wool, saffron gold.
   ========================================================================== */

:root {
    --ivory: #fbf8f3;
    --sand: #f3ece1;
    --sand-2: #e9dfcf;
    --line: #e3d8c6;
    --ink: #1c1a18;
    --ink-2: #4a4540;
    --muted: #7a7168;
    --madder: #9b2c2c;
    --madder-dark: #7a1f22;
    --madder-soft: #f6e7e3;
    --indigo: #17223b;
    --indigo-2: #22304f;
    --gold: #c39341;
    --gold-soft: #e9d6ab;
    --white: #ffffff;
    --success: #2f6b45;

    --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
    --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --shadow-sm: 0 1px 2px rgba(28, 26, 24, .06), 0 2px 8px rgba(28, 26, 24, .04);
    --shadow: 0 10px 30px -12px rgba(28, 26, 24, .22);
    --shadow-lg: 0 30px 60px -25px rgba(23, 34, 59, .35);
    --wrap: 1200px;
    --header-h: 76px;
    --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--ink-2);
    background: var(--ivory);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img, video, iframe { max-width: 100%; }
img { height: auto; }

a { color: var(--madder); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--madder-dark); text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--ink);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -.01em;
    margin: 0 0 .5em;
}

p { margin: 0 0 1.1em; }
h1, h2, h3, .section-title { text-wrap: balance; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.skip-link {
    position: absolute; left: 16px; top: -60px; z-index: 1000;
    background: var(--ink); color: #fff; padding: 10px 16px; border-radius: var(--radius-sm);
}
.skip-link:focus { top: 12px; color: #fff; }

.icon {
    width: 1.15em; height: 1.15em; flex: none;
    stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
    vertical-align: -.2em;
}
.icon--fill { fill: currentColor; stroke: none; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.wrap--narrow { max-width: 860px; margin-inline: auto; }

.sr-only {
    position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* Persian-inspired border ornament (pure CSS) */
.ornament {
    height: 14px;
    background:
        linear-gradient(135deg, transparent 37%, var(--gold) 37%, var(--gold) 63%, transparent 63%) 0 0 / 14px 14px,
        linear-gradient(var(--madder), var(--madder));
    opacity: .9;
}
.ornament--thin { height: 8px; background-size: 8px 8px, auto; }

/* ---------- Buttons ---------- */
.button {
    display: inline-flex; align-items: center; justify-content: center; gap: .55em;
    font-family: var(--font-body); font-weight: 600; font-size: .95rem; letter-spacing: .01em;
    padding: .85em 1.5em; border-radius: 999px; border: 1.5px solid transparent;
    cursor: pointer; white-space: nowrap;
    transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }
.button--primary { background: var(--madder); color: #fff; box-shadow: 0 8px 20px -10px rgba(155, 44, 44, .8); }
.button--primary:hover { background: var(--madder-dark); color: #fff; }
.button--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.button--ghost:hover { background: var(--ink); color: #fff; }
.button--light { background: #fff; color: var(--ink); }
.button--light:hover { background: var(--gold-soft); color: var(--ink); }
.button--outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.button--outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.button--sm { padding: .6em 1.1em; font-size: .88rem; }
.button--block { width: 100%; }

.link-arrow {
    display: inline-flex; align-items: center; gap: .4em; font-weight: 600; font-size: .95rem; color: var(--madder);
}
.link-arrow .icon { transition: transform .2s var(--ease); }
.link-arrow:hover .icon { transform: translateX(4px); }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Section scaffolding ---------- */
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--sand { background: var(--sand); }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }

.eyebrow {
    display: inline-flex; align-items: center; gap: .6em;
    font-family: var(--font-body); font-size: .78rem; font-weight: 600;
    letter-spacing: .16em; text-transform: uppercase; color: var(--madder);
    margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1.5px; background: currentColor; }

.section-head { max-width: 720px; margin: 0 auto clamp(32px, 5vw, 56px); text-align: center; }
.section-head .eyebrow::after { content: ""; width: 28px; height: 1.5px; background: currentColor; }
.section-head--left { margin-left: 0; text-align: left; }
.section-head--left .eyebrow::after { display: none; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); }
.section-sub { font-size: 1.08rem; color: var(--muted); margin: 0; }

/* ---------- Announcement bar ---------- */
.announce {
    background: var(--indigo); color: #fff; font-size: .9rem; text-align: center;
    padding: 9px 20px; line-height: 1.45;
}
.announce strong { color: var(--gold-soft); letter-spacing: .04em; font-weight: 700; }
.announce span { opacity: .85; }
.announce__sep { display: inline-block; margin: 0 .6em; opacity: .4; }
@media (max-width: 640px) { .announce { font-size: .8rem; } .announce__sep, .announce span { display: none; } }

/* ---------- Header / nav ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(251, 248, 243, .88);
    -webkit-backdrop-filter: saturate(160%) blur(12px);
    backdrop-filter: saturate(160%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px -18px rgba(0, 0, 0, .4); }
.site-header__inner { display: flex; align-items: center; gap: 24px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 42px; width: auto; display: block; }

.main-nav { margin-left: auto; }
.main-nav__list { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.main-nav__link {
    display: block; padding: 8px 14px; border-radius: 999px;
    color: var(--ink); font-weight: 500; font-size: .95rem; position: relative;
}
.main-nav__link:hover { color: var(--madder); background: var(--sand); }
.main-nav__link.is-active { color: var(--madder); }
.main-nav__link.is-active::after {
    content: ""; position: absolute; left: 50%; bottom: 2px; width: 5px; height: 5px;
    border-radius: 50%; background: var(--madder); transform: translateX(-50%);
}
.header-cta { flex: none; }

.nav-toggle {
    display: none; margin-left: auto; width: 46px; height: 46px; border-radius: 12px;
    border: 1px solid var(--line); background: #fff; color: var(--ink); cursor: pointer;
    align-items: center; justify-content: center;
}
.nav-toggle .icon { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-open .nav-toggle .icon-menu { display: none; }
.nav-open .nav-toggle .icon-close { display: block; }

@media (max-width: 1080px) {
    .header-cta .button__label { display: none; }
    .header-cta .button { padding: .75em; }
    .main-nav__link { padding: 8px 10px; }
}

@media (max-width: 900px) {
    :root { --header-h: 66px; }
    .brand img { height: 36px; }
    .nav-toggle { display: inline-flex; }
    .header-cta { display: none; }
    .main-nav {
        position: fixed; inset: var(--header-h) 0 0 0; margin: 0;
        background: var(--ivory); padding: 20px 20px 120px; overflow-y: auto;
        opacity: 0; visibility: hidden; transform: translateY(-8px);
        transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
    }
    .nav-open .main-nav { opacity: 1; visibility: visible; transform: none; }
    .nav-open { overflow: hidden; }
    .main-nav__list { flex-direction: column; gap: 0; }
    .main-nav__link {
        font-family: var(--font-display); font-size: 1.7rem; font-weight: 600;
        padding: 14px 4px; border-radius: 0; border-bottom: 1px solid var(--line);
    }
    .main-nav__link:hover { background: none; }
    .main-nav__link.is-active::after { left: auto; right: 6px; top: 50%; bottom: auto; transform: translateY(-50%); width: 8px; height: 8px; }
    .main-nav__mobile-cta { display: grid !important; gap: 12px; margin-top: 28px; }
}
.main-nav__mobile-cta { display: none !important; }

/* ---------- Hero slider (Owl Carousel) ---------- */
.top-slider-wrap { position: relative; background: var(--indigo); overflow: hidden; }
/* never taller than the screen: natural 4:3 height (75vw) capped at the visible viewport */
.top-slider .top-slider__item img {
    display: block; width: 100%; object-fit: cover; object-position: center;
    height: min(75vw, calc(100vh - var(--header-h) - 40px));
    height: min(75vw, calc(100svh - var(--header-h) - 40px));
}
/* prev / next arrows (slider runs right-to-left, so "next" sits on the left) */
.top-slider-wrap .top-slider .owl-nav { position: absolute; inset: 50% 0 auto 0; height: 0; z-index: 5; pointer-events: none; margin: 0; }
.top-slider-wrap .top-slider .owl-nav .owl-prev,
.top-slider-wrap .top-slider .owl-nav .owl-next {
    position: absolute; top: 0; transform: translateY(-50%); pointer-events: auto;
    width: 54px; height: 54px; border-radius: 50%; margin: 0; padding: 0; font-size: 0;
    display: grid; place-items: center; cursor: pointer; user-select: none;
    background: rgba(255, 255, 255, .88); color: var(--ink); border: 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
    transition: background .2s, color .2s, transform .2s var(--ease);
}
.top-slider-wrap .top-slider .owl-nav .owl-next { left: 24px; }
.top-slider-wrap .top-slider .owl-nav .owl-prev { right: 24px; }
.top-slider-wrap .top-slider .owl-nav .owl-prev:hover,
.top-slider-wrap .top-slider .owl-nav .owl-next:hover { background: var(--madder); color: #fff; }
.top-slider-wrap .top-slider .owl-nav .owl-prev:active,
.top-slider-wrap .top-slider .owl-nav .owl-next:active { transform: translateY(-50%) scale(.94); }
.top-slider-wrap .top-slider .owl-nav .icon { width: 24px; height: 24px; }
.top-slider-wrap .top-slider .owl-nav.disabled { display: none; }
@media (max-width: 760px) {
    .top-slider-wrap .top-slider .owl-nav .owl-prev,
    .top-slider-wrap .top-slider .owl-nav .owl-next { width: 38px; height: 38px; }
    .top-slider-wrap .top-slider .owl-nav .owl-next { left: 10px; }
    .top-slider-wrap .top-slider .owl-nav .owl-prev { right: 10px; }
    .top-slider-wrap .top-slider .owl-nav .icon { width: 18px; height: 18px; }
}

/* intro under the slider */
.intro { padding: clamp(40px, 6vw, 80px) 0; }
.intro__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px, 5vw, 72px); align-items: end; }
.intro__title { font-size: clamp(2.3rem, 5vw, 4.2rem); line-height: 1.02; margin: 0; }
.intro__title em { display: block; font-style: italic; font-weight: 500; color: var(--madder); }
.intro__lead { font-size: clamp(1.02rem, 1.3vw, 1.15rem); margin-bottom: 1.5rem; }
.intro__rating { display: inline-flex; align-items: center; gap: 10px; margin-top: 1.2rem; color: var(--ink-2); font-size: .9rem; font-weight: 500; }
.intro__rating:hover { color: var(--madder); }
.intro__stars { display: flex; gap: 2px; color: var(--gold); }
.intro__stars .icon { width: 15px; height: 15px; }

@media (max-width: 900px) {
    .intro__grid { grid-template-columns: 1fr; align-items: start; }
    .intro__title em { display: inline; }
}
@media (max-width: 560px) {
    .button-row .button { flex: 1 1 auto; }
}

/* ---------- Trust strip ---------- */
.trust { background: var(--indigo); color: rgba(255, 255, 255, .85); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust__item { display: flex; gap: 14px; align-items: flex-start; padding: 28px 24px; border-left: 1px solid rgba(255, 255, 255, .1); }
.trust__item:first-child { border-left: 0; padding-left: 0; }
.trust__icon {
    flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
    background: rgba(195, 147, 65, .16); color: var(--gold-soft);
}
.trust__icon .icon { width: 22px; height: 22px; }
.trust__item h3 { font-family: var(--font-body); font-size: .98rem; font-weight: 600; color: #fff; margin: 2px 0 4px; letter-spacing: 0; }
.trust__item p { font-size: .86rem; margin: 0; line-height: 1.5; color: rgba(255, 255, 255, .7); }
@media (max-width: 960px) {
    .trust__grid { grid-template-columns: 1fr 1fr; }
    .trust__item:nth-child(3) { border-left: 0; padding-left: 0; }
    .trust__item { border-top: 1px solid rgba(255, 255, 255, .1); }
    .trust__item:nth-child(-n+2) { border-top: 0; }
}
@media (max-width: 560px) {
    .trust__grid { grid-template-columns: 1fr; }
    .trust__item { border-left: 0 !important; padding: 20px 0; }
    .trust__item:nth-child(2) { border-top: 1px solid rgba(255, 255, 255, .1); }
}

/* ---------- Service tiles ---------- */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.tile {
    position: relative; display: flex; flex-direction: column; background: #fff; border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); color: inherit;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: inherit; }
.tile__media { aspect-ratio: 16 / 11; overflow: hidden; background: var(--sand-2); }
.tile__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.tile:hover .tile__media img { transform: scale(1.06); }
.tile__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.tile__num { font-family: var(--font-display); font-size: .95rem; color: var(--gold); font-weight: 600; margin-bottom: 6px; letter-spacing: .08em; }
.tile__title { font-size: 1.45rem; margin-bottom: .45em; }
.tile__text { font-size: .94rem; color: var(--muted); flex: 1; margin-bottom: 1.1em; }
@media (max-width: 1024px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tiles { grid-template-columns: 1fr; } }

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; isolation: isolate; }
.split__media img { position: relative; z-index: 1; }
.split__media img { width: 100%; border-radius: var(--radius-lg); display: block; box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; }
.split__media::after {
    content: ""; position: absolute; z-index: 0; inset: 24px -24px -24px 24px;
    border: 1.5px solid var(--gold-soft); border-radius: var(--radius-lg);
}
.split--reverse .split__media::after { inset: 24px 24px -24px -24px; }
.split__body > p { font-size: 1.04rem; }
.split__title { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.split__sub { font-family: var(--font-body); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 1.3em; }
@media (max-width: 900px) {
    .split { grid-template-columns: 1fr; }
    .split--reverse .split__media { order: 0; }
    .split__media::after { inset: 14px -10px -14px 14px !important; }
}

.check-list { list-style: none; padding: 0; margin: 0 0 1.6em; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list .icon { color: var(--madder); margin-top: .3em; }

/* Article link cards */
.link-cards { display: grid; gap: 12px; margin-top: 8px; }
.link-card {
    display: flex; align-items: center; gap: 16px; padding: 18px 20px; background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); color: var(--ink); font-weight: 600;
    transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.link-card:hover { border-color: var(--madder); color: var(--ink); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.link-card__icon { flex: none; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--madder-soft); color: var(--madder); }
.link-card__text { flex: 1; line-height: 1.35; }
.link-card__text small { display: block; font-weight: 400; color: var(--muted); font-size: .85rem; margin-top: 2px; }
.link-card > .icon { color: var(--muted); }

/* ---------- Story / editorial ---------- */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); }
.story__col p { font-size: 1.02rem; }
.story__col p:first-child::first-letter {
    float: left; font-family: var(--font-display); font-size: 4.2em; line-height: .82;
    padding: .06em .1em 0 0; color: var(--madder); font-weight: 600;
}
.story__col + .story__col p:first-child::first-letter { all: unset; }
.story__figure { margin: 0 0 1.4em; }
.story__figure img { border-radius: var(--radius); width: 100%; display: block; }
.note { font-size: .85rem; color: var(--muted); }
@media (max-width: 860px) { .story { grid-template-columns: 1fr; } }

/* ---------- Offer band ---------- */
.offer {
    position: relative; overflow: hidden; border-radius: var(--radius-lg);
    background: linear-gradient(120deg, var(--madder-dark), var(--madder) 55%, #b2432f);
    color: #fff; padding: clamp(36px, 5vw, 60px); display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center;
}
.offer::after {
    content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%;
    border: 38px solid rgba(255, 255, 255, .06); pointer-events: none;
}
.offer__title { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .25em; }
.offer__title small { display: block; font-size: .5em; font-style: italic; font-weight: 500; opacity: .85; margin-top: .2em; }
.offer__list { list-style: none; padding: 0; margin: 1.2em 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.offer__list li { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; background: rgba(255, 255, 255, .12); border-radius: 999px; font-size: .9rem; font-weight: 500; }
.offer__list .icon { color: var(--gold-soft); }
.offer__actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; position: relative; z-index: 1; }
.offer__actions p { margin: 0; font-size: .9rem; opacity: .85; text-align: center; }
@media (max-width: 800px) { .offer { grid-template-columns: 1fr; } }

/* ---------- About block ---------- */
.about-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 5vw, 56px);
    display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; box-shadow: var(--shadow-sm);
}
.about-card p { font-size: 1.03rem; }
.about-card .about-card__quote {
    font-family: var(--font-display); font-style: italic; font-size: 1.45rem; line-height: 1.35; color: var(--ink);
    border-left: 3px solid var(--gold); padding-left: 20px; margin: 0 0 1.4em;
}
.about-card__aside { background: var(--sand); border-radius: var(--radius); padding: 28px; text-align: center; }
.about-card__aside h3 { font-size: 1.6rem; }
.about-card__aside p { color: var(--muted); font-size: .95rem; }
.about-card__aside .button { width: 100%; margin-top: 8px; }
@media (max-width: 860px) { .about-card { grid-template-columns: 1fr; } }

/* ---------- Carousel (recent rugs) ---------- */
.carousel { position: relative; }
.carousel__track {
    display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 3 * 20px) / 4); gap: 20px;
    overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 4px 4px 18px;
    scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__item { scroll-snap-align: start; margin: 0; }
.carousel__img {
    aspect-ratio: 3 / 4; border-radius: var(--radius); overflow: hidden; background: var(--sand-2); box-shadow: var(--shadow-sm);
}
.carousel__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.carousel__item:hover .carousel__img img { transform: scale(1.05); }
.carousel__item figcaption { font-size: .92rem; font-weight: 500; color: var(--ink); margin-top: 10px; line-height: 1.4; }
.carousel__nav { display: flex; gap: 10px; }
.carousel__btn {
    width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--ink); background: transparent; color: var(--ink);
    display: grid; place-items: center; cursor: pointer; transition: background .2s, color .2s;
}
.carousel__btn:hover { background: var(--ink); color: #fff; }
.carousel__btn[disabled] { opacity: .3; pointer-events: none; }
.carousel-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
.carousel-head .section-head { margin-bottom: 0; }
@media (max-width: 1024px) { .carousel__track { grid-auto-columns: calc((100% - 2 * 20px) / 3); } }
@media (max-width: 700px) {
    .carousel__track { grid-auto-columns: 70%; gap: 14px; }
    .carousel__nav { display: none; }
}

/* ---------- Visit / contact ---------- */
.visit { display: grid; grid-template-columns: 1fr 1.25fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.visit__info { padding: clamp(28px, 4vw, 48px); }
.visit__info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.visit__map { min-height: 380px; background: var(--sand-2); }
.visit__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: saturate(.85); }
@media (max-width: 860px) { .visit { grid-template-columns: 1fr; } .visit__map, .visit__map iframe { min-height: 300px; } }

.info-list { list-style: none; padding: 0; margin: 0 0 1.6em; display: grid; gap: 18px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; line-height: 1.5; }
.info-list__icon { flex: none; width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--madder-soft); color: var(--madder); }
.info-list__label { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 600; margin-bottom: 2px; }
.info-list a { color: var(--ink); font-weight: 500; }
.info-list a:hover { color: var(--madder); }

.phone-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 12px; margin-bottom: 1.6em; }
.phone-card {
    display: flex; flex-direction: column; gap: 2px; padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--radius);
    color: var(--ink); background: var(--ivory); transition: border-color .2s, background .2s, transform .2s var(--ease);
}
.phone-card:hover { border-color: var(--madder); background: #fff; color: var(--ink); transform: translateY(-2px); }
.phone-card span { font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 600; }
.phone-card strong { white-space: nowrap; font-size: 1.1rem; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.phone-card .icon { color: var(--madder); }
@media (max-width: 420px) { .phone-cards { grid-template-columns: 1fr; } }

.hours { width: 100%; font-size: .95rem; border-collapse: collapse; }
.hours td { padding: 6px 0; border-bottom: 1px dashed var(--line); }
.hours td:last-child { text-align: right; font-weight: 500; color: var(--ink); }
.hours .is-closed td:last-child { color: var(--muted); }

/* ---------- Page header (inner pages) ---------- */
.page-head { position: relative; padding: clamp(40px, 6vw, 80px) 0 clamp(32px, 5vw, 56px); background: var(--sand); overflow: hidden; }
.page-head::after {
    content: ""; position: absolute; inset: auto 0 0 0; height: 8px;
    background: linear-gradient(135deg, transparent 37%, var(--gold) 37%, var(--gold) 63%, transparent 63%) 0 0 / 8px 8px, var(--madder);
}
.page-head::before {
    content: ""; position: absolute; right: -120px; top: -120px; width: 380px; height: 380px; border-radius: 50%;
    border: 50px solid rgba(155, 44, 44, .05);
}
.page-head h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 0; max-width: 900px; position: relative; }
.breadcrumb-nav { font-size: .85rem; color: var(--muted); margin-bottom: 14px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; position: relative; }
.breadcrumb-nav a { color: var(--muted); }
.breadcrumb-nav a:hover { color: var(--madder); }
.breadcrumb-nav .icon { width: 14px; height: 14px; opacity: .6; }

/* ---------- Post content (CKEditor output) ---------- */
.post-body { padding: clamp(40px, 6vw, 72px) 0; }
.post-media { margin: 0 auto 40px; max-width: 980px; }
.post-media video, .post-media img { width: 100%; border-radius: var(--radius-lg); display: block; box-shadow: var(--shadow); background: #000; }
.post-media a { display: block; cursor: zoom-in; }

.prose { color: var(--ink-2); font-size: 1.06rem; line-height: 1.8; }
.prose::after { content: ""; display: table; clear: both; }
.prose h1, .prose h2 { font-size: clamp(1.8rem, 3vw, 2.3rem); margin: 1.6em 0 .5em; }
.prose h3 { font-size: 1.6rem; margin: 1.5em 0 .5em; }
.prose h4, .prose h5, .prose h6 { font-family: var(--font-body); font-size: 1.08rem; font-weight: 600; margin: 1.4em 0 .5em; letter-spacing: 0; }
.prose > :first-child { margin-top: 0; }
.prose a { text-decoration: underline; text-decoration-color: rgba(155, 44, 44, .35); text-underline-offset: 3px; }
.prose a:hover { text-decoration-color: currentColor; }
.prose img { border-radius: var(--radius); height: auto !important; }
.prose ul, .prose ol { padding-left: 1.4em; margin: 0 0 1.2em; }
.prose li { margin-bottom: .4em; }
.prose li::marker { color: var(--madder); }
.prose blockquote {
    margin: 1.8em 0; padding: 4px 0 4px 24px; border-left: 3px solid var(--gold);
    font-family: var(--font-display); font-size: 1.4rem; font-style: italic; color: var(--ink); line-height: 1.45;
}
.prose table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: .95rem; display: block; overflow-x: auto; }
.prose th, .prose td { padding: 10px 14px; border-bottom: 1px solid var(--line); text-align: left; }
.prose th { background: var(--sand); color: var(--ink); font-weight: 600; }
.prose hr { border: 0; height: 1px; background: var(--line); margin: 2.5em 0; }
.prose iframe { border-radius: var(--radius); }
.prose strong { color: var(--ink); }

/* ---------- Card grid (category children, gallery, videos) ---------- */
.block-title { display: flex; align-items: center; gap: 14px; font-size: 1.8rem; margin: 56px 0 24px; }
.block-title::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 960px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .card-grid { grid-template-columns: 1fr; } }

.post-card {
    display: flex; flex-direction: column; background: #fff; border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card__media { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--sand-2); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__media--empty { display: grid; place-items: center; color: var(--gold); }
.post-card__media--empty .icon { width: 44px; height: 44px; stroke-width: 1.2; }
.post-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.post-card__title { font-size: 1.4rem; margin-bottom: .4em; }
.post-card__title a { color: var(--ink); }
.post-card__title a:hover { color: var(--madder); }
.post-card__text { font-size: .93rem; color: var(--muted); flex: 1; margin-bottom: 1em; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* Gallery (rug inventory) */
.rug-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1100px) { .rug-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .rug-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
.rug {
    position: relative; margin: 0; animation: rug-in .5s var(--ease) both;
}
.rug__link { display: block; position: relative; border-radius: var(--radius); overflow: hidden; background: var(--sand-2); aspect-ratio: 3 / 4; cursor: zoom-in; box-shadow: var(--shadow-sm); }
.rug__link img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.rug__link::after {
    content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(23, 34, 59, .45), transparent 45%);
    opacity: 0; transition: opacity .3s var(--ease);
}
.rug__zoom {
    position: absolute; right: 12px; bottom: 12px; z-index: 1; width: 38px; height: 38px; border-radius: 50%;
    background: #fff; color: var(--ink); display: grid; place-items: center; opacity: 0; transform: translateY(6px);
    transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.rug__link:hover img { transform: scale(1.05); }
.rug__link:hover::after, .rug__link:hover .rug__zoom { opacity: 1; transform: none; }
.rug__caption { font-size: .92rem; font-weight: 500; color: var(--ink); margin-top: 10px; line-height: 1.4; }
.rug__badge {
    position: absolute; left: 12px; top: 12px; z-index: 1; background: var(--madder); color: #fff;
    font-size: .72rem; font-weight: 700; letter-spacing: .14em; padding: 5px 10px; border-radius: 999px;
}
.rug__badge:empty { display: none; }
.rug--sold .rug__link img { filter: grayscale(.5) brightness(.92); }
@keyframes rug-in { from { opacity: 0; transform: translateY(12px); } }

.loader { display: flex; justify-content: center; padding: 36px 0 8px; }
.loader__dots { display: none; gap: 8px; }
.loader.is-loading .loader__dots { display: flex; }
.loader__dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--madder); animation: dot 1s infinite ease-in-out both; }
.loader__dots span:nth-child(2) { animation-delay: .15s; background: var(--gold); }
.loader__dots span:nth-child(3) { animation-delay: .3s; background: var(--indigo); }
@keyframes dot { 0%, 80%, 100% { transform: scale(.4); opacity: .4; } 40% { transform: scale(1); opacity: 1; } }

/* Video gallery */
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 960px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
.video-thumb {
    position: relative; display: block; aspect-ratio: 16 / 10; border-radius: var(--radius); overflow: hidden; background: var(--indigo);
    border: 0; padding: 0; cursor: pointer; width: 100%;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .88; transition: transform .5s var(--ease), opacity .3s; }
.video-thumb:hover img { transform: scale(1.05); opacity: 1; }
.video-thumb__play {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 54px; height: 54px; border-radius: 50%;
    background: rgba(255, 255, 255, .92); color: var(--madder); display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
    transition: transform .3s var(--ease);
}
.video-thumb:hover .video-thumb__play { transform: translate(-50%, -50%) scale(1.1); }
.video-thumb__play .icon { width: 20px; height: 20px; margin-left: 3px; }
.video-title { font-size: .88rem; color: var(--ink); font-weight: 500; margin-top: 8px; line-height: 1.35; }

.video-dialog {
    width: min(1100px, calc(100vw - 32px)); padding: 0; border: 0; border-radius: var(--radius); background: #000; overflow: visible;
}
.video-dialog::backdrop { background: rgba(10, 14, 24, .82); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.video-dialog video { width: 100%; display: block; border-radius: var(--radius); max-height: 82vh; }
.video-dialog__close {
    position: absolute; right: 0; top: -52px; width: 42px; height: 42px; border-radius: 50%; border: 0; background: #fff; color: var(--ink);
    display: grid; place-items: center; cursor: pointer;
}

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq__item summary {
    list-style: none; cursor: pointer; padding: 18px 22px; display: flex; justify-content: space-between; gap: 16px; align-items: center;
    font-weight: 600; color: var(--ink); font-size: 1.02rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .icon { transition: transform .25s var(--ease); color: var(--madder); }
.faq__item[open] summary .icon { transform: rotate(180deg); }
.faq__item[open] summary { border-bottom: 1px solid var(--line); }
.faq__answer { padding: 16px 22px 20px; color: var(--ink-2); }

/* Notices (Django messages) */
.notice { display: flex; gap: 12px; align-items: flex-start; padding: 14px 18px; border-radius: var(--radius); margin-bottom: 14px; border: 1px solid; font-weight: 500; }
.notice--success { background: #eef6f0; border-color: #cfe5d6; color: var(--success); }
.notice--error, .notice--danger { background: var(--madder-soft); border-color: #ecc9c2; color: var(--madder-dark); }
.notice--warning { background: #fbf3e2; border-color: #efdcb2; color: #7a5a14; }
.notice--info { background: #eef1f7; border-color: #d4dbea; color: var(--indigo-2); }

/* Contact block (service pages) */
.contact-block { margin-top: clamp(48px, 6vw, 80px); }

/* ---------- Error pages ---------- */
.error-page { min-height: 62vh; display: grid; place-items: center; text-align: center; padding: 80px 20px; }
.error-page__code {
    font-family: var(--font-display); font-size: clamp(6rem, 18vw, 11rem); font-weight: 600; line-height: .9;
    color: transparent; -webkit-text-stroke: 2px var(--madder); margin-bottom: .1em; letter-spacing: -.02em;
}
.error-page h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.error-page p { max-width: 520px; margin: 0 auto 2rem; color: var(--muted); }
.error-page__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--indigo); color: rgba(255, 255, 255, .72); margin-top: 0; font-size: .94rem; }
.site-footer a { color: rgba(255, 255, 255, .85); }
.site-footer a:hover { color: var(--gold-soft); }
.footer-main { display: grid; grid-template-columns: 1.4fr 1fr 1.1fr 1.1fr; gap: 40px; padding: 72px 0 48px; }
.footer-brand img { height: 48px; width: auto; margin-bottom: 20px; }
.footer-brand p { line-height: 1.7; font-size: .92rem; }
.footer-title { font-family: var(--font-body); color: #fff; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; line-height: 1.5; }
.footer-contact .icon { color: var(--gold); margin-top: .2em; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.footer-social a {
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .18);
    font-size: .85rem; font-weight: 500;
}
.footer-social a:hover { border-color: var(--gold-soft); }
.footer-social img { width: 18px; height: 18px; border-radius: 50%; object-fit: contain; }
.footer-hours { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.footer-hours li { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px dashed rgba(255, 255, 255, .12); padding-bottom: 6px; }
.footer-hours b { color: #fff; font-weight: 500; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 22px 0; font-size: .84rem; }
.footer-bottom .wrap { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }
.footer-bottom p { margin: 0; }
@media (max-width: 960px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-main { grid-template-columns: 1fr; gap: 32px; padding-top: 52px; } }

/* ---------- Mobile action bar ---------- */
.action-bar { display: none; }
@media (max-width: 760px) {
    .action-bar {
        position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90;
        display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px;
        background: rgba(23, 34, 59, .94); border-radius: 18px; box-shadow: 0 18px 40px -12px rgba(0, 0, 0, .5);
        -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
        padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    }
    .action-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; border-radius: 12px; color: #fff; font-weight: 600; font-size: .95rem; }
    .action-bar a:first-child { background: var(--madder); }
    .action-bar a:last-child { background: rgba(255, 255, 255, .1); }
    body { padding-bottom: 84px; }
}

/* ---------- Back to top ---------- */
.to-top {
    position: fixed; right: 20px; bottom: 20px; z-index: 80; width: 46px; height: 46px; border-radius: 50%;
    background: var(--ink); color: #fff; border: 0; display: grid; place-items: center; cursor: pointer;
    opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .3s var(--ease); box-shadow: var(--shadow);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--madder); }
@media (max-width: 760px) { .to-top { display: none; } }

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
    .js .reveal { opacity: 1; transform: none; }
}

/* Print */
@media print {
    .site-header, .announce, .action-bar, .to-top, .site-footer .footer-main, .visit__map { display: none !important; }
    body { background: #fff; }
}
