/* =====================================================================
   Law Aura Collection — Design System
   Premium · Modern · Minimal · Feminine · Timeless
   Type: Cormorant Garamond (headings) · Montserrat (body / UI)
   ===================================================================== */

:root {
    /* Brand palette (soft, pastel tones per brand brief) */
    --cream: #f8f5f2;
    --cream-pink: #fff7f5;
    --taupe: #c8b8aa;
    --taupe-soft: #e7ddd3;
    --gold: #c9a96e;
    --gold-deep: #b08f55;
    --brown: #332a24;
    --charcoal: #2d2d2d;
    --mist: #dee3e4;
    --navy: #232a3e;

    --ink: #2d2d2d;
    --ink-soft: #6f655d;
    --ink-faint: #786d61; /* AA contrast (~4.6:1 on white) */
    --gold-text: #8a6a2f; /* AA-safe gold for small UI text (eyebrows, labels) */
    --line: #e9e2d9;
    --line-strong: #ddd2c5;
    --focus-ring: #8a6a2f;

    --surface: #ffffff;
    --bg: var(--cream);

    /* Typography */
    --font-head: "Cormorant Garamond", "Times New Roman", serif;
    --font-body: "Montserrat", -apple-system, "Segoe UI", sans-serif;

    /* Spacing & layout */
    --container: 1240px;
    --container-narrow: 880px;
    --gutter: clamp(1.25rem, 4vw, 3rem);
    --section-y: clamp(3.5rem, 8vw, 7rem);
    --radius: 4px;
    --radius-lg: 8px;

    /* Motion */
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --t-fast: 0.25s var(--ease);
    --t-med: 0.45s var(--ease);

    --shadow-soft: 0 18px 50px -28px rgba(51, 42, 36, 0.35);
}

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button {
    font-family: inherit;
    cursor: pointer;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    font-weight: 500;
    line-height: 1.12;
    color: var(--charcoal);
    margin: 0 0 0.5em;
    letter-spacing: 0.01em;
}

h1 {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    font-weight: 500;
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
}

h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    letter-spacing: 0.02em;
    line-height: 1.4;
}

p {
    margin: 0 0 1.1em;
    color: var(--ink-soft);
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-text);
    margin: 0 0 1.2rem;
    display: inline-block;
}

.lede {
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    color: var(--ink-soft);
}

.script-accent {
    font-family: var(--font-head);
    font-style: italic;
}

/* ---------- Layout helpers ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.section {
    padding-block: var(--section-y);
}

.section--tight {
    padding-block: clamp(2.5rem, 5vw, 4rem);
}

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

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

.section--paper {
    background: var(--surface);
}

.section-head {
    max-width: 640px;
    margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.section-head--center {
    margin-inline: auto;
    text-align: center;
}

.section-head p {
    margin-bottom: 0;
}

.text-center {
    text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
    --btn-bg: var(--charcoal);
    --btn-fg: var(--cream);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6em;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 1.05em 2.4em;
    background: var(--btn-bg);
    color: var(--btn-fg);
    border: 1px solid var(--btn-bg);
    border-radius: var(--radius);
    transition: background var(--t-fast), color var(--t-fast),
        border-color var(--t-fast), transform var(--t-fast);
    cursor: pointer;
    line-height: 1;
}

.btn:hover {
    background: var(--gold-deep);
    border-color: var(--gold-deep);
    color: #fff;
}

.btn--outline {
    --btn-bg: transparent;
    --btn-fg: var(--charcoal);
    border-color: var(--line-strong);
}

.btn--outline:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--cream);
}

.btn--light {
    --btn-bg: var(--cream);
    --btn-fg: var(--charcoal);
    border-color: var(--cream);
}

.btn--ghost-light {
    --btn-bg: transparent;
    --btn-fg: var(--cream);
    border-color: rgba(248, 245, 242, 0.4);
}

.btn--ghost-light:hover {
    background: var(--cream);
    border-color: var(--cream);
    color: var(--charcoal);
}

.btn--sm {
    padding: 0.8em 1.7em;
    font-size: 0.72rem;
}

.btn--block {
    display: flex;
    width: 100%;
}

.link-more {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--charcoal);
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    position: relative;
}

.link-more::after {
    content: "";
    width: 1.6em;
    height: 1px;
    background: currentColor;
    transition: width var(--t-fast);
}

.link-more:hover {
    color: var(--gold-deep);
}

.link-more:hover::after {
    width: 2.6em;
}

/* ---------- Skip link ---------- */
.skip-link {
    position: absolute;
    left: 1rem;
    top: -100px;
    z-index: 100;
    background: var(--charcoal);
    color: var(--cream);
    padding: 0.7rem 1.2rem;
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 500;
    transition: top var(--t-fast);
}

