/* =====================================================================
   STYLE.CSS — Aarti Shingle
   Page structure: header, hero, homepage sections, footer.
   Motion-forward ("maximum motion" brief) but paced slow & elegant.
   ===================================================================== */

/* ====================  HEADER / NAV  ================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), padding 0.5s var(--ease);
    padding-block: 1.4rem;
}
.site-header.scrolled {
    background: rgba(250, 246, 244, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--line);
    padding-block: 0.8rem;
}
/* On dark hero, header text is light until scrolled */
.site-header:not(.scrolled) { color: var(--ivory); }

/* On pages with a LIGHT background behind the header (e.g. product detail pages),
   the header uses its solid style with dark text from the very top, so the nav
   never sits invisible ivory-on-ivory. */
.light-top .site-header {
    background: rgba(250, 246, 244, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--line);
    color: var(--ink);
}
.light-top .site-header .brand-name,
.light-top .site-header .brand-sub,
.light-top .site-header .primary-nav ul a,
.light-top .site-header .nav-cta { color: var(--ink); }
.light-top .site-header .nav-cta { border-color: var(--ink); }
.light-top .site-header .nav-cta:hover { background: var(--ink); color: var(--ivory); }
.light-top .site-header .primary-nav ul a[aria-current="page"] { color: var(--plum); }
.light-top .nav-toggle span { background: var(--ink); }

.header-inner {
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; color: inherit; }
.brand-icon {
    display: grid;
    place-items: center;
    width: 40px; height: 40px;
    flex-shrink: 0;
    transition: width 0.5s var(--ease), height 0.5s var(--ease);
}
.brand-icon svg { width: 100%; height: 100%; }
.scrolled .brand-icon { width: 34px; height: 34px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
    font-family: var(--font-logo);
    font-size: 1.32rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: font-size 0.5s var(--ease);
}
.scrolled .brand-name { font-size: 1.18rem; }
.brand-sub {
    font-family: var(--font-body);
    font-size: 0.56rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    margin-top: 0.32rem;
    opacity: 0.72;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 3rem);
}
.primary-nav ul {
    display: flex;
    align-items: center;
    gap: clamp(1.4rem, 2.6vw, 2.6rem);
}
.primary-nav a {
    font-family: var(--font-logo);
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    position: relative;
    padding-block: 0.4rem;
    color: inherit;
    transition: opacity 0.3s var(--ease);
}
.primary-nav ul a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease);
}
.primary-nav ul a:hover::after,
.primary-nav ul a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.primary-nav ul a[aria-current="page"] { color: var(--mauve-deep); }
.site-header:not(.scrolled) .primary-nav ul a[aria-current="page"] { color: var(--mauve); }

.nav-cta {
    font-family: var(--font-logo);
    font-size: 0.76rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.75em 1.4em;
    border: 1px solid currentColor;
    transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.scrolled .nav-cta:hover { background: var(--ink); color: var(--ivory); }
.site-header:not(.scrolled) .nav-cta:hover { background: var(--ivory); color: var(--ink); }

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    width: 34px; height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    z-index: 1100;
}
.nav-toggle span {
    display: block; height: 2px; width: 26px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), width 0.3s var(--ease);
    transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* When the mobile menu is OPEN, the full-screen panel is always ivory, so the
   close (X) icon must always be dark ink — regardless of whether the page uses
   a light-top header, a dark hero, or is scrolled. This keeps the X visible and
   consistent on blog/product detail pages and every other page alike. The JS
   sets aria-expanded="true" on the toggle when the menu opens. */
.nav-toggle[aria-expanded="true"] span,
.light-top .nav-toggle[aria-expanded="true"] span,
.scrolled .nav-toggle[aria-expanded="true"] span { background: var(--ink); }

/* ====================  HERO  ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    background: var(--dark);
    overflow: hidden;
}
.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--dark);
}
.hero__video,
.hero__fallback {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    will-change: transform;
}
/* video plays by default; fallback image sits underneath and is hidden */
.hero__fallback { display: none; }

/* If the user prefers reduced motion, hide the video and show the still image */
@media (prefers-reduced-motion: reduce) {
    .hero__video { display: none; }
    .hero__fallback { display: block; }
}

/* gradient scrims for legibility (strengthened for the brighter video) */
.hero__media::before {
    content: "";
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(26,20,22,0.32) 0%, rgba(26,20,22,0.05) 32%),
        linear-gradient(0deg, rgba(26,20,22,0.45) 0%, rgba(26,20,22,0.12) 48%),
        radial-gradient(130% 100% at 28% 55%, rgba(26,20,22,0.28), rgba(26,20,22,0) 62%);
    z-index: 1;
}

.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--gutter);
    padding-bottom: clamp(3.5rem, 8vh, 7rem);
    color: var(--ivory);
}
.hero__eyebrow {
    color: var(--mauve);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroRise 1s var(--ease) 0.3s forwards;
}
/* Big overlapping headline */
.hero__title {
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 0.9;
    font-size: clamp(2.6rem, 8.5vw, 8.5rem);
    color: var(--ivory);
    margin-left: -0.03em;
    max-width: 15ch;
}
.hero__title .l {
    display: block;
    overflow: hidden;
}
.hero__title .l > span {
    display: block;
    transform: translateY(105%);
    animation: heroLine 1.1s var(--ease) forwards;
}
.hero__title .l:nth-child(1) > span { animation-delay: 0.45s; }
.hero__title .l:nth-child(2) > span { animation-delay: 0.6s; }
.hero__title .l--accent > span { color: var(--mauve); font-style: normal; }

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem 2.5rem;
    margin-top: 2.4rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroRise 1s var(--ease) 1s forwards;
}
.hero__desc {
    max-width: min(80ch, 46rem);
    font-size: clamp(0.98rem, 1.3vw, 1.12rem);
    line-height: 1.7;
    color: rgba(247, 242, 240, 0.85);
}

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

/* Scroll cue */
.hero__cue {
    position: absolute;
    left: 50%;
    bottom: 1.6rem;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    color: rgba(247,242,240,0.7);
    font-family: var(--font-logo);
    font-size: 0.66rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0;
    animation: heroRise 1s var(--ease) 1.5s forwards;
}
.hero__cue .cue-line {
    width: 1px; height: 46px;
    background: linear-gradient(var(--mauve), transparent);
    position: relative;
    overflow: hidden;
}
.hero__cue .cue-line::after {
    content: "";
    position: absolute; top: -50%; left: 0;
    width: 100%; height: 50%;
    background: var(--ivory);
    animation: cueDrop 2s var(--ease-soft) infinite;
}
@keyframes cueDrop {
    0% { top: -50%; } 60%,100% { top: 100%; }
}