.skip-link:focus {
    top: 1rem;
    color: var(--cream);
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(248, 245, 242, 0.86);
    backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--t-fast), background var(--t-fast);
}

.site-header.is-scrolled {
    background: rgba(248, 245, 242, 0.96);
    border-bottom-color: var(--line);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: 84px;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
}

.brand-logo img {
    height: 38px;
    width: auto;
}

.nav {
    display: none;
    align-items: center;
    gap: clamp(1.4rem, 2.4vw, 2.6rem);
}

.nav a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--ink);
    position: relative;
    padding-block: 0.4rem;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold-deep);
    transition: width var(--t-fast);
}

.nav a:hover,
.nav a.is-active {
    color: var(--gold-deep);
}

.nav a:hover::after,
.nav a.is-active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--ink);
    border-radius: 50%;
    transition: background var(--t-fast), color var(--t-fast);
}

.icon-btn:hover {
    background: var(--taupe-soft);
    color: var(--charcoal);
}

.icon-btn svg {
    width: 20px;
    height: 20px;
}

.nav-toggle {
    display: inline-flex;
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: var(--cream);
    /* Hidden in place (no off-screen transform) so it never creates
       horizontal overflow — which would otherwise need root clipping and
       break the sticky header. */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity var(--t-med), transform var(--t-med),
        visibility var(--t-med);
    display: flex;
    flex-direction: column;
    padding: 1.5rem var(--gutter) 3rem;
}

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

.mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
}

.mobile-menu__top img {
    height: 34px;
    width: auto;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 2rem;
}

.mobile-nav a {
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--charcoal);
    padding-block: 0.55rem;
    border-bottom: 1px solid var(--line);
}

.mobile-nav a:hover {
    color: var(--gold-deep);
}

.mobile-menu__footer {
    margin-top: auto;
    font-size: 0.85rem;
    color: var(--ink-soft);
    line-height: 1.9;
}

.menu-open {
    overflow: hidden;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: clamp(560px, 86vh, 860px);
    display: flex;
    align-items: flex-end;
    color: var(--cream);
    overflow: hidden;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        /* Localized scrim anchored to the lower-left, where the copy sits —
           keeps the lace piece (upper-right) luminous while making the text
           legible. */
        linear-gradient(
            115deg,
            rgba(38, 29, 22, 0.55) 0%,
            rgba(38, 29, 22, 0.14) 46%,
            rgba(38, 29, 22, 0) 72%
        ),
        /* Base vertical darkening, strongest toward the bottom. */
        linear-gradient(
            180deg,
            rgba(38, 29, 22, 0.18) 0%,
            rgba(38, 29, 22, 0.30) 45%,
            rgba(38, 29, 22, 0.72) 100%
        );
}

.hero__inner {
    padding-bottom: clamp(3rem, 8vw, 6rem);
    padding-top: clamp(4rem, 10vw, 7rem);
    max-width: 640px;
}

.hero .eyebrow {
    color: var(--taupe-soft);
    text-shadow: 0 1px 16px rgba(30, 20, 14, 0.45);
}

.hero h1 {
    color: var(--cream);
    margin-bottom: 0.4em;
    text-shadow: 0 1px 2px rgba(30, 20, 14, 0.25),
        0 2px 30px rgba(30, 20, 14, 0.4);
}

.hero p {
    text-shadow: 0 1px 18px rgba(30, 20, 14, 0.4);
}

.hero p {
    color: rgba(248, 245, 242, 0.9);
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    max-width: 30em;
    margin-bottom: 2rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.scroll-cue {
    position: absolute;
    bottom: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(248, 245, 242, 0.75);
    display: none;
}

/* ---------- Value strip ---------- */
.values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
}

.value h3 {
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    color: var(--charcoal);
    margin-bottom: 0.3rem;
}

.value p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.value__mark {
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-text);
    margin-bottom: 0.8rem;
}

/* ---------- Product slider ---------- */
.collection {
    margin-top: clamp(2rem, 4vw, 3rem);
}

.collection__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.6rem;
}

.collection__head h2 {
    margin-bottom: 0.1em;
}

.collection__head .eyebrow {
    margin-bottom: 0.6rem;
}

.slider {
    position: relative;
}

.slider__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 0.5rem;
    /* Cards stay within the container gutter so they line up with the
       section headings (no edge-bleed misalignment on mobile). */
    scrollbar-width: none;
}

.slider__track::-webkit-scrollbar {
    display: none;
}

.slider__track > * {
    scroll-snap-align: start;
}

.slider__nav {
    display: none;
    gap: 0.5rem;
}