/* ====================  MARQUEE (techniques ticker)  ================= */
.marquee {
    background: var(--ink);
    color: var(--ivory);
    padding-block: 1.4rem;
    overflow: hidden;
    white-space: nowrap;
    border-block: 1px solid var(--dark-2);
}
.marquee__track {
    display: inline-flex;
    gap: 3.5rem;
    animation: marquee 32s linear infinite;
    will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.7rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 3.5rem;
    color: var(--ivory);
}
.marquee__item::after {
    content: "✦";
    color: var(--mauve);
    font-size: 0.7em;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ====================  INTRO / STATEMENT  ========================== */
.intro {
    position: relative;
    background: var(--canvas);
}
.intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
}
.intro__body .section-title { margin-bottom: 1.8rem; }
.intro__body .lead + .lead { margin-top: 1.2rem; }
.intro__sign {
    margin-top: 2.2rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: var(--plum);
}
.intro__sign small {
    display: block;
    font-family: var(--font-logo);
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--mute);
    margin-top: 0.5rem;
}
.intro__media {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}
.intro__media img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.intro__stats {
    display: flex;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    margin-top: 2.6rem;
    padding-top: 2.2rem;
    border-top: 1px solid var(--line);
}
.stat__num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ink);
    line-height: 1;
    letter-spacing: 0.02em;
}
.stat__label {
    font-family: var(--font-logo);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mauve-deep);
    margin-top: 0.6rem;
}

/* ====================  COLLECTION SLIDER  ========================== */
.collection {
    background: var(--ivory);
    overflow: hidden;
}
.collection__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
    flex-wrap: wrap;
}
.collection__head .eyebrow { margin-bottom: 1rem; }
.slider {
    position: relative;
}
.slider__track {
    display: flex;
    gap: clamp(1rem, 2vw, 1.8rem);
    padding-inline: var(--gutter);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 1rem;
    touch-action: pan-y pinch-zoom;
    scroll-snap-type: x proximity;
}
.slider__track::-webkit-scrollbar { display: none; }

.look {
    position: relative;
    flex: 0 0 auto;
    width: clamp(240px, 32vw, 380px);
}
.look__frame {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: var(--blush-soft);
}
.look__frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease), filter 0.6s var(--ease);
    will-change: transform;
}
.look:hover .look__frame img { transform: scale(1.07); }

/* craft reveal overlay */
.look__reveal {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(26,20,22,0.75), rgba(26,20,22,0) 55%);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    display: flex;
    align-items: flex-end;
    padding: 1.4rem;
}
.look:hover .look__reveal { opacity: 1; }
.look__reveal-text {
    color: var(--ivory);
    transform: translateY(12px);
    transition: transform 0.5s var(--ease);
}
.look:hover .look__reveal-text { transform: translateY(0); }
.look__reveal-text span {
    font-family: var(--font-logo);
    font-size: 0.66rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--mauve);
    display: block;
    margin-bottom: 0.4rem;
}
.look__reveal-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(247,242,240,0.9);
}
.look__cat {
    font-family: var(--font-logo);
    font-size: 0.66rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--mauve-deep);
    margin-top: 1.1rem;
}
.look__name {
    font-family: var(--font-logo);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--ink);
    margin-top: 0.4rem;
    line-height: 1.15;
}

/* slider controls */
.slider__controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-inline: var(--gutter);
}
.slider__btn {
    width: 52px; height: 52px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease), transform 0.3s var(--ease);
    color: var(--ink);
}
.slider__btn:hover { background: var(--ink); border-color: var(--ink); color: var(--ivory); }
.slider__btn:active { transform: scale(0.94); }
.slider__btn svg { width: 20px; height: 20px; }
.slider__progress {
    flex: 1;
    height: 1px;
    background: var(--line);
    position: relative;
    margin-inline: 0.5rem;
    max-width: 240px;
}
.slider__progress-bar {
    position: absolute;
    left: 0; top: 0; height: 100%;
    background: var(--mauve-deep);
    width: 20%;
    transition: width 0.3s var(--ease), left 0.3s var(--ease);
}
.slider__count {
    font-family: var(--font-logo);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    color: var(--mute);
}

/* ====================  SERVICES  =================================== */
.services { background: var(--canvas); }
.services__head {
    max-width: 44rem;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.services__head .eyebrow { margin-bottom: 1rem; }
.services__intro { margin-top: 1.4rem; color: var(--ink-soft); }
.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}
.service {
    background: var(--canvas);
    padding: clamp(2rem, 3vw, 2.8rem) clamp(1.5rem, 2.2vw, 2.2rem);
    display: flex;
    flex-direction: column;
    transition: background 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}
.service::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 2px;
    background: var(--mauve);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}
.service:hover { background: var(--blush-soft); }
.service:hover::after { transform: scaleX(1); }
.service__icon {
    width: 56px; height: 56px;
    color: var(--plum);
    margin-bottom: 1.6rem;
    transition: transform 0.6s var(--ease), color 0.4s var(--ease);
}
.service__icon svg { width: 100%; height: 100%; }
.service:hover .service__icon { transform: translateY(-4px) rotate(-4deg); color: var(--mauve-deep); }
.service__name {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 1.7vw, 1.6rem);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--ink);
    line-height: 1.05;
    margin-bottom: 0.9rem;
}
.service__text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--ink-soft);
}
.services__cta { margin-top: clamp(2.5rem, 5vw, 3.5rem); }

/* ====================  REVIEWS  =================================== */
.reviews {
    position: relative;
    background: var(--plum);
    color: var(--ivory);
    overflow: hidden;
}
.reviews__bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    overflow: hidden;
}
.reviews__watermark {
    font-family: var(--font-display);
    font-size: clamp(6rem, 20vw, 22rem);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(247, 242, 240, 0.05);
    white-space: nowrap;
    line-height: 1;
}
.reviews .wrap { position: relative; z-index: 1; }
.reviews__head { text-align: center; max-width: 40rem; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); }
.reviews .section-title { color: var(--ivory); }
.reviews__title {
    font-size: clamp(2rem, 5vw, 3.6rem);
    max-width: 14ch;
    margin-inline: auto;
}
.reviews .eyebrow { color: var(--mauve); margin-bottom: 1.2rem; }
.reviews__rating {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    margin-top: 1.6rem;
    flex-wrap: wrap;
    justify-content: center;
}
.reviews__stars { display: inline-flex; gap: 3px; color: var(--mauve); }
.reviews__stars svg { width: 18px; height: 18px; }
.reviews__rating-text {
    font-family: var(--font-logo);
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(247, 242, 240, 0.75);
}
.reviews__stage {
    position: relative;
    max-width: 52rem;
    margin: 0 auto;
    min-height: 300px;
}
.review {
    position: absolute;
    inset: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), visibility 0.7s;
}
.review.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}
.review__mark {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 0.6;
    color: var(--mauve);
    margin-bottom: 0.5rem;
    height: 2.2rem;
}
.review__quote {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.6vw, 2.1rem);
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: var(--ivory);
    margin-bottom: 2.2rem;
    max-width: 40rem;
}
.review__by {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}
.review__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--mauve);
    color: var(--plum);
    font-family: var(--font-logo);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}
.review__meta { text-align: left; display: flex; flex-direction: column; }
.review__name {
    font-family: var(--font-logo);
    font-size: 0.92rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ivory);
}
.review__detail {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: rgba(247, 242, 240, 0.7);
    margin-top: 0.25rem;
}
.reviews__dots {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    margin-top: clamp(2rem, 4vw, 3rem);
}
.reviews__dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: rgba(247, 242, 240, 0.3);
    transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.reviews__dot.is-active { background: var(--mauve); transform: scale(1.3); }
.reviews__dot:hover { background: rgba(247, 242, 240, 0.6); }

/* ====================  CRAFT / DETAIL  ============================= */
.craft {
    background: var(--dark);
    color: var(--ivory);
}
.craft__head {
    text-align: center;
    max-width: 46rem;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.craft .section-title { color: var(--ivory); }
.craft .eyebrow { color: var(--mauve); margin-bottom: 1.2rem; }
.craft__lead {
    margin-top: 1.5rem;
    color: rgba(247,242,240,0.8);
    font-size: clamp(1rem,1.4vw,1.18rem);
    line-height: 1.75;
}
.craft__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.8rem);
}
.craft__item { position: relative; }
.craft__img {
    aspect-ratio: 1;
    overflow: hidden;
}
.craft__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
    will-change: transform;
}
.craft__item:hover .craft__img img { transform: scale(1.1); }
.craft__cap {
    margin-top: 1.1rem;
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
}
.craft__cap .n {
    font-family: var(--font-logo);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    color: var(--mauve);
}
.craft__cap .t {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ivory);
}

/* ====================  BESPOKE STEPS  ============================== */
.bespoke { background: var(--blush-soft); overflow: hidden; }
.bespoke__head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem,5vw,5rem);
    align-items: end;
    margin-bottom: clamp(2.5rem,5vw,4rem);
}
.bespoke__head .lead { color: var(--ink-soft); }
.bespoke__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1.2rem, 2.5vw, 2.4rem);
    counter-reset: step;
}
.step { position: relative; padding-top: 2.2rem; }
.step::before {
    counter-increment: step;
    content: "0" counter(step);
    font-family: var(--font-logo);
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    color: var(--mauve-deep);
    position: absolute;
    top: 0; left: 0;
}
.step::after {
    content: "";
    position: absolute;
    top: 0.55rem; left: 3rem; right: -1.2rem;
    height: 1px;
    background: var(--mauve);
    transform-origin: left;
}
.js .step::after {
    transform: scaleX(0);
    transition: transform 0.8s var(--ease);
}
.is-visible .step::after { transform: scaleX(1); }
.step:last-child::after { display: none; }
.step__title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 0.8rem;
    line-height: 1.1;
}
.step__text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--ink-soft);
}
.bespoke__cta { margin-top: clamp(2.5rem,5vw,3.5rem); }

/* ====================  CLOSING CTA  =============================== */
.closing {
    position: relative;
    background: var(--ink);
    color: var(--ivory);
    text-align: center;
    padding-block: clamp(5rem, 11vw, 10rem);
    overflow: hidden;
}
.closing__eyebrow { color: var(--mauve); margin-bottom: 1.5rem; }
.closing__title {
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 0.95;
    font-size: clamp(2.4rem, 7vw, 6rem);
    color: var(--ivory);
    max-width: 16ch;
    margin: 0 auto 2.4rem;
}
.closing__title em { font-style: normal; color: var(--mauve); }
.closing__sub {
    max-width: 40ch;
    margin: 0 auto 2.4rem;
    color: rgba(247, 242, 240, 0.8);
    font-size: clamp(0.98rem, 1.3vw, 1.12rem);
    line-height: 1.7;
}
.closing__actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}
/* faint stitched line decoration */
.closing__stitch {
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    display: flex;
    justify-content: center;
    gap: 12px;
    opacity: 0.3;
}
.closing__stitch.top { top: 12%; }
.closing__stitch.bot { bottom: 12%; }
.closing__stitch i {
    display: block;
    width: 22px; height: 1px;
    background: var(--mauve);
}

/* ====================  FOOTER  ==================================== */
.site-footer {
    background: var(--canvas);
    border-top: 1px solid var(--line);
    padding-top: clamp(3.5rem, 7vw, 6rem);
}
.footer-grid {
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--gutter);
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.4fr;
    gap: clamp(2rem, 5vw, 4rem);
    padding-bottom: clamp(3rem,5vw,4rem);
}
.footer-logo { display: flex; align-items: center; gap: 0.6rem; color: var(--ink); margin-bottom: 1.5rem; }
.footer-icon { display: grid; place-items: center; width: 38px; height: 38px; }
.footer-icon svg { width: 100%; height: 100%; }
.footer-wordmark {
    font-family: var(--font-logo);
    font-size: 1.4rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.footer-tag {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--mute);
    max-width: 42ch;
}
.footer-nav h4, .footer-contact h4 {
    font-family: var(--font-logo);
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--mauve-deep);
    margin-bottom: 1.4rem;
    font-weight: 400;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav a, .footer-contact a {
    font-size: 0.95rem;
    color: var(--ink-soft);
    transition: color 0.3s var(--ease);
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--plum); }

.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    line-height: 1.4;
}
.fc-icon {
    width: 34px; height: 34px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--plum);
    transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.fc-icon svg { width: 17px; height: 17px; }
.footer-contact-list a:hover .fc-icon {
    background: var(--plum);
    border-color: var(--plum);
    color: var(--ivory);
}
.footer-base {
    max-width: var(--maxw);
    margin-inline: auto;
    padding: 1.6rem var(--gutter);
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-family: var(--font-logo);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mute);
}
.footer-craft { color: var(--mauve-deep); }