.slider__btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    background: var(--surface);
    color: var(--charcoal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t-fast), color var(--t-fast),
        opacity var(--t-fast);
}

.slider__btn:hover {
    background: var(--charcoal);
    color: var(--cream);
}

.slider__btn[disabled] {
    opacity: 0.35;
    cursor: default;
}

.slider__btn:hover[disabled] {
    background: var(--surface);
    color: var(--charcoal);
}

.slider__btn svg {
    width: 18px;
    height: 18px;
}

/* ---------- Product card ---------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 2.5vw, 1.75rem) clamp(0.75rem, 2vw, 1.5rem);
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card__media {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--taupe-soft);
    border-radius: var(--radius);
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--ease);
}

.product-card:hover .product-card__media img {
    transform: scale(1.05);
}

.product-card__badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: rgba(248, 245, 242, 0.92);
    color: var(--brown);
    padding: 0.4em 0.85em;
    border-radius: 999px;
}

.product-card__overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1rem;
    display: flex;
    justify-content: center;
    transform: translateY(120%);
    transition: transform var(--t-med);
}

.product-card:hover .product-card__overlay,
.product-card:focus-within .product-card__overlay {
    transform: translateY(0);
}

/* On touch devices there is no hover; rely on the always-visible "İncele"
   link in the card body instead of a dead overlay button. */
@media (hover: none) {
    .product-card__overlay {
        display: none;
    }
}

.product-card__body {
    padding-top: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1 1 auto;
}

.product-card__cat {
    font-size: 0.64rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

.product-card__name {
    font-family: var(--font-head);
    font-size: 1.32rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.25;
}

.product-card__desc {
    font-size: 0.85rem;
    color: var(--ink-soft);
    margin: 0.15rem 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__foot {
    margin-top: auto;
    padding-top: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.product-card__price {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    color: var(--charcoal);
}

/* ---------- Split / editorial band ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.75rem, 4vw, 3.5rem);
    align-items: center;
}

.split__media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.split__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split__media--tall {
    aspect-ratio: 3 / 4;
}

.split__body h2 {
    margin-bottom: 0.5em;
}

.split--reverse .split__media {
    order: -1;
}

/* ---------- Quote / philosophy ---------- */
.philosophy {
    text-align: center;
    max-width: 760px;
    margin-inline: auto;
}

.philosophy p {
    font-family: var(--font-head);
    font-size: clamp(1.4rem, 3.2vw, 2.3rem);
    line-height: 1.45;
    color: var(--charcoal);
    font-style: italic;
    overflow-wrap: break-word;
}

.philosophy cite {
    display: block;
    margin-top: 1.5rem;
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold-text);
}

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 4rem);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item__icon {
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-deep);
}

.contact-item__icon svg {
    width: 20px;
    height: 20px;
}

.contact-item h3 {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 0.25rem;
}

.contact-item p,
.contact-item a {
    margin: 0;
    color: var(--charcoal);
    font-size: 1rem;
}

.contact-item a:hover {
    color: var(--gold-deep);
}

/* ---------- Forms ---------- */
.field {
    margin-bottom: 1.25rem;
}

.field label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 0.5rem;
}

.input,
.textarea,
.select {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--surface);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.input:focus,
.textarea:focus,
.select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.18);
}

.input:focus-visible,
.textarea:focus-visible,
.select:focus-visible {
    outline: 2px solid var(--focus-ring);
    outline-offset: 2px;
}

/* Visible keyboard focus for all interactive elements */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.icon-btn:focus-visible,
.link-more:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--focus-ring);
    outline-offset: 3px;
    border-radius: 2px;
}

.search-bar:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.18);
}

.textarea {
    min-height: 150px;
    resize: vertical;
}

.field__error {
    color: #a4543f;
    font-size: 0.8rem;
    margin-top: 0.4rem;
}

.form-note {
    font-size: 0.8rem;
    color: var(--ink-faint);
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    padding: 0.4rem 0.4rem 0.4rem 1.1rem;
    background: var(--surface);
}

.search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--charcoal);
}

.search-bar input:focus {
    outline: none;
}

/* ---------- Alerts ---------- */
.alert {
    padding: 0.9rem 1.2rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid transparent;
}

.alert--success {
    background: #eef3ec;
    border-color: #cdddc6;
    color: #41603a;
}

.alert--error {
    background: #f7ece8;
    border-color: #e6cabf;
    color: #8f4631;
}