/* ====================  SCROLL REVEAL  ============================= */
/* Only hide when JS is present (.js on <html>). Without JS, content
   shows by default — progressive enhancement. */
.js [data-reveal] {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
}
.js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}
.js [data-reveal="fade"] { transform: none; }
.js [data-reveal="scale"] { transform: scale(0.94); }
.js [data-reveal="scale"].is-visible { transform: scale(1); }

/* Parallax hook */
[data-parallax] { will-change: transform; }

/* ====================  RESPONSIVE  =============================== */
@media (max-width: 1080px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .bespoke__steps { grid-template-columns: repeat(2, 1fr); }
    .step::after { display: none; }
}

@media (max-width: 860px) {
    /* mobile nav */
    .nav-toggle { display: flex; }

    /* On pages with a light-top header, the header carries backdrop-filter,
       which creates a stacking context and traps the fixed nav panel inside it
       (so page content shows through the open menu). While the menu is open we
       drop that filter and lower the header, letting the panel cover the
       viewport as a normal fixed element. Driven by a body.nav-open class the
       menu JS toggles, so it works without relying on :has(). */
    body.nav-open .site-header,
    .site-header:has(.primary-nav.open) {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: transparent;
        box-shadow: none;
        z-index: 2000;
    }

    .primary-nav {
        position: fixed;
        inset: 0;
        background: var(--ivory);
        color: var(--ink);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.55s var(--ease);
        z-index: 1050;
    }
    .primary-nav.open { transform: translateX(0); }
    .primary-nav ul {
        flex-direction: column;
        gap: 1.6rem;
        text-align: center;
    }
    .primary-nav ul a {
        font-size: 1.4rem;
        font-family: var(--font-display);
        letter-spacing: 0.06em;
    }
    .primary-nav ul a::after { display: none; }
    .nav-cta { font-size: 0.82rem; padding: 0.9em 1.8em; }

    .intro__grid { grid-template-columns: 1fr; }
    .intro__media { order: -1; max-height: 60vh; }
    .bespoke__head { grid-template-columns: 1fr; gap: 1.5rem; }
    .craft__grid { grid-template-columns: 1fr; gap: 2rem; }
    .craft__item:nth-child(n+2) { display: none; } /* keep it tight on mobile — show first */
}

@media (max-width: 560px) {
    .services__grid { grid-template-columns: 1fr; }
    .bespoke__steps { grid-template-columns: 1fr; }
    .intro__stats { flex-wrap: wrap; gap: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-base { justify-content: flex-start; }
    .hero { align-items: flex-end; }
    .closing__actions { flex-direction: column; align-items: center; }
    .closing__actions .btn { width: 100%; max-width: 300px; justify-content: center; }
    .review__quote { font-size: 1.25rem; }
    .brand-sub { display: none; }
}

/* =====================================================================
   INNER PAGES (About, Contact, Custom Order)
   ===================================================================== */

/* ---- Page hero (compact, for inner pages) ---- */
.page-hero {
    position: relative;
    background: var(--ink);
    color: var(--ivory);
    padding-top: clamp(8rem, 16vh, 12rem);
    padding-bottom: clamp(3.5rem, 8vh, 6rem);
    overflow: hidden;
}
.page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.28;
}
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.page-hero::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(0deg, var(--ink) 0%, rgba(26,20,22,0.4) 100%);
    z-index: 1;
}
.page-hero__inner { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--mauve); margin-bottom: 1.2rem; }
.page-hero__title {
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 0.95;
    font-size: clamp(2.6rem, 7vw, 5.5rem);
    color: var(--ivory);
}
.page-hero__title em { font-style: normal; color: var(--mauve); }
.page-hero__sub {
    margin-top: 1.6rem;
    max-width: min(80ch, 52rem);
    color: rgba(247,242,240,0.82);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.7;
}
.page-hero__crumb {
    margin-top: 1.5rem;
    font-family: var(--font-logo);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(247,242,240,0.55);
}
.page-hero__crumb a { color: rgba(247,242,240,0.55); transition: color 0.3s var(--ease); }
.page-hero__crumb a:hover { color: var(--mauve); }

/* ---- Two-column story block ---- */
.story { background: var(--canvas); }
.story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 5.5rem);
    align-items: center;
}
.story__media { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.story__media img { width: 100%; height: 100%; object-fit: cover; }
.story__body .section-title { margin-bottom: 1.8rem; }
.story__body .lead + .lead { margin-top: 1.1rem; }
.story__sign {
    margin-top: 2rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: var(--plum);
}
.story__sign small {
    display: block;
    font-family: var(--font-logo);
    font-size: 0.72rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--mute);
    margin-top: 0.5rem;
}

/* ---- Value / feature grid (Why choose) ---- */
.values { background: var(--ivory); }
.values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.value {
    padding: clamp(1.8rem, 2.5vw, 2.4rem);
    border: 1px solid var(--line);
    background: var(--canvas);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.value:hover { transform: translateY(-4px); box-shadow: 0 20px 50px -30px rgba(120,78,90,0.4); }
.value__icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    min-width: 52px;
    color: var(--plum);
    margin-bottom: 1.5rem;
}
.value__icon svg { width: 52px; height: 52px; display: block; }
.value__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 0.8rem;
    line-height: 1.1;
}
.value__text { font-size: 0.95rem; line-height: 1.6; color: var(--ink-soft); }

/* ---- Process steps (Custom Order, detailed) ---- */
.process { background: var(--blush-soft); }
.process__list {
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    display: flex;
    flex-direction: column;
    gap: 0;
}
.pstep {
    display: grid;
    grid-template-columns: auto minmax(200px, 1fr) 2fr;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    padding: clamp(1.8rem, 3vw, 2.6rem) 0;
    border-top: 1px solid var(--line);
    align-items: baseline;
}
.pstep:last-child { border-bottom: 1px solid var(--line); }
.pstep__num {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: var(--mauve);
    line-height: 1;
    letter-spacing: 0.02em;
}
.pstep__head { display: flex; flex-direction: column; gap: 0.6rem; }
.pstep__title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--ink);
    line-height: 1.05;
    margin: 0;
}
.pstep__tag {
    display: inline-block;
    width: fit-content;
    font-family: var(--font-logo);
    font-size: 0.64rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mauve-deep);
    padding: 0.3em 0.8em;
    border: 1px solid var(--line);
    border-radius: 100px;
}
.pstep__text { font-size: 1rem; line-height: 1.7; color: var(--ink-soft); margin: 0; }