/* ---------- Toast ---------- */
.toast {
    position: fixed;
    left: 50%;
    bottom: clamp(1.25rem, 4vw, 2.5rem);
    z-index: 80;
    transform: translate(-50%, 1.5rem);
    opacity: 0;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    width: min(440px, calc(100vw - 2rem));
    padding: 1rem 1.1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 24px 60px -28px rgba(51, 42, 36, 0.5);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.toast__icon {
    flex: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef3ec;
    color: #4b7548;
}

.toast--error .toast__icon {
    background: #f7ece8;
    color: #a4543f;
}

.toast__icon svg { width: 20px; height: 20px; }

.toast__text {
    margin: 0;
    flex: 1;
    font-size: 0.92rem;
    line-height: 1.45;
    color: var(--charcoal);
}

.toast__close {
    flex: none;
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    color: var(--ink-faint);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--t-fast), color var(--t-fast);
}

.toast__close:hover { background: var(--taupe-soft); color: var(--charcoal); }
.toast__close svg { width: 16px; height: 16px; }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--brown);
    color: rgba(248, 245, 242, 0.78);
    padding-top: clamp(3rem, 6vw, 5rem);
    font-size: 0.9rem;
}

.site-footer a {
    color: rgba(248, 245, 242, 0.78);
}

.site-footer a:hover {
    color: var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer-brand img {
    height: 42px;
    width: auto;
    margin-bottom: 1.2rem;
}

.footer-brand p {
    color: rgba(248, 245, 242, 0.7);
    max-width: 34em;
    font-size: 0.9rem;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 1.1rem;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-contact p {
    margin: 0 0 0.7rem;
    color: rgba(248, 245, 242, 0.78);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(248, 245, 242, 0.14);
    padding-block: 1.6rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(248, 245, 242, 0.6);
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
    background: var(--cream-pink);
    padding-block: clamp(3rem, 7vw, 6rem) clamp(2rem, 4vw, 3rem);
    text-align: center;
    border-bottom: 1px solid var(--line);
}

.page-hero .eyebrow {
    margin-bottom: 0.8rem;
}

.page-hero h1 {
    margin-bottom: 0.3em;
}

.page-hero p {
    max-width: 40em;
    margin-inline: auto;
    margin-bottom: 0;
}

.breadcrumb {
    font-size: 0.74rem;
    letter-spacing: 0.06em;
    color: var(--ink-faint);
    margin-bottom: 1rem;
}

.breadcrumb a:hover {
    color: var(--gold-deep);
}

/* ---------- Prose (legal pages) ---------- */
.prose {
    max-width: var(--container-narrow);
}

.prose h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-top: 2.4rem;
}

.prose h3 {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1.3rem;
    margin-top: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.prose p,
.prose li {
    color: var(--ink-soft);
    font-size: 0.96rem;
    line-height: 1.85;
}

.prose ul {
    padding-left: 1.2rem;
    margin-bottom: 1.4rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose strong {
    color: var(--charcoal);
    font-weight: 600;
}

/* ---------- Reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* =====================================================================
   Responsive
   ===================================================================== */
@media (min-width: 560px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .slider__track {
        grid-auto-columns: 42%;
    }
}

@media (min-width: 768px) {
    .values {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }

    .contact-grid {
        grid-template-columns: 0.9fr 1.1fr;
    }

    .scroll-cue {
        display: block;
    }
}

@media (min-width: 880px) {
    .split {
        grid-template-columns: 1fr 1fr;
    }

    .split--reverse .split__media {
        order: 0;
    }

    .footer-grid {
        grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
        gap: 3rem;
    }
}

/* ---------- Mobile-only refinements ---------- */
@media (max-width: 767px) {
    /* Hero: frame the lace piece (right side of the image) instead of the
       empty wall, and keep the banner a touch shorter / less zoomed. */
    .hero {
        min-height: clamp(480px, 72vh, 620px);
    }

    .hero__media img {
        object-position: 84% 24%;
    }

    /* The home contact strip repeats the footer's address/phone/e-mail.
       Hide the duplicate icon list on mobile to avoid a long, repetitive tail. */
    .contact-info--strip {
        display: none;
    }

    /* Compact contact items on small screens */
    .contact-item {
        gap: 0.85rem;
    }

    .contact-item__icon {
        width: 40px;
        height: 40px;
    }

    .contact-info {
        gap: 1.2rem;
    }

    /* Trim a little vertical air between sections on phones */
    .section {
        padding-block: clamp(2.75rem, 9vw, 4rem);
    }

    /* Keep the philosophy quote comfortably within the screen */
    .philosophy p {
        font-size: 1.3rem;
        line-height: 1.5;
    }
}

@media (min-width: 992px) {
    .nav {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .slider__nav {
        display: inline-flex;
    }

    .slider__track {
        grid-auto-columns: minmax(0, 1fr);
        grid-template-columns: repeat(4, 1fr);
        overflow: visible;
        margin-inline: 0;
        padding-inline: 0;
    }

    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