/* ---- Info strip (timeline / what to expect) ---- */
.infostrip { background: var(--ink); color: var(--ivory); }
.infostrip__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
}
.infocard .eyebrow { color: var(--mauve); }
.infocard__big {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ivory);
    line-height: 1;
    margin: 0.8rem 0 0.9rem;
    letter-spacing: 0.02em;
}
.infocard__text { color: rgba(247,242,240,0.75); font-size: 0.95rem; line-height: 1.6; }

/* ---- FAQ accordion ---- */
.faq { background: var(--canvas); }
.faq__list { margin-top: clamp(2rem, 4vw, 3rem); max-width: 60rem; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 0;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    letter-spacing: 0.02em;
    color: var(--ink);
    transition: color 0.3s var(--ease);
}
.faq__q:hover { color: var(--plum); }
.faq__icon {
    flex-shrink: 0;
    width: 22px; height: 22px;
    position: relative;
}
.faq__icon::before, .faq__icon::after {
    content: "";
    position: absolute;
    background: var(--mauve-deep);
    transition: transform 0.4s var(--ease);
}
.faq__icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq__icon::after { left: 50%; top: 0; width: 1.5px; height: 100%; transform: translateX(-50%); }
.faq__item.open .faq__icon::after { transform: translateX(-50%) scaleY(0); }
.faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease);
}
.faq__a-inner {
    padding-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 56ch;
}

/* ---- Contact method cards ---- */
.contact-methods { background: var(--ivory); }
.methods__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.method {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: clamp(1.6rem, 2.5vw, 2.2rem);
    border: 1px solid var(--line);
    background: var(--canvas);
    transition: background 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.method:hover { background: var(--plum); transform: translateY(-4px); border-color: var(--plum); }
.method__icon {
    width: 46px; height: 46px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--blush);
    color: var(--plum);
    transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.method__icon svg { width: 22px; height: 22px; }
.method:hover .method__icon { background: var(--mauve); color: var(--plum); }
.method__label {
    font-family: var(--font-logo);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mauve-deep);
    transition: color 0.4s var(--ease);
}
.method__value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--ink);
    letter-spacing: 0.02em;
    transition: color 0.4s var(--ease);
    word-break: break-word;
}
.method:hover .method__label { color: var(--mauve); }
.method:hover .method__value { color: var(--ivory); }

/* contact detail values in body font (phone, email, handle) */
.method__value--plain {
    font-family: var(--font-body);
    font-size: 0.98rem;
    letter-spacing: 0;
    font-weight: 500;
}

/* form success / error alerts */
.form-alert {
    padding: 1rem 1.3rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    border-left: 3px solid;
}
.form-alert--ok {
    background: var(--blush-soft);
    border-color: var(--mauve);
    color: var(--plum);
}
.form-alert--err {
    background: #F6E4E4;
    border-color: #C06A6A;
    color: #8A3A3A;
}

/* ---- Enquiry form ---- */
.enquire { background: var(--canvas); }
.enquire__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
}
.enquire__intro .section-title { margin-bottom: 1.4rem; }
.enquire__intro .lead { color: var(--ink-soft); }
.enquire__note {
    margin-top: 1.8rem;
    padding: 1.2rem 1.4rem;
    background: var(--blush-soft);
    border-left: 2px solid var(--mauve);
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--ink-soft);
}
.form { display: flex; flex-direction: column; gap: 1.3rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label {
    font-family: var(--font-logo);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--mauve-deep);
}
.field input, .field select, .field textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--ink);
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 0.85em 1em;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
    width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--mauve);
    box-shadow: 0 0 0 3px rgba(217,167,176,0.2);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23784E5A' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1em center; background-size: 18px; padding-right: 2.6em; }
.form__submit { margin-top: 0.5rem; align-self: flex-start; }

/* ---- Map / visit ---- */
.visit { background: var(--ivory); }
.visit__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: stretch;
}
.visit__info .section-title { margin-bottom: 1.4rem; }
.visit__addr {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--ink-soft);
    margin-bottom: 1.6rem;
}
.visit__hours { border-top: 1px solid var(--line); padding-top: 1.4rem; }
.visit__hours dt {
    font-family: var(--font-logo);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mauve-deep);
    margin-bottom: 0.5rem;
}
.visit__hours dd { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.7; }
.visit__map {
    min-height: 340px;
    border: 1px solid var(--line);
    overflow: hidden;
    background: var(--blush-soft);
}
.visit__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: grayscale(0.3) contrast(1.05); }

/* ---- Inner-page responsive ---- */
@media (max-width: 1080px) {
    .values__grid { grid-template-columns: 1fr 1fr; }
    .methods__grid { grid-template-columns: 1fr 1fr; }
    .infostrip__grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 860px) {
    .story__grid { grid-template-columns: 1fr; }
    .story__media { order: -1; max-height: 60vh; }
    .enquire__grid { grid-template-columns: 1fr; }
    .visit__grid { grid-template-columns: 1fr; }
    .pstep { grid-template-columns: auto 1fr; gap: 1.2rem 1.5rem; }
    .pstep__text { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
    .values__grid { grid-template-columns: 1fr; }
    .methods__grid { grid-template-columns: 1fr; }
    .form__row { grid-template-columns: 1fr; }
    .pstep__num { font-size: 2rem; }
}

/* ---- About: philosophy quote ---- */
.philosophy { background: var(--plum); color: var(--ivory); text-align: center; }
.philosophy__inner { max-width: 54rem; margin: 0 auto; }
.philosophy .eyebrow { margin-bottom: 1.8rem; }
.philosophy__quote {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.4vw, 2.8rem);
    line-height: 1.35;
    letter-spacing: 0.01em;
    color: var(--ivory);
}
.philosophy__by {
    margin-top: 1.8rem;
    font-family: var(--font-logo);
    font-size: 0.74rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mauve);
}

/* ---- About: materials / signature handwork ---- */
.materials { background: var(--canvas); }
.materials__grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}
.materials__text .section-title { margin-bottom: 1.4rem; }
.materials__list {
    margin-top: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}
.materials__list li {
    position: relative;
    padding-left: 1.6rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink-soft);
}
.materials__list li strong { color: var(--ink); font-weight: 600; }
.materials__list li::before {
    content: "";
    position: absolute;
    left: 0; top: 0.6em;
    width: 7px; height: 7px;
    background: var(--mauve);
    transform: rotate(45deg);
}
.materials__media { aspect-ratio: 1; overflow: hidden; }
.materials__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---- About: who we dress ---- */
.serve { background: var(--ivory); }
.serve__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.serve__item {
    background: var(--canvas);
    padding: clamp(1.8rem, 2.5vw, 2.4rem);
    transition: background 0.5s var(--ease);
}
.serve__item:hover { background: var(--blush-soft); }
.serve__item span {
    font-family: var(--font-logo);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    color: var(--mauve-deep);
    display: block;
    margin-bottom: 1.2rem;
}
.serve__item h3 {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 0.8rem;
    line-height: 1.1;
}
.serve__item p { font-size: 0.93rem; line-height: 1.6; color: var(--ink-soft); }

@media (max-width: 1080px) {
    .serve__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
    .materials__grid { grid-template-columns: 1fr; }
    .materials__media { order: -1; max-height: 50vh; }
}
@media (max-width: 560px) {
    .serve__grid { grid-template-columns: 1fr; }
}

/* ---- Custom Order: intro statement ---- */
.co-intro { background: var(--ivory); }
.co-intro__grid {
    display: grid;
    grid-template-columns: minmax(160px, 1fr) 3fr;
    gap: clamp(1.5rem, 5vw, 4rem);
    align-items: start;
}
.co-intro__grid .eyebrow { padding-top: 0.6rem; }
.co-intro__lead {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: var(--ink);
    margin-bottom: 1.4rem;
}
@media (max-width: 860px) {
    .co-intro__grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ---- Contact: how we work (replaces physical visit/map) ---- */
.how-we-work { background: var(--ivory); }
.hww__grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}
.hww__info .section-title { margin-bottom: 1.4rem; }
.hww__info .lead + .lead { margin-top: 1rem; }
.hww__aside { aspect-ratio: 4/3; overflow: hidden; }
.hww__aside img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
    .hww__grid { grid-template-columns: 1fr; }
    .hww__aside { order: -1; max-height: 45vh; }
}

/* ---- Photo toggle (cross-fade between two images) ---- */
.photo-toggle {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}
.photo-toggle__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.1s ease;
    will-change: opacity;
}
.photo-toggle__img.is-active { opacity: 1; }

/* =====================================================================
   COLLECTION LISTING PAGE
   ===================================================================== */
.coll { background: var(--canvas); }

/* filter chips */
.coll__filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.coll__chip {
    font-family: var(--font-logo);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
    padding: 0.7em 1.5em;
    border: 1px solid var(--line);
    border-radius: 100px;
    background: transparent;
    transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.coll__chip:hover { border-color: var(--mauve); color: var(--plum); }
.coll__chip.is-active {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--ivory);
}

/* gallery grid */
.coll__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 2.8rem);
}
.coll__item { transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.coll__item.is-hidden {
    display: none;
}
.coll__link { display: block; }
.coll__frame {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--blush-soft);
    margin-bottom: 1.2rem;
}
.coll__frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease-soft), filter 0.6s var(--ease);
}
.coll__link:hover .coll__frame img { transform: scale(1.06); }
.coll__view {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 2rem 1.4rem 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-family: var(--font-logo);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ivory);
    background: linear-gradient(0deg, rgba(26,20,22,0.75), rgba(26,20,22,0));
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.coll__link:hover .coll__view { opacity: 1; transform: translateY(0); }
.coll__cat {
    display: block;
    font-family: var(--font-logo);
    font-size: 0.64rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mauve-deep);
    margin-bottom: 0.6rem;
}
.coll__name {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    letter-spacing: 0.02em;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 0.6rem;
    transition: color 0.3s var(--ease);
}
.coll__link:hover .coll__name { color: var(--plum); }
.coll__desc { font-size: 0.92rem; line-height: 1.55; color: var(--ink-soft); }
.coll__empty {
    text-align: center;
    padding: 4rem 1rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--mute);
}

@media (max-width: 900px) {
    .coll__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
@media (max-width: 560px) {
    .coll__grid { grid-template-columns: 1fr; }
    .coll__filter { gap: 0.5rem; }
    .coll__chip { font-size: 0.66rem; padding: 0.6em 1.1em; }
}

/* =====================================================================
   PRODUCT DETAIL PAGE
   ===================================================================== */
.product { background: var(--canvas); }

/* hero: gallery + info split */
.product-hero {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    max-width: var(--maxw);
    margin: 0 auto;
    padding: clamp(7rem, 14vh, 10rem) var(--gutter) clamp(3rem, 6vw, 5rem);
    align-items: start;
}
.product-hero__gallery {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 1rem;
    position: sticky;
    top: clamp(6rem, 12vh, 8rem);
}
.product-hero__thumbs {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    order: -1;
}
.pthumb {
    aspect-ratio: 3/4;
    overflow: hidden;
    border: 1px solid var(--line);
    padding: 0;
    background: var(--blush-soft);
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s var(--ease), border-color 0.3s var(--ease);
}
.pthumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pthumb:hover { opacity: 0.9; }
.pthumb.is-active { opacity: 1; border-color: var(--mauve); }
.product-hero__main {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--blush-soft);
}
.product-hero__main img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* info aside */
.product-hero__info { padding-top: 0.5rem; }
.product__crumb {
    font-family: var(--font-logo);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--mute);
    margin-bottom: 1.5rem;
}
.product__crumb a { color: var(--mute); transition: color 0.3s var(--ease); }
.product__crumb a:hover { color: var(--plum); }
.product__cat { display: block; margin-bottom: 1rem; }
.product__name {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: 0.02em;
    line-height: 1.02;
    color: var(--ink);
    margin-bottom: 1.2rem;
}
.product__intro {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    font-weight: 500;
    line-height: 1.55;
    color: var(--plum);
    margin-bottom: 1.4rem;
}
.product__desc {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--ink-soft);
    margin-bottom: 2rem;
}
.product__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid var(--line);
}
.product__price-from {
    font-family: var(--font-logo);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--mauve-deep);
}
.product__price-value {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    color: var(--plum);
    line-height: 1;
}
.product__price-note {
    font-size: 0.82rem;
    color: var(--mute);
}
.product__materials { border-top: 1px solid var(--line); padding-top: 1.6rem; margin-bottom: 2.2rem; }
.product__materials-title {
    font-family: var(--font-logo);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mauve-deep);
    margin-bottom: 1rem;
}
.product__materials-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.product__materials-list li {
    font-size: 0.85rem;
    color: var(--ink-soft);
    padding: 0.45em 1em;
    background: var(--blush-soft);
    border-radius: 100px;
}
.product__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1rem; }
.product__note { font-size: 0.85rem; color: var(--mute); font-style: italic; }

/* full-bleed showcase */
.product-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.5rem, 1.5vw, 1rem);
    padding: 0 clamp(0.5rem, 1.5vw, 1rem);
    margin-bottom: clamp(3rem, 6vw, 5rem);
}
.product-showcase__item {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--blush-soft);
}
.product-showcase__item img { width: 100%; height: 100%; object-fit: cover; }

/* related designs (internal links) */
.product-related {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: clamp(2.5rem, 5vw, 4rem) var(--gutter) clamp(1rem, 2vw, 2rem);
}
.product-related__title { margin-top: 0.6rem; margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.product-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2.5vw, 2rem);
}
.product-related__card { display: block; }
.product-related__img {
    display: block;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: var(--blush-soft);
    margin-bottom: 0.9rem;
}
.product-related__img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s var(--ease);
}
.product-related__card:hover .product-related__img img { transform: scale(1.04); }
.product-related__cat {
    display: block;
    font-family: var(--font-logo);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mauve-deep);
    margin-bottom: 0.35rem;
}
.product-related__name {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--ink);
    line-height: 1.15;
}
.product-related__link {
    margin-top: clamp(1.8rem, 3vw, 2.5rem);
    font-size: 0.95rem;
    color: var(--mute);
}
.product-related__link a {
    color: var(--plum);
    border-bottom: 1px solid var(--mauve);
    transition: border-color 0.3s var(--ease);
}
.product-related__link a:hover { border-color: var(--plum); }

/* prev / next nav */
.product-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3rem) var(--gutter);
    border-top: 1px solid var(--line);
}
.product-nav__link {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: opacity 0.3s var(--ease);
}
.product-nav__link:hover { opacity: 0.65; }
.product-nav__link--next { justify-content: flex-end; text-align: right; }
.product-nav__label {
    display: block;
    font-family: var(--font-logo);
    font-size: 0.64rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mute);
    margin-bottom: 0.3rem;
}
.product-nav__name {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 1.4vw, 1.2rem);
    color: var(--ink);
    line-height: 1.1;
}
.product-nav__all {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    width: 26px; height: 26px;
    flex-shrink: 0;
}
.product-nav__all span { background: var(--mauve-deep); border-radius: 1px; transition: background 0.3s var(--ease); }
.product-nav__all:hover span { background: var(--plum); }

.arw-flip { transform: rotate(180deg); }

@media (max-width: 860px) {
    .product-hero { grid-template-columns: 1fr; }
    .product-hero__gallery { position: static; grid-template-columns: 1fr; }
    .product-hero__thumbs {
        flex-direction: row;
        order: 0;
        overflow-x: auto;
        padding-bottom: 0.3rem;
    }
    .pthumb { width: 72px; flex-shrink: 0; }
    .product-showcase { grid-template-columns: 1fr; }
    .product__name { font-size: clamp(1.8rem, 8vw, 2.4rem); word-break: break-word; }
    .product-nav__name { font-size: 0.9rem; }
    /* Related designs: keep 3 across but tighten spacing on tablet. */
    .product-related__grid { gap: clamp(0.6rem, 2vw, 1rem); }
    .product-related__name { font-size: clamp(0.85rem, 2.4vw, 1.05rem); }
    .product-related__cat { font-size: 0.56rem; }
}
@media (max-width: 480px) {
    .product-hero { padding-top: clamp(6rem, 20vw, 8rem); }
    /* Stack the inline article CTA buttons full-width for easy tapping. */
    .article-cta__actions { flex-direction: column; align-items: stretch; }
    .article-cta__actions .btn { width: 100%; justify-content: center; }
    /* On phones, let related designs scroll horizontally so images stay large. */
    .product-related__grid {
        grid-auto-flow: column;
        grid-auto-columns: 62%;
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0.9rem;
        margin: 0 calc(var(--gutter) * -1);
        padding: 0 var(--gutter) 0.5rem;
        -webkit-overflow-scrolling: touch;
    }
    .product-related__card { scroll-snap-align: start; }
    .product-related__name { font-size: 1rem; }
    .product-related__cat { font-size: 0.6rem; }
}

/* =====================================================================
   BLOG — index listing + article layout
   ===================================================================== */

/* ---- shared blog card (used on index + related) ---- */
.blog-card { display: block; background: var(--ivory); }
.blog-card__link { display: block; }
.blog-card__img {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--blush-soft);
}
.blog-card__img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.blog-card:hover .blog-card__img img,
.blog-card__link:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__body { display: block; padding: 1.5rem 1.5rem 1.75rem; }
.blog-card__eyebrow,
.blog-card__cat {
    font-family: var(--font-logo);
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mauve-deep);
}
.blog-card__eyebrow { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.7rem; }
.blog-card__dot { color: var(--line); }
.blog-card__read { color: var(--mute); letter-spacing: 0.14em; }
.blog-card__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 0.75rem;
}
.blog-card__excerpt {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-bottom: 1.25rem;
    display: block;
}
.blog-card__foot,
.blog-card__more { display: flex; align-items: center; }
.blog-card__foot { justify-content: space-between; }
.blog-card__foot time { font-size: 0.82rem; color: var(--mute); }
.blog-card__more {
    gap: 0.5rem;
    font-family: var(--font-logo);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--plum);
}
.blog-card__more .arw-sm { transition: transform 0.3s var(--ease); }
.blog-card:hover .blog-card__more .arw-sm,
.blog-card__link:hover .blog-card__more .arw-sm { transform: translateX(4px); }

/* ---- blog index header ---- */
.blog-head {
    padding: clamp(8rem, 16vw, 12rem) 0 clamp(2.5rem, 5vw, 4rem);
    background: var(--canvas);
    border-bottom: 1px solid var(--line);
    text-align: center;
}
.blog-head__inner { max-width: 820px; }
.blog-head__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.4rem, 6vw, 4rem);
    line-height: 1.05;
    color: var(--ink);
    margin: 1rem 0 1.25rem;
}
.blog-head__title em { font-style: italic; color: var(--plum); }
.blog-head__sub {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 620px;
    margin: 0 auto 1.5rem;
}
.blog-head__crumb { font-size: 0.85rem; color: var(--mute); }
.blog-head__crumb a { color: var(--plum); }

/* ---- blog index grid ---- */
.blog-grid-section { padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
}
.blog-card--index {
    border: 1px solid var(--line);
    transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.blog-card--index:hover {
    box-shadow: 0 22px 50px -30px rgba(46, 36, 40, 0.45);
    transform: translateY(-3px);
}

/* ---- article header ---- */
.article-head {
    padding: clamp(8rem, 15vw, 11rem) 0 clamp(1.5rem, 3vw, 2.5rem);
    background: var(--canvas);
    text-align: center;
}
.article-head__inner { max-width: 780px; }
.article-head__crumb { font-size: 0.82rem; color: var(--mute); margin-bottom: 1.5rem; }
.article-head__crumb a { color: var(--plum); }
.article-head__cat { display: inline-block; margin-bottom: 1rem; }
.article-head__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.9rem, 4.5vw, 3.1rem);
    line-height: 1.12;
    color: var(--ink);
    margin-bottom: 1.25rem;
}
.article-head__meta {
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--mute);
}
.article-head__meta time { color: var(--ink-soft); }

/* ---- featured image (also the OG share image) ---- */
.article-hero-img {
    max-width: var(--maxw);
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
    padding: 0 var(--gutter);
}
.article-hero-img img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    background: var(--blush-soft);
}

/* ---- article body typography ---- */
.article-body__inner { max-width: 720px; }
.article-body p,
.article-body li { color: var(--ink-soft); }
.article-body p {
    font-size: 1.06rem;
    line-height: 1.8;
    margin-bottom: 1.4rem;
}
.article-lead {
    font-size: 1.22rem !important;
    line-height: 1.7 !important;
    color: var(--ink) !important;
    margin-bottom: 1.8rem !important;
}
.article-body h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.2;
    color: var(--ink);
    margin: 2.6rem 0 1rem;
}
.article-body h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    color: var(--ink);
    margin: 1.8rem 0 0.7rem;
}
.article-body ul,
.article-body ol { margin: 0 0 1.5rem 0; padding-left: 1.4rem; }
.article-body li { font-size: 1.04rem; line-height: 1.7; margin-bottom: 0.6rem; }
.article-body ul li::marker { color: var(--mauve-deep); }
.article-body ol li::marker { color: var(--plum); font-family: var(--font-logo); }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body a {
    color: var(--plum);
    border-bottom: 1px solid var(--mauve);
    transition: border-color 0.3s var(--ease);
}
.article-body a:hover { border-color: var(--plum); }

/* ---- callout box ---- */
.article-callout {
    background: var(--blush-soft);
    border-left: 3px solid var(--mauve);
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
}
.article-callout--accent {
    background: var(--ink);
    border-left-color: var(--plum);
}
.article-body .article-callout--accent .article-callout__title,
.article-callout--accent .article-callout__title,
.article-callout--accent p,
.article-callout--accent li { color: var(--ivory); }
.article-callout--accent a { color: var(--mauve); border-bottom-color: rgba(217,167,176,0.5); }
.article-callout--accent a:hover { border-bottom-color: var(--mauve); }
.article-body .article-callout__title,
.article-callout__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--ink);
    margin: 0 0 0.7rem;
}
.article-callout p:last-child,
.article-callout ul:last-child,
.article-callout ol:last-child { margin-bottom: 0; }
.article-callout ul,
.article-callout ol { margin-bottom: 0; }

/* ---- inline CTA block ---- */
.article-cta {
    margin: 2.5rem 0;
    padding: 1.75rem;
    border: 1px solid var(--line);
    background: var(--canvas);
    text-align: center;
}
.article-cta__text {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.3rem !important;
    color: var(--ink) !important;
    margin-bottom: 1.1rem !important;
    line-height: 1.3 !important;
}
.article-cta__actions {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 0.9rem;
}
/* Primary CTA in the theme pink (mauve), with plum text for contrast.
   On hover the fill deepens to plum and the text goes ivory. */
.article-cta__actions .btn {
    --btn-bg: var(--mauve);
    --btn-fg: var(--plum);
    border-color: var(--mauve);
}
.article-cta__actions .btn::after { background: var(--plum); }
.article-cta__actions .btn:hover { color: var(--ivory); border-color: var(--plum); }
/* Secondary (WhatsApp) ghost button: soft mauve outline instead of a hard dark
   border, so it sits comfortably on the light callout background. */
.article-cta__actions .btn--ghost {
    --btn-bg: transparent;
    --btn-fg: var(--plum);
    border-color: var(--mauve);
}
.article-cta__actions .btn--ghost::after { background: var(--mauve); }
.article-cta__actions .btn--ghost:hover { color: var(--ink); border-color: var(--mauve); }

/* ---- FAQ ---- */
.article-faq { margin: 1rem 0 1.5rem; }
.article-faq__item {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--line);
}
.article-faq__item:first-child { border-top: 1px solid var(--line); }
.article-faq__q {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.15rem !important;
    color: var(--ink) !important;
    margin: 0 0 0.6rem !important;
}
.article-faq p { margin-bottom: 0; }

/* ---- checklist ---- */
.article-checklist { list-style: none; padding-left: 0 !important; }
.article-checklist li {
    position: relative;
    padding-left: 1.9rem;
    margin-bottom: 0.7rem;
}
.article-checklist li::before {
    content: "";
    position: absolute;
    left: 0; top: 0.5em;
    width: 0.85rem; height: 0.5rem;
    border-left: 2px solid var(--plum);
    border-bottom: 2px solid var(--plum);
    transform: rotate(-45deg);
}
.article-callout--accent .article-checklist li::before { border-color: var(--mauve); }

/* ---- related articles ---- */
.article-related {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: clamp(3rem, 6vw, 5rem) var(--gutter);
    border-top: 1px solid var(--line);
}
.article-related__title { margin: 0.6rem 0 clamp(1.5rem, 3vw, 2.5rem); }
.article-related__title em { font-style: italic; color: var(--plum); }
.article-related__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
}
.article-related .blog-card {
    border: 1px solid var(--line);
    transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.article-related .blog-card:hover {
    box-shadow: 0 22px 50px -30px rgba(46, 36, 40, 0.45);
    transform: translateY(-3px);
}
.article-related .blog-card__title { font-size: clamp(1.1rem, 1.6vw, 1.35rem); }

/* ---- blog responsive ---- */
@media (max-width: 780px) {
    .blog-grid { grid-template-columns: 1fr; }
    .article-related__grid { grid-template-columns: 1fr; }
    .article-cta__text { font-size: 1.15rem !important; }
}
