:root {
    --white: #FFFFFF;
    --off-white: #F2F2F2;
    --cream: #F7F0BA;
    --beige: #f9f4e1;
    --form-bg: #f7f4ed;
    --gold-light: #F4DD7B;
    --gold: #F2C224;
    --gold-deep: #EEB016;
    --amber: #E69208;
    --gray-light: #A5A2A2;
    --gray: #666364;
    --black: #2B2B2B;
    --dark-brown: #1a1512;
    --dark-shade: #15110f;
    --font-display: 'Cinzel Decorative', serif;
    --font-body: 'Poppins', sans-serif;
    --h1-size: clamp(2.05rem, 4vw + 0.45rem, 3.6rem);
    --home-h1-size: var(--h1-size);
    --body-size: 1rem;
    --body-weight: 300;
    --body-line-height: 1.7;
    --navbar-offset: 104px;
    --label-gap: 1.5rem;
    --btn-padding-y: 1.1rem;
    --btn-padding-x: 2.2rem;
    --btn-font-size: 0.8rem;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 20px 50px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 30px 60px rgba(0, 0, 0, 0.25);
}
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    font-family: var(--font-body);
    font-weight: var(--body-weight);
    color: var(--black);
    background: var(--off-white);
    line-height: var(--body-line-height);
    overflow-x: clip;
}
html, body {
    max-width: 100vw;
    overflow-x: clip;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1.3;
    padding-bottom: 0.08em;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: manual;
}
h1 { font-size: var(--h1-size); }
h2 { font-size: clamp(1.5rem, 3vw + 0.3rem, 2.5rem); }
h3 { font-size: clamp(1.1rem, 1.5vw + 0.3rem, 1.5rem); }
h4 { font-size: clamp(1rem, 1.2vw + 0.3rem, 1.3rem); }
h5 { font-size: clamp(0.95rem, 1vw + 0.25rem, 1.15rem); }
h6 { font-size: clamp(0.9rem, 0.8vw + 0.2rem, 1rem); }
h1 *, h2 *, h3 *, h4 *, h5 *, h6 *,
.hero__title *, .section__title *, .newsletter__title *,
.contact__title *, .ingrid-collection__title *, .story__title *,
.philosophy-subtitle *, .philosophy-section__title *,
.press-item__title *, .press-card__title * {
    font-family: inherit;
    color: inherit;
}
h1,
.hero__title,
.section__title,
.newsletter__title,
.contact__title,
.ingrid-collection__title,
.story__title,
.philosophy-subtitle,
.press-item__title,
.page-header .section__header h1 {
    font-family: var(--font-display);
    font-size: var(--h1-size);
    line-height: 1.25;
    letter-spacing: 0.05em;
}
p {
    margin-bottom: 1rem;
    font-size: var(--body-size);
    font-weight: var(--body-weight);
    line-height: var(--body-line-height);
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.9rem max(6%, calc((100vw - 1400px) / 2));
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
    background: var(--white);
}
.navbar.scrolled {
    background: var(--white);
    padding: 0.7rem max(6%, calc((100vw - 1400px) / 2));
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}
.navbar--hidden {
    transform: translateY(-100%);
}
.logo {
    display: inline-flex;
    align-items: center;
    color: var(--black);
    transition: var(--transition-smooth);
}
.logo::after {
    content: none;
}
.logo img {
    width: 75px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}
.logo:hover {
    opacity: 1;
}
.logo:hover img {
    transform: scale(1.04);
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}
.nav-links a {
    color: var(--black);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    padding: 0.4rem 0;
    transition: color 0.3s ease;
}
.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover {
    color: var(--gold-deep);
}
.nav-links a:hover::before {
    transform: scaleX(1);
}
.nav-dropdown {
    position: relative;
    padding-bottom: 0.8rem;
    margin-bottom: -0.8rem;
}
.dropdown-toggle {
    background: transparent;
    border: none;
    color: var(--black);
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    padding: 0.4rem 0;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.dropdown-toggle::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform 0.2s ease;
}
.nav-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}
.dropdown-toggle:hover {
    color: var(--gold);
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -1rem;
    min-width: 200px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    list-style: none;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: var(--black);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.2s ease;
}
.dropdown-menu a:hover {
    color: var(--gold);
    background: var(--cream);
}
.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-lang {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}
.lang-dropdown {
    position: relative;
}
.lang-current {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.8rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}
.lang-current:hover {
    opacity: 0.7;
}
.lang-current[aria-expanded="true"] {
    opacity: 0.7;
}
.lang-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    display: block;
}
.lang-text {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--black);
}
.lang-arrow {
    width: 8px;
    height: auto;
    color: var(--black);
    transition: transform 0.2s ease;
}
.lang-current[aria-expanded="true"] .lang-arrow {
    transform: rotate(180deg);
}
.lang-menu {
    position: absolute;
    top: calc(100% + 0.3rem);
    right: 0;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    min-width: 80px;
}
.lang-current[aria-expanded="true"] + .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.7rem 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    text-decoration: none;
    box-sizing: border-box;
}
.lang-menu a.lang-option {
    padding: 0.7rem 1rem;
}
.lang-option:hover {
    background: var(--cream);
}
.lang-option .lang-flag {
    width: 20px;
    height: 14px;
}
.lang-option .lang-text {
    font-size: 0.7rem;
}
.nav-links__logo {
    display: none;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: 0;
    cursor: pointer;
    line-height: 0;
    padding: 10px;
    z-index: 1001;
}
.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--black);
    transition: var(--transition-smooth);
    transform-origin: center;
}
.menu-toggle.active span {
    background: var(--white);
}
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: var(--btn-padding-y) var(--btn-padding-x);
    font-family: var(--font-body);
    font-size: var(--btn-font-size);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    min-height: 48px;
    line-height: 1.2;
}
.section__subtitle + .btn,
p + .btn,
ul + .btn {
    margin-top: 1.5rem;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--gold);
    transform: translateY(101%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}
.btn:hover {
    color: var(--black);
}
.btn:hover::before {
    transform: translateY(0);
}
.btn-arrow {
    transition: transform 0.3s ease;
    font-size: 1.2em;
}
.btn:hover .btn-arrow {
    transform: translateX(5px);
}
.btn--dark {
    border-color: var(--black);
    color: var(--black);
}
.btn--dark::before {
    background: var(--black);
}
.btn--dark:hover {
    color: var(--white);
}
.btn--filled {
    background: var(--gold);
    color: var(--black);
}
.btn--filled::before {
    background: var(--black);
}
.btn--filled:hover {
    color: var(--gold);
    border-color: var(--black);
}
.btn--outline {
    border-color: var(--white);
    color: var(--white);
    background: transparent;
}
.btn--outline::before {
    background: var(--white);
}
.btn--outline:hover {
    color: var(--black);
}
.btn--gold {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}
.btn--gold::before {
    background: var(--gold-deep);
}
.btn--gold:hover {
    background: var(--gold-deep);
    border-color: var(--gold-deep);
    color: var(--black);
}
.hero {
    height: auto;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--dark-brown);
}

@media (max-height: 700px) {
    .hero {
        min-height: 70vh;
        align-items: flex-start;
        padding-top: 4.5rem;
    }
    .hero__content {
        padding-top: 0;
    }
    .navbar {
        padding: 0.3rem 4%;
    }
    .logo img {
        width: 42px;
    }
    .nav-links a {
        font-size: 0.65rem;
        letter-spacing: 0.07em;
    }
}
.hero__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}
.hero__bg picture {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero__image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}
.hero__slide {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    opacity: 0;
    transition: none;
}
.hero__slide.is-active {
    opacity: 1;
}
.hero__slide > img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.hero--home .hero__slide {
    transform: none;
    filter: none;
    transition: none;
}
.hero--home .hero__slide.is-active {
    opacity: 1;
}
.home-page .hero--home .hero__slide--ingrid > img {
    object-position: left center;
    transform: scale(1.18);
    transform-origin: left center;
}
.hero--home .hero__overlay {
    background:
        linear-gradient(
            90deg,
            rgba(12, 9, 8, 0.84) 0%,
            rgba(12, 9, 8, 0.55) 32%,
            rgba(12, 9, 8, 0.14) 58%,
            transparent 76%
        ),
        linear-gradient(
            to top,
            rgba(26, 21, 18, 0.62) 0%,
            rgba(26, 21, 18, 0.28) 24%,
            transparent 46%
        );
}
.home-page h1,
.home-page h2,
.home-page h3 {
    font-family: var(--font-display);
}
.home-page .hero__title,
.home-page .ingrid-collection__title,
.home-page .section__title,
.home-page .newsletter__title,
.home-page .story__title {
    font-size: var(--home-h1-size);
    line-height: 1.25;
    letter-spacing: 0.05em;
}
.home-page .hero--home .hero__content {
    max-width: 540px;
    padding: 2rem 2.2rem 4.5rem;
    background: linear-gradient(90deg, rgba(12, 9, 8, 0.64) 0%, rgba(12, 9, 8, 0.34) 72%, rgba(12, 9, 8, 0) 100%);
}
.home-page .hero--home .hero__title {
    color: var(--gold);
    margin-bottom: 1rem;
    max-width: 10ch;
}
.home-page .hero--home .hero__subtitle {
    max-width: 26rem;
}
.home-page .hero--home .hero__buttons {
    gap: 0.9rem;
}
.hero__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background:
        linear-gradient(
            to top,
            rgba(26, 21, 18, 0.5) 0%,
            rgba(26, 21, 18, 0.2) 12%,
            transparent 30%
        );
    z-index: 2;
}
.hero__content {
    position: relative;
    z-index: 3;
    margin-left: 5%;
    padding-bottom: 5rem;
    max-width: 500px;
}
.hero__tagline {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
    border-radius: 0;
}
.hero__tagline::before {
    content: '';
    width: 50px;
    height: 1px;
    background: var(--gold);
}
.hero__title {
    font-size: var(--h1-size);
    color: var(--gold);
    line-height: 1.25;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero__title span {
    display: block;
    opacity: 1;
    animation: titleReveal 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero__title--animated {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3em;
}
.hero__title--animated .word {
    display: inline-block;
    opacity: 1;
    animation: wordFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (prefers-reduced-motion: reduce) {
    .hero__title span,
    .hero__title--animated .word {
        animation: none;
        opacity: 1;
        transform: none;
        clip-path: none;
    }
}
.hero__title--animated .word:nth-child(1) { animation-delay: 1.2s; }
.hero__title--animated .word:nth-child(2) { animation-delay: 1.6s; }
.hero__title--animated .word:nth-child(3) { animation-delay: 2.0s; }
.hero__title--animated .word:nth-child(4) { animation-delay: 2.4s; }
.hero__title--animated .word:nth-child(5) { animation-delay: 2.8s; }
@keyframes wordFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--off-white);
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.7;
    letter-spacing: 0.02em;
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s forwards;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}
.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 2s forwards;
}
.hero__buttons .btn {
    opacity: 1;
    animation: none;
}
.back-to-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--black);
    color: var(--gold);
    border: 1px solid rgba(242, 194, 36, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    line-height: 1;
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transition: var(--transition-smooth);
}
body.nav-open .back-to-top {
    opacity: 0;
    pointer-events: none;
}
.back-to-top:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}
.section {
    padding: 6rem 5%;
    position: relative;
}
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}
.section--dark {
    background: var(--black);
    color: var(--white);
}
.section--dark::before {
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.6;
}
.section--light {
    background: var(--white);
}
.section--cream {
    background: linear-gradient(180deg, var(--off-white) 0%, var(--cream) 100%);
}
.section__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}
.section__label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-brown);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: var(--label-gap);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.section__label::before,
.section__label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: currentColor;
}
.section__label--left {
    justify-content: flex-start;
}
.section__label--left::after {
    display: none;
}
.section__label--alt {
    color: var(--gold-deep);
}
.section__title {
    margin-bottom: 1.5rem;
}
.section--dark .section__title,
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark h5,
.section--dark h6 {
    color: var(--gold);
}
.section__subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}
.section--dark .section__subtitle {
    color: var(--gray-light);
}
.section--dark .section__label {
    color: var(--gold);
}

.philosophy-section {
    background: linear-gradient(135deg, #0d0b09 0%, var(--black) 50%, #1a1512 100%);
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
}
.philosophy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}
.philosophy-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(242, 194, 36, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.philosophy-section__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 1;
}
.philosophy-section__content {
    padding-top: 2rem;
}
.philosophy-section__label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 3rem;
}
.philosophy-section__label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 1px;
    background: var(--gold);
}
.philosophy-section__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--gold);
    line-height: 1.25;
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
}
.philosophy-section__text {
    margin-bottom: 2.5rem;
}
.philosophy-section__text p {
    font-size: 1rem;
    color: var(--off-white);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-weight: 300;
}
.philosophy-section__text p:last-child {
    margin-bottom: 0;
}
.philosophy-section__quote {
    position: relative;
    padding: 2rem 0;
    margin: 2.5rem 0;
    border-top: 1px solid rgba(242, 194, 36, 0.2);
    border-bottom: 1px solid rgba(242, 194, 36, 0.2);
}
.philosophy-section__quote p {
    font-size: var(--body-size);
    font-weight: var(--body-weight);
    font-style: italic;
    color: var(--off-white);
    line-height: 1.7;
    margin: 0;
    position: relative;
    padding-left: 1.5rem;
}
.philosophy-section__quote p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-deep));
}
.philosophy-section__content .btn {
    margin-top: 1rem;
}
.philosophy-section__visual {
    position: relative;
    max-width: 100%;
    margin-left: 0;
}
.philosophy-section__visual img {
    width: 100%;
    height: auto;
    opacity: 1;
}
.philosophy-section__visual::before,
.philosophy-section__visual::after {
    display: none;
}
.philosophy-section--expanded {
    padding: 6rem 5%;
}
.philosophy-hero {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 3.5rem;
    align-items: stretch;
    min-height: clamp(480px, 70vh, 680px);
}
.philosophy-hero__content p {
    color: var(--off-white);
    line-height: 1.9;
}
.philosophy-highlight {
    margin: 2.5rem 0;
    padding: 1.5rem;
    border: 1px solid rgba(242, 194, 36, 0.3);
    background: rgba(255, 255, 255, 0.04);
}
.philosophy-highlight h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 1rem;
    line-height: 1.5;
}
.philosophy-subtitle {
    color: var(--gold);
    margin: 2rem 0 1rem;
}
.philosophy-quote {
    font-style: italic;
    color: var(--gold-light);
    margin-top: 1.5rem;
}
.philosophy-footnote {
    font-size: 0.75rem;
    color: var(--gray-light);
    line-height: 1.6;
    margin-top: 2rem;
}
.philosophy-hero__media {
    height: 100%;
}
.philosophy-hero__media a {
    display: block;
    height: 100%;
}
.philosophy-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-strong);
}
.philosophy-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}
.philosophy-step {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: stretch;
}
.philosophy-step__media {
    min-height: clamp(320px, 55vh, 520px);
}
.philosophy-step__media a {
    display: block;
    height: 100%;
}
.philosophy-step__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-strong);
}
.philosophy-step__content {
    align-self: center;
}
.philosophy-step__content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}
.philosophy-step__content p {
    color: var(--off-white);
    line-height: 1.85;
    font-weight: 300;
    font-size: 1rem;
}
.philosophy-step__content .philosophy-badges {
    justify-content: flex-start;
    margin: 0;
}
.philosophy-step__content .philosophy-cta {
    text-align: left;
    margin-top: 1.5rem;
}
.philosophy-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.philosophy-gallery__item {
    margin: 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(242, 194, 36, 0.2);
}
.philosophy-gallery__item img {
    width: 100%;
    height: clamp(260px, 60vh, 520px);
    object-fit: cover;
}
.philosophy-gallery__item:last-child {
    grid-column: auto;
}
.philosophy-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3.5rem auto 0;
}
.philosophy-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 2rem;
}
.philosophy-card h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
}
.philosophy-card p {
    color: var(--gray);
    line-height: 1.7;
}
.philosophy-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 900px;
    margin: 3rem auto 0;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--gold);
}
.philosophy-cta {
    text-align: center;
    margin-top: 2rem;
}
@media (max-width: 1024px) {
    .philosophy-section__inner {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .philosophy-section__visual {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    .philosophy-section__content {
        text-align: center;
        padding-top: 0;
    }
    .philosophy-section__label {
        padding-left: 0;
    }
    .philosophy-section__label::before {
        display: none;
    }
    .philosophy-section__quote p {
        padding-left: 0;
    }
    .philosophy-section__quote p::before {
        display: none;
    }
    .philosophy-section__content .btn {
        margin: 1rem auto 0;
    }
}
@media (max-width: 768px) {
    .philosophy-section {
        padding: 5rem 5%;
    }
    .philosophy-section__title {
        font-size: 2rem;
    }
    .philosophy-section__visual::before,
    .philosophy-section__visual::after {
        display: none;
    }
}
.products {
    background: var(--black);
    position: relative;
    overflow: hidden;
}
.products::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(242, 194, 36, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 80%, rgba(238, 176, 22, 0.04) 0%, transparent 50%);
    pointer-events: none;
}
.featured {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
    align-items: center;
}
.featured__image {
    position: relative;
}
.featured__image img {
    width: 100%;
    border-radius: 0;
    box-shadow: var(--shadow-strong);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}
.featured__image img:hover {
    transform: scale(1.04);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}
.featured__image video {
    width: 100%;
    border-radius: 0;
    box-shadow: var(--shadow-strong);
}
.featured__image--video {
    position: relative;
}
.video-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--black);
    padding: 0.4rem 0.8rem;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.featured__badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: var(--gold);
    color: var(--black);
    padding: 0.8rem 1.2rem;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.featured__content h3 {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
}
.featured__tagline {
    font-size: 1.1rem;
    color: var(--gold-light);
    font-style: italic;
    margin-bottom: 2rem;
}
.featured__content p {
    color: var(--gray-light);
    font-size: var(--body-size);
    font-weight: var(--body-weight);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.featured__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}
.featured__content .btn {
    margin-top: 1.5rem;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.event-section {
    background: var(--white);
    padding: 6rem 5%;
}
.event-section.section--cream {
    background: linear-gradient(180deg, var(--cream) 0%, #F5EED6 50%, var(--off-white) 100%);
}
.event-section .featured {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 0;
}
.event-section .featured__content {
    padding-top: 1rem;
}
.event-section .featured__content h1,
.event-section .featured__content h2,
.event-section .featured__content h3 {
    color: var(--black);
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}
.event-section .featured__content h1 {
    font-size: var(--h1-size);
}
.event-section .featured__content h2,
.event-section .featured__content h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}
.event-section .featured__content h1::after,
.event-section .featured__content h2::after,
.event-section .featured__content h3::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-deep));
}
.event-section .featured__content p {
    color: var(--gray);
    font-size: var(--body-size);
    font-weight: var(--body-weight);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}
.event-section .featured__content p:last-of-type {
    margin-bottom: 2rem;
}
.event-section .featured__content strong {
    color: var(--black);
    font-weight: 500;
}
.event-section .section__label {
    margin-bottom: 1rem;
    color: var(--dark-brown);
}
.event-section .section__label::before {
    width: 30px;
    background: currentColor;
}
.event-section .btn {
    border-color: var(--black);
    color: var(--black);
    margin-top: 1.5rem;
    font-weight: 400;
}
.event-section .btn::before {
    background: var(--black);
}
.event-section .btn:hover {
    color: var(--white);
    border-color: var(--black);
}
.event-section.section--cream .btn {
    border-color: var(--dark-brown);
    color: var(--dark-brown);
    background: transparent;
}
.event-section.section--cream .btn::before {
    background: var(--dark-brown);
}
.event-section.section--cream .btn:hover {
    color: var(--cream);
    border-color: var(--dark-brown);
}
.event-section .featured__image > img:only-child {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    box-shadow: var(--shadow-medium);
}

.event-section:nth-child(even) .featured > .featured__image,
.event-section--image-right .featured > .featured__image {
    order: 2;
}
.event-section:nth-child(even) .featured > .featured__content,
.event-section--image-right .featured > .featured__content {
    order: 1;
}
@media (max-width: 1024px) {
    .event-section:nth-child(even) .featured > .featured__image,
    .event-section:nth-child(even) .featured > .featured__content,
    .event-section--image-right .featured > .featured__image,
    .event-section--image-right .featured > .featured__content {
        order: 0;
    }
}

.featured__image--stack,
.featured__image--grid {
    display: grid;
    gap: 1rem;
}
.featured__image--stack {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}
.featured__image--stack img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    box-shadow: var(--shadow-medium);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s ease;
}
.featured__image--stack img:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    z-index: 1;
    position: relative;
}

.featured__slideshow {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: visible;
    box-shadow: var(--shadow-medium);
    margin-bottom: 70px;
}
.featured__slideshow > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: inset(0);
    object-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.featured__slideshow > img.is-active {
    opacity: 1;
}
.featured__slideshow-nav {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 5;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.6rem 1rem;
    backdrop-filter: blur(10px);
}
.featured__slideshow-dot {
    width: 28px;
    height: 4px;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
}
.featured__slideshow-dot.is-active {
    background: var(--gold);
    width: 40px;
}
.featured__slideshow-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}
.featured__slideshow-thumbs {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}
.featured__thumb {
    width: 70px;
    height: 50px;
    padding: 0;
    margin: 0;
    border: 2px solid var(--gray-light);
    border-radius: 0;
    cursor: pointer;
    overflow: hidden;
    opacity: 0.6;
    transition: all 0.3s ease;
    background: transparent;
}
.featured__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.featured__thumb.is-active {
    border-color: var(--gold);
    opacity: 1;
}
.featured__thumb:hover {
    opacity: 1;
    border-color: var(--gold-deep);
}
.featured__slideshow::after {
    content: '';
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    z-index: 5;
}
.product-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(242, 194, 36, 0.1);
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--amber));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(242, 194, 36, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}
.product-card:hover::before {
    transform: scaleX(1);
}
.product-card__image {
    aspect-ratio: 4/3;
    overflow: hidden;
}
.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-card__image img {
    transform: scale(1.08);
}
.product-card__content {
    padding: 2rem;
}
.product-card__content h3 {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
}
.product-card__content p {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.7;
}
.product-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 1.2rem;
    transition: var(--transition-smooth);
}
.product-card__link span {
    transition: transform 0.3s ease;
}
.product-card:hover .product-card__link {
    color: var(--gold-light);
}
.product-card:hover .product-card__link span {
    transform: translateX(4px);
}

.ingrid-collection {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    margin: 0;
    width: 100vw;
    max-width: none;
    margin-left: calc(-50vw + 50%);
    background: var(--black);
}
.ingrid-collection::before {
    display: none;
}
.ingrid-collection__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 5%;
    max-width: 800px;
    margin: 0 auto;
}
.ingrid-collection__image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.ingrid-collection__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.ingrid-collection__image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 21, 18, 0.5) 0%,
        rgba(26, 21, 18, 0.6) 50%,
        rgba(26, 21, 18, 0.7) 100%
    );
    z-index: 2;
}
.ingrid-collection__text {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ingrid-collection__title {
    color: var(--gold);
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    opacity: 1;
}
.ingrid-collection__subtitle {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--off-white);
    margin-bottom: 2rem;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
    opacity: 1;
}
.ingrid-collection__text p:not(.ingrid-collection__subtitle) {
    color: var(--off-white);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    max-width: 600px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}
.ingrid-collection__text .btn {
    border-color: var(--gold);
    color: var(--gold);
}
.ingrid-collection__text .btn::before {
    background: var(--gold);
}
.ingrid-collection__text .btn:hover {
    color: var(--black);
}
.philosophy {
    position: relative;
    overflow: hidden;
    background: var(--off-white);
}
.philosophy::before,
.philosophy::after {
    content: '';
    position: absolute;
    border: 1px solid var(--gold-light);
    border-radius: 50%;
    opacity: 0.15;
}
.philosophy::before {
    top: 10%;
    right: -150px;
    width: 400px;
    height: 400px;
}
.philosophy::after {
    bottom: 10%;
    left: -100px;
    width: 250px;
    height: 250px;
}
.press {
    background: var(--white);
    padding: 6rem 5%;
}
.press::before {
    display: none;
}
.press .section__header {
    margin-bottom: 4rem;
}
.press .section__label {
    color: var(--gray);
}
.press .section__label::before,
.press .section__label::after {
    background: var(--gray-light);
    width: 25px;
    opacity: 0.5;
}
.press-page .section__label {
    color: var(--gray);
}
.press-page .section__label::before,
.press-page .section__label::after {
    background: var(--gray-light);
    width: 25px;
    opacity: 0.5;
}
.press .section__title {
    color: var(--black);
    font-weight: 400;
}
.press__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}
.press-archive {
    padding-top: 3rem;
}
.press-archive .section__header {
    margin-bottom: 3rem;
}
.press-list {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 4rem;
}
.press-row--featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 1rem;
}
.press-row--featured .press-item {
    border-bottom: none;
    padding-bottom: 0;
}
.press-row--featured .press-item h3 {
    font-size: 1.4rem;
}
.press-row--featured .press-grid {
    grid-template-columns: 1fr;
}
.press-grid.press-grid--small {
    display: block;
    max-width: 207px;
    margin: 0 auto;
}
.press-grid.press-grid--small a {
    display: inline-block;
}
.press-grid.press-grid--small img {
    width: 207px;
    max-width: 207px;
    height: 300px;
    aspect-ratio: auto;
    object-fit: cover;
}
.press-row--featured .press-item:first-child {
    text-align: center;
}
.press-row--featured .press-item:first-child h3 {
    font-size: 1.6rem;
    margin-top: 1.5rem;
}
.press-row--featured .press-item:first-child p {
    font-size: var(--body-size);
    font-weight: var(--body-weight);
    line-height: 1.7;
}
.press-item--image-only {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.press-item--image-only .press-grid {
    width: 85%;
    margin-bottom: 0;
}
.press-item--image-only .press-grid img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.press-item--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.press-item--split .press-item__text {
    order: 1;
}
.press-item--split .press-item__image {
    order: 2;
}
.press-item--split .press-item__image img {
    width: 100%;
    height: auto;
}
.press-item__small-image {
    margin: 1rem 0 1.5rem;
    display: flex;
    justify-content: center;
}
.press-item__small-image a {
    display: inline-block;
    position: relative;
}
.press-item__small-image img {
    max-width: 300px;
    height: auto;
    object-fit: contain;
}
.press-item__small-image--left {
    justify-content: flex-start;
}
.press-item__small-image--left img {
    max-width: 100%;
}
.press-grid.press-grid--full {
    display: block;
    grid-template-columns: none;
    width: 100%;
    margin: 1.5rem 0;
}
.press-grid.press-grid--full a {
    display: block;
    width: 100%;
}
.press-grid.press-grid--full img {
    width: 100%;
    height: auto;
    aspect-ratio: unset;
    object-fit: cover;
}
.press-item__title {
    font-family: var(--font-display);
    font-size: var(--h1-size);
    color: var(--black);
    margin: 1.5rem 0 1rem;
    line-height: 1.25;
}
.press-item--centered {
    text-align: center;
    padding-bottom: 2rem;
}
.press-item__center-image {
    margin: 1.5rem auto;
    max-width: 900px;
}
.press-item__center-image img {
    width: 100%;
    height: auto;
}
.press-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.press-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.press-item h3 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}
.press-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    align-items: start;
}
.press-grid a {
    display: block;
    cursor: zoom-in;
    position: relative;
    overflow: hidden;
}
.press-grid a::before {
    content: '+';
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0.8rem;
    right: 0.8rem;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    z-index: 2;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    color: var(--white);
    font-size: 1rem;
    line-height: 1;
}
.press-grid a:hover::before {
    opacity: 1;
}
.press-grid a::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: transparent;
    transition: background 0.3s ease;
}
.press-grid a:hover::after {
    background: rgba(0, 0, 0, 0.03);
}
.press-item__image a,
.press-item__center-image a,
.press-grid--full a {
    position: relative;
    display: block;
    cursor: zoom-in;
}
.press-item__image a::before,
.press-item__center-image a::before,
.press-grid--full a::before,
.press-item__small-image a::before {
    content: '+';
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0.8rem;
    right: 0.8rem;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    z-index: 2;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    color: var(--white);
    font-size: 1rem;
    line-height: 1;
}
.press-item__image a:hover::before,
.press-item__center-image a:hover::before,
.press-grid--full a:hover::before,
.press-item__small-image a:hover::before {
    opacity: 1;
}
.press-grid img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.08),
        0 12px 24px rgba(0, 0, 0, 0.06);
}
.press-grid a:hover img {
    transform: scale(1.015) translateY(-4px);
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.15),
        0 16px 32px rgba(0, 0, 0, 0.12),
        0 24px 48px rgba(0, 0, 0, 0.08);
}
.press-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    transition: transform 0.4s ease;
}
.press-card:hover {
    transform: translateY(-6px);
}
.press-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.press-card:hover img {
    transform: scale(1.04);
}
.press-card__zoom {
    display: none;
}
.press-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    color: var(--white);
}
.press-card__source {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.3rem;
}
.press-card__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.3;
    letter-spacing: 0.04em;
}
.press-page .hero--press .hero__overlay {
    background:
        linear-gradient(
            to top,
            rgba(26, 21, 18, 0.65) 0%,
            rgba(26, 21, 18, 0.35) 50%,
            transparent 78%
        );
}
.press-page .hero--press .hero__content {
    max-width: 620px;
}
.page-header {
    padding-top: 9rem;
    padding-bottom: 2rem;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.page-header .section__header {
    margin-bottom: 0;
    text-align: center;
}
.page-header .section__header h1 {
    font-size: var(--h1-size);
}
.page-header--bg {
    position: relative;
    overflow: hidden;
}
.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.page-header__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.page-header__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 21, 18, 0.5);
}
.page-header--bg .section__header {
    position: relative;
    z-index: 1;
}
.page-header--bg .section__header h1,
.page-header--bg .section__header h2 {
    color: var(--gold);
}
.page-header--bg .section__subtitle {
    color: #fff;
}
.page-header--bg .section__label {
    color: var(--gold);
}
.contact-page .page-header {
    min-height: 50vh;
    padding-top: 10rem;
    padding-bottom: 3rem;
}
.contact-page .contact {
    padding-top: 4.5rem;
}
.contact-page .contact__label {
    color: var(--black);
}
.contact-page .contact__label::before {
    background: var(--black);
}
.legal-page .legal {
    padding-top: 4.5rem;
}
.legal-page .hero--legal {
    min-height: 65vh;
    align-items: center;
}
.legal-page .hero--legal .hero__overlay {
    background: linear-gradient(110deg, rgba(26, 21, 18, 0.75) 0%, rgba(26, 21, 18, 0.45) 55%, transparent 90%);
}
.legal-page .hero--legal .hero__content {
    max-width: 620px;
    padding-bottom: 0;
}
.legal-page .hero--legal .hero__subtitle {
    color: var(--off-white);
}
.press-grid--wide {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.press-grid--wide img {
    aspect-ratio: 16 / 9;
    object-position: center;
}
.about {
    background: var(--black);
    position: relative;
    overflow: hidden;
}
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.about__content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}
.about__text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--gold);
    margin-bottom: 2rem;
    line-height: 1.25;
}
.about__text p {
    color: var(--gray-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.about__signature {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(242, 194, 36, 0.2);
    font-style: italic;
    color: var(--gold-light);
    font-size: 1.1rem;
}
.about__image {
    position: relative;
}
.about__image img {
    width: 100%;
    border-radius: 0;
    box-shadow: var(--shadow-strong);
}
.about__image::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    width: 80px;
    height: 80px;
    border-left: 2px solid var(--gold);
    border-top: 2px solid var(--gold);
    opacity: 0.4;
}
.about__image::after {
    content: '';
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 80px;
    height: 80px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    opacity: 0.4;
}

.story {
    text-align: center;
    background: linear-gradient(180deg, #1a1512 0%, var(--black) 50%, #0d0b09 100%);
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
}
.story::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse, rgba(242, 194, 36, 0.03) 0%, transparent 60%);
    pointer-events: none;
}
.story::after {
    content: '';
    position: absolute;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 194, 36, 0.4), transparent);
}
.story__content {
    max-width: 620px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.story__logo {
    display: block;
    width: 80px;
    height: auto;
    margin: 0 auto 3rem;
    opacity: 0.2;
    filter: brightness(0) invert(1);
    transition: opacity 0.4s ease;
}
.story__logo:hover {
    opacity: 0.35;
}
.story__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
}
.story__label::before,
.story__label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}
.story__title,
.story__content h2 {
    color: var(--gold);
    margin-bottom: 2rem;
    letter-spacing: 0.06em;
    font-weight: 400;
    line-height: 1.3;
}
.story__title span {
    display: block;
}
.story__title span + span {
    margin-top: 0.15em;
}
.story__content p {
    color: var(--gray-light);
    font-size: var(--body-size);
    font-weight: var(--body-weight);
    line-height: 2;
    margin-bottom: 3rem;
    font-style: normal;
    letter-spacing: 0.01em;
}
.story__quote {
    position: relative;
    padding: 2rem 0;
    margin: 2rem 0 3rem;
    border-top: 1px solid rgba(242, 194, 36, 0.15);
    border-bottom: 1px solid rgba(242, 194, 36, 0.15);
}
.story__quote p {
    font-style: italic;
    color: var(--gold-light);
    font-size: var(--body-size);
    font-weight: var(--body-weight);
    line-height: 1.8;
    margin: 0;
}
.story__content .btn {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: var(--btn-padding-y) var(--btn-padding-x);
    font-size: var(--btn-font-size);
    letter-spacing: 0.15em;
    margin-top: 0.5rem;
}
.story__content .btn::before {
    background: var(--gold);
}
.story__content .btn:hover {
    background: transparent;
    color: var(--black);
    border-color: var(--gold);
}
.story__divider {
    display: block;
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 4rem auto 0;
    opacity: 0.5;
}

.contact {
    padding: 6rem 5%;
    background: linear-gradient(180deg, var(--white) 0%, #FAFAFA 50%, var(--off-white) 100%);
    position: relative;
    overflow: hidden;
}
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    opacity: 0.4;
}
.contact::after {
    content: '';
    position: absolute;
    bottom: 3rem;
    right: 5%;
    width: 120px;
    height: 120px;
    border-right: 1px solid rgba(242, 194, 36, 0.15);
    border-bottom: 1px solid rgba(242, 194, 36, 0.15);
    pointer-events: none;
}
.contact__container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
    position: relative;
    z-index: 1;
}
.contact--simple .contact__container {
    grid-template-columns: 1fr;
    justify-items: center;
    max-width: 600px;
}
.contact--simple .contact__info {
    text-align: center;
    max-width: 500px;
}
.contact__logo {
    display: block;
    width: 70px;
    height: auto;
    margin-bottom: 2.5rem;
    opacity: 0.15;
    transition: opacity 0.4s ease;
}
.contact--simple .contact__logo {
    margin: 0 auto 2.5rem;
}
.contact__logo:hover {
    opacity: 0.25;
}
.contact__actions {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}
.contact__actions .btn {
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
    padding: var(--btn-padding-y) var(--btn-padding-x);
    font-size: var(--btn-font-size);
    letter-spacing: 0.15em;
}
.contact__actions .btn::before {
    background: var(--black);
}
.contact__actions .btn:hover {
    color: var(--white);
    border-color: var(--black);
}
.contact__info {
    text-align: left;
}
.contact__label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold-deep);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
}
.contact__label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}
.contact__title {
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: 0.05em;
    font-size: clamp(2.2rem, 3.4vw, 3.15rem);
    max-width: 12ch;
    overflow-wrap: break-word;
    hyphens: manual;
}
.contact--simple .contact__title::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--gold-deep));
    margin: 2rem auto 0;
}
.contact__text {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    font-weight: 300;
}
.contact__details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact__detail {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.contact__detail svg {
    width: 18px;
    height: 18px;
    color: var(--gold-deep);
    flex-shrink: 0;
}
.contact__detail a {
    color: var(--black);
    font-size: 1rem;
    font-weight: 300;
    transition: color 0.3s ease;
    letter-spacing: 0.01em;
}
.contact__detail a:hover {
    color: var(--gold-deep);
}
.contact__detail span {
    color: var(--black);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.01em;
}
.contact__form-wrapper {
    background: var(--white);
    padding: 3rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}
.contact__form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    opacity: 0.5;
}
.contact__form-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    opacity: 0.5;
}
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-group label {
    font-size: 0.65rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray);
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--black);
    background: var(--off-white);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-light);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(242, 194, 36, 0.1);
}
.form-group select {
    cursor: pointer;
    padding-right: 1.2rem;
}
.form-group textarea {
    min-height: 120px;
}
.contact__form .btn {
    align-self: flex-start;
    margin-top: 1rem;
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    padding: var(--btn-padding-y) var(--btn-padding-x);
    font-size: var(--btn-font-size);
}
.contact__form .btn::before {
    background: var(--gold);
}
.contact__form .btn:hover {
    color: var(--black);
    border-color: var(--gold);
}
.form-group.focused label {
    color: var(--gold-deep);
}
.form-feedback {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(242, 194, 36, 0.12);
    border-left: 3px solid var(--gold-deep);
    color: var(--dark-brown);
    font-size: 0.9rem;
    line-height: 1.5;
    border-radius: 2px;
}
.section--dark .form-feedback {
    background: rgba(242, 194, 36, 0.18);
    color: var(--off-white);
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}
.contact-address__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.contact-address__card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-soft);
    padding: 2.5rem;
}
.contact-address__card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}
.contact-address__card p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.contact-address__card--dark {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    text-align: center;
}
.contact-address__card--dark h3,
.contact-address__card--dark p {
    color: var(--off-white);
}
.contact-address__card--dark .inline-link {
    color: var(--gold);
}
.legal {
    background: var(--white);
}
.legal__container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.legal__block {
    background: var(--off-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-soft);
    padding: 2.5rem;
}
.legal__block h3 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold-deep);
    margin-bottom: 1.2rem;
}
.legal__block p {
    color: var(--gray);
    line-height: 1.9;
    font-weight: 300;
}
.legal__block p + p {
    margin-top: 1rem;
}
.legal__list {
    list-style: disc;
    margin: 1rem 0 0 1.3rem;
    color: var(--gray);
    display: grid;
    gap: 0.6rem;
}
.legal__list--numbered {
    list-style: decimal;
}
.legal__list li {
    line-height: 1.8;
}
.legal__updated {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 1.5rem;
}

.newsletter {
    background: var(--cream);
    padding: 6rem 5%;
    position: relative;
}
.newsletter__container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.newsletter__logo {
    margin-bottom: 2.5rem;
}
.newsletter__logo img {
    width: 80px;
    height: auto;
    opacity: 0.85;
}
.newsletter__content {
    margin-bottom: 2.5rem;
}
.newsletter__title {
    font-size: var(--h1-size);
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.06em;
}
.newsletter__subtitle {
    font-size: 1rem;
    color: var(--black);
    font-style: italic;
    margin-bottom: 1.2rem;
    letter-spacing: 0.02em;
}
.newsletter__description {
    font-size: 1rem;
    color: var(--black);
    opacity: 0.7;
    line-height: 1.9;
    font-weight: 300;
    max-width: 480px;
    margin: 0 auto;
}
.newsletter__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
}
.newsletter__form input {
    width: 100%;
    padding: 1rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--black);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease;
    text-align: center;
}
.newsletter__form input::placeholder {
    color: var(--gray-light);
    letter-spacing: 0.02em;
}
.newsletter__form input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(242, 194, 36, 0.1);
}
.newsletter__form .btn {
    width: 100%;
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
    padding: var(--btn-padding-y) var(--btn-padding-x);
    font-size: var(--btn-font-size);
    letter-spacing: 0.15em;
    justify-content: center;
}
.newsletter__form .btn::before {
    background: var(--gold);
}
.newsletter__form .btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}
.newsletter__cta {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.newsletter__cta-text {
    font-size: 0.95rem;
    color: var(--gray);
    letter-spacing: 0.05em;
}
.newsletter__cta-brand {
    margin-top: 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--black);
    text-align: center;
}

.nav-links a[aria-current="page"] {
    color: var(--gold-deep);
}
.nav-links a[aria-current="page"]::before {
    transform: scaleX(1);
}
.booklight-page .hero--booklight {
    min-height: 90vh;
    align-items: center;
}
.booklight-page .hero--booklight .hero__overlay {
    background: linear-gradient(90deg, rgba(26, 21, 18, 0.7) 0%, rgba(26, 21, 18, 0.35) 45%, rgba(26, 21, 18, 0.1) 70%, transparent 100%);
}
.book-hero__content {
    max-width: 560px;
    padding-bottom: 0;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}
.booklight-page .hero--booklight .hero__subtitle {
    color: var(--off-white);
}
.book-hero__collage {
    position: absolute;
    right: 6%;
    top: 55%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 4;
}
.book-hero__collage img {
    width: clamp(180px, 22vw, 260px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-strong);
    background: var(--white);
}
.book-hero__collage img:nth-child(2) {
    transform: translateX(-18%);
}
.booklight-intro {
    background: linear-gradient(140deg, var(--white) 0%, var(--beige) 55%, var(--off-white) 100%);
    position: relative;
    overflow: hidden;
    padding-top: clamp(4rem, 7vw, 6rem);
    padding-bottom: clamp(4rem, 7vw, 6rem);
}
.booklight-intro::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(242, 194, 36, 0.18) 0%, transparent 70%);
    pointer-events: none;
}
.booklight-intro__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 1040px;
    margin: 0 auto;
    align-items: center;
    justify-items: center;
    position: relative;
    z-index: 1;
}
.booklight-intro__text h1,
.booklight-intro__text h2 {
    margin-bottom: 1.5rem;
}
.booklight-intro__text p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.9;
}
.booklight-intro__quote {
    background: var(--white);
    padding: clamp(2.25rem, 4vw, 4rem);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-soft);
    text-align: center;
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
}
.booklight-intro__quote blockquote {
    position: relative;
    margin-bottom: 1.5rem;
}
.booklight-intro__quote blockquote::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    color: var(--gold);
    position: static;
    display: block;
    transform: none;
    margin: -0.4rem auto 0.35rem;
    line-height: 1;
    opacity: 0.6;
}
.booklight-intro__quote blockquote p {
    font-size: clamp(1.1rem, 1.5vw + 0.3rem, 1.4rem);
    font-weight: 300;
    color: var(--black);
    font-style: italic;
    line-height: 1.7;
    padding-top: 0;
    max-width: 30em;
    margin-left: auto;
    margin-right: auto;
}
.booklight-intro__credit {
    font-size: 0.85rem;
    color: var(--gray);
    letter-spacing: 0.02em;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}
.inspiration {
    background: linear-gradient(180deg, #f9f5e4 0%, var(--off-white) 100%);
}
.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.inspiration-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.inspiration-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}
.inspiration-card__content {
    padding: 1.5rem;
}
.inspiration-card__content h3 {
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.6rem;
    color: var(--black);
}
.inspiration-card__content p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
}
.photo-credit {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gray);
}
.booklight-callout {
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.booklight-callout::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(242, 194, 36, 0.2) 0%, transparent 70%);
    pointer-events: none;
}
.booklight-callout__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 1;
}
.booklight-callout__eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 1.2rem;
}
.booklight-callout__text h1,
.booklight-callout__text h2 {
    color: var(--gold);
    margin-bottom: 1rem;
}
.booklight-callout__text p {
    color: var(--gray-light);
}
.booklight-callout__note {
    padding: 2rem;
    border: 1px solid rgba(242, 194, 36, 0.3);
    background: rgba(255, 255, 255, 0.02);
}
.booklight-callout__note p {
    color: var(--off-white);
    margin-bottom: 1.5rem;
}
.product-collection {
    background: var(--off-white);
}
.product-grid {
    display: grid;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.product-card {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-soft);
}
.product-card__media {
    position: relative;
}
.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
}
.product-card__body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}
.product-card__body h3 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 1rem;
}
.product-card__body p {
    color: var(--gray);
}
.product-card__note {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-top: 0.5rem;
}
.product-card--reverse .product-card__media {
    order: 2;
}
.product-form {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}
.product-form__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.product-form .form-group input,
.product-form .form-group textarea {
    background: var(--form-bg);
}
.product-form .form-group textarea {
    min-height: 100px;
}
.product-form .form-group:focus-within label {
    color: var(--gold-deep);
}
.product-form .btn {
    align-self: flex-start;
}
.details {
    background: var(--white);
}
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.details-card {
    background: var(--off-white);
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: grid;
    gap: 1rem;
}
.details-card__image {
    display: block;
    overflow: hidden;
    background: var(--white);
}
.details-card__image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.details-card__image:hover img {
    transform: scale(1.04);
}
.details-card h3 {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
}
.details-card p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
}
.assembly {
    background: linear-gradient(135deg, var(--dark-shade) 0%, var(--black) 100%);
    color: var(--white);
}
.assembly .section__label {
    color: var(--gold);
}
.assembly h1,
.assembly h2,
.assembly h3 {
    color: var(--gold);
}
.assembly__grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: start;
}
.assembly__list {
    list-style-type: decimal-leading-zero;
    display: grid;
    gap: 1.2rem;
    padding-left: 3rem;
}
.assembly__list li {
    position: relative;
    padding-left: 0.5rem;
    font-size: 1rem;
    color: var(--off-white);
}
.assembly__list li::marker {
    color: var(--gold);
    font-family: var(--font-display);
}
.assembly__note,
.assembly__warning {
    color: var(--gold-light);
}
.assembly__warning {
    grid-column: 2;
    max-width: 560px;
    margin-top: -1rem;
}
.specs {
    background: var(--off-white);
}
.specs__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
}
.specs__card {
    background: var(--white);
    padding: 2rem 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-soft);
}
.specs__card h3 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: var(--black);
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gold);
}
.specs__list {
    display: grid;
    gap: 0;
}
.specs__list dt {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: 0;
}
.specs__list dt:first-child {
    border-top: none;
    padding-top: 0;
}
.specs__list dd {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
    padding-bottom: 0.8rem;
    line-height: 1.5;
}
.accessories-list {
    list-style: none;
    display: grid;
    gap: 0;
}
.accessories-list li {
    color: var(--gray);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1rem 0 0.8rem;
    font-size: 0.9rem;
    line-height: 1.5;
}
.accessories-list li:first-child {
    border-top: none;
    padding-top: 0;
}
.accessories-list li strong {
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.3rem;
}
.circular-callout {
    margin-top: 2rem;
    padding: 1.5rem;
    border: 1px solid rgba(242, 194, 36, 0.4);
    background: linear-gradient(135deg, rgba(242, 194, 36, 0.12) 0%, rgba(255, 255, 255, 0) 100%);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.circular-callout strong {
    color: var(--black);
}
.care {
    background: var(--black);
    color: var(--white);
}
.care .section__label {
    color: var(--gold);
}
.care h1,
.care h2,
.care h3 {
    color: var(--gold);
}
.care__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
}
.care__text p {
    color: var(--gray-light);
}
.care__image img {
    width: 100%;
    box-shadow: var(--shadow-strong);
}
.why {
    background: linear-gradient(160deg, var(--white) 0%, #f7f0ba 100%);
}
.why__grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.why__list {
    list-style: none;
    display: grid;
    gap: 1rem;
    padding-left: 0;
    margin: 0;
}
.why__list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--gray);
}
.why__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 10px;
    height: 2px;
    background: var(--gold);
}
.why__image {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 2rem;
}
.why__image img {
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-soft);
}
.booklight-closing {
    background: linear-gradient(125deg, var(--dark-shade) 0%, var(--black) 60%, var(--dark-brown) 100%);
    color: var(--white);
    text-align: center;
}
.booklight-closing__inner {
    max-width: 900px;
    margin: 0 auto;
}
.booklight-closing h1,
.booklight-closing h2,
.booklight-closing h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.booklight-closing p {
    color: var(--gray-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}
.booklight-closing p:last-of-type {
    margin-bottom: 0;
}
.booklight-closing__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.ingrid-page .hero--ingrid {
    min-height: 85vh;
    align-items: center;
}
.ingrid-page .hero--ingrid .hero__overlay {
    background: linear-gradient(120deg, rgba(26, 21, 18, 0.7) 0%, rgba(26, 21, 18, 0.35) 55%, rgba(26, 21, 18, 0.1) 75%, transparent 100%);
}
.ingrid-hero__content {
    max-width: 560px;
    padding-bottom: 0;
}
.ingrid-page .hero--ingrid .hero__subtitle {
    color: var(--off-white);
}
.ingrid-intro {
    background: linear-gradient(150deg, var(--white) 0%, var(--beige) 55%, var(--off-white) 100%);
}
.ingrid-intro__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}
.ingrid-intro__text h1,
.ingrid-intro__text h2 {
    margin-bottom: 1.5rem;
}
.ingrid-intro__text p {
    color: var(--gray);
    line-height: 1.9;
}
.ingrid-intro__media img {
    width: 100%;
    box-shadow: var(--shadow-strong);
}
.ingrid-beyond {
    background: var(--off-white);
}

.ingrid-beyond .section__label {
    justify-content: center;
    text-align: center;
    width: 100%;
}

.ingrid-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.ingrid-gallery__item {
    margin: 0;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-soft);
}
.ingrid-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.ingrid-gallery__item:hover img {
    transform: scale(1.04);
}
.ingrid-gallery__item figcaption {
    font-size: 0.85rem;
    color: var(--gray);
    text-align: center;
    padding: 0.5rem 0;
    letter-spacing: 0.03em;
    font-style: italic;
}
.ingrid-products {
    background: var(--white);
}
.ingrid-products__list {
    display: grid;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.ingrid-product {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(360px, 1fr);
    background: var(--off-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
}
.ingrid-product__media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}
.ingrid-product__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem;
}
.ingrid-product__details h3 {
    margin-bottom: 0.6rem;
    color: var(--black);
}
.ingrid-product__name {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray);
    margin-bottom: 0.8rem;
}
.ingrid-product__details p {
    color: var(--gray);
    line-height: 1.7;
}
.ingrid-product__pricing {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.85rem;
    color: var(--gray);
}
.ingrid-product__price {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gold-deep);
    margin: 0.5rem 0;
}
.ingrid-product--reverse .ingrid-product__media {
    order: 2;
}
.product-form--compact {
    gap: 1rem;
}
.product-form--compact .form-group label {
    font-size: 0.7rem;
}
.product-form--compact .form-group input,
.product-form--compact .form-group textarea {
    background: var(--form-bg);
    font-size: 0.85rem;
}
.product-form--compact .btn {
    margin-top: 0.5rem;
}
.ingrid-craft {
    background: linear-gradient(130deg, var(--dark-shade) 0%, var(--black) 70%);
    color: var(--white);
}
.ingrid-craft .section__label {
    color: var(--gold);
}
.ingrid-craft h1,
.ingrid-craft h2,
.ingrid-craft h3 {
    color: var(--gold);
}
.ingrid-craft__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}
.ingrid-craft__heading {
    grid-column: 1;
    grid-row: 1;
}
.ingrid-craft__heading h1,
.ingrid-craft__heading h2,
.ingrid-craft__heading h3 {
    color: var(--gold);
    margin: 0 0 1rem 0;
}
.ingrid-craft__text {
    grid-column: 1;
    grid-row: 2;
}
.ingrid-craft__media {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: grid;
    gap: 1.5rem;
    align-self: stretch;
}
.ingrid-craft__media img {
    width: 100%;
    box-shadow: var(--shadow-strong);
}
.ingrid-craft__text p {
    color: var(--gray-light);
    line-height: 1.8;
}
.ingrid-lifecycle {
    background: linear-gradient(160deg, var(--off-white) 0%, #f7f0ba 100%);
}
.ingrid-lifecycle__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}
.ingrid-lifecycle__text p {
    color: var(--gray);
}
.ingrid-lifecycle__list-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray);
    margin: 1.5rem 0;
}
.ingrid-lifecycle__gallery img {
    width: 100%;
    box-shadow: var(--shadow-strong);
}

.circular-page .hero--circular {
    min-height: 85vh;
    align-items: center;
}
.circular-page .hero--circular .hero__overlay {
    background: linear-gradient(110deg, rgba(26, 21, 18, 0.7) 0%, rgba(26, 21, 18, 0.35) 55%, rgba(26, 21, 18, 0.12) 75%, transparent 100%);
}
.circular-hero__content {
    max-width: 620px;
    padding-bottom: 0;
}
.circular-page .hero--circular .hero__subtitle {
    color: var(--off-white);
}
.philosophy-page .hero--philosophy {
    height: auto;
    min-height: 100vh;
    padding: 12rem 0 6rem;
    align-items: flex-start;
}
.philosophy-page .hero--philosophy .hero__overlay {
    background: linear-gradient(180deg, rgba(10, 8, 6, 0.55) 0%, rgba(10, 8, 6, 0.6) 45%, rgba(10, 8, 6, 0.55) 100%);
}
.philosophy-page .hero--philosophy .hero__image {
    object-position: center;
}
.philosophy-page .hero--philosophy .hero__content {
    max-width: 880px;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 0;
    text-align: center;
}
.philosophy-page .hero--philosophy .hero__tagline,
.philosophy-page .hero--philosophy .hero__subtitle {
    opacity: 1;
    animation: none;
}
.philosophy-page .hero--philosophy .hero__tagline {
    margin-bottom: 1.5rem;
}
.philosophy-page .hero--philosophy .hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
}
.philosophy-page .hero--philosophy .hero__subtitle {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.philosophy-page .hero--philosophy .hero__title {
    font-size: var(--h1-size);
    margin-bottom: 1.5rem;
}
.philosophy-page .hero--philosophy .philosophy-highlight {
    margin: 1.6rem auto;
    padding: 1.2rem;
    max-width: 760px;
}
.philosophy-page .hero--philosophy .philosophy-subtitle {
    margin: 1.8rem 0 1rem;
}
.philosophy-page .hero--philosophy .philosophy-quote {
    margin-top: 1.2rem;
}
.philosophy-page .hero--philosophy .philosophy-footnote {
    font-size: 0.7rem;
}
.philosophy-page .hero--philosophy .hero__content * {
    opacity: 1;
    animation: none;
    transform: none;
    clip-path: none;
}
.philosophy-page .circular-feature__content .philosophy-badges {
    justify-content: flex-start;
    margin: 0 0 1.5rem;
}
.philosophy-page .circular-feature__content .philosophy-cta {
    text-align: left;
    margin-top: 0;
}
.philosophy-page .circular-feature__media img {
    max-height: 450px;
    object-fit: cover;
}
.circular-services {
    background: var(--white);
}
.circular-services__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.circular-card {
    background: var(--off-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 2.5rem;
}
.circular-card h1,
.circular-card h2 {
    margin-bottom: 1rem;
}
.circular-card p {
    color: var(--gray);
    line-height: 1.9;
}
.circular-feature {
    background: var(--black);
    color: var(--white);
}
.circular-feature--light {
    background: var(--off-white);
    color: var(--black);
}
.circular-feature .section__label {
    color: var(--gold);
}
.circular-feature--light .section__label {
    color: var(--dark-brown);
}
.circular-feature__content h1,
.circular-feature__content h2 {
    color: var(--gold);
}
.circular-feature--light .circular-feature__content h1,
.circular-feature--light .circular-feature__content h2 {
    color: var(--black);
}
.circular-feature__grid {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(320px, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}
.circular-feature--reverse .circular-feature__media {
    order: 2;
}
.circular-feature--reverse .circular-feature__content {
    order: 1;
}
.circular-feature__media img {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    object-position: center;
    box-shadow: var(--shadow-strong);
}
.circular-feature__content p {
    color: var(--gray-light);
    line-height: 1.9;
}
.circular-feature--light .circular-feature__content p {
    color: var(--gray);
}
.thisisus-page .hero--thisisus .hero__overlay {
    background:
        linear-gradient(
            to top,
            rgba(26, 21, 18, 0.6) 0%,
            rgba(26, 21, 18, 0.35) 45%,
            transparent 75%
        );
}
.thisisus-page .hero--thisisus .hero__content {
    max-width: 620px;
}
.thisisus-story__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.thisisus-story__hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    align-items: center;
}
.thisisus-story__hero-image img {
    width: 100%;
    box-shadow: var(--shadow-soft);
}
.thisisus-story__hero-text p {
    color: var(--gray);
    line-height: 1.85;
}
.thisisus-story__hero-text h1 {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1.25rem, 1.25vw + 0.95rem, 2rem);
    line-height: 1.32;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}
.thisisus-story__block-img {
    width: 80px;
    height: auto;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}
.thisisus-story__block h1,
.thisisus-story__block h3 {
    margin-bottom: 1rem;
}
.thisisus-story__block p {
    color: var(--gray);
    line-height: 1.9;
}
.inline-link {
    color: var(--gold-deep);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.section--dark .inline-link {
    color: var(--gold);
}
.thisisus-roles__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.thisisus-role {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.thisisus-role a.js-lightbox {
    display: block;
    aspect-ratio: 1 / 1.05;
    overflow: hidden;
}
.thisisus-role img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1.05;
    object-fit: cover;
    object-position: center top;
    box-shadow: var(--shadow-strong);
}
.thisisus-role h3 {
    margin-bottom: 0.5rem;
}
.thisisus-role p {
    color: var(--gray);
    line-height: 1.85;
}
.thisisus-role .btn {
    align-self: flex-start;
}
.thisisus-notes {
    margin-top: 1.5rem;
    padding-left: 1.2rem;
    color: var(--gray);
}
.thisisus-notes li {
    margin-bottom: 0.6rem;
}
.thisisus-vibes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.thisisus-vibes__card {
    border: 1px solid rgba(242, 194, 36, 0.3);
    padding: 2rem;
    background: rgba(255, 255, 255, 0.04);
}
.thisisus-vibes__card h3 {
    color: var(--gold);
    margin-bottom: 0.8rem;
}
.thisisus-vibes__card p {
    color: var(--off-white);
    line-height: 1.85;
}
.thisisus-cta .section__header .btn {
    margin-top: 2rem;
    display: inline-flex;
}
@media (max-width: 768px) {
    .thisisus-story__hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
.circular-growth {
    background: linear-gradient(130deg, var(--dark-shade) 0%, var(--black) 70%);
    color: var(--white);
}
.circular-growth .section__label {
    color: var(--gold);
}
.circular-growth__inner h1,
.circular-growth__inner h2 {
    color: var(--gold);
}
.circular-growth__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.circular-growth__content p {
    color: var(--gray-light);
}
.circular-growth__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}
.circular-growth__actions .btn {
    margin-top: 0;
}
.circular-growth__media img {
    width: 100%;
    border-radius: 2px;
    box-shadow: var(--shadow-soft);
}
.circular-social {
    background: var(--off-white);
    text-align: center;
}
.circular-social__inner {
    max-width: 800px;
    margin: 0 auto;
}
.circular-social__inner p {
    color: var(--gray);
}
.circular-social__tags,
.circular-social__links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
}
.circular-social__links a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(43, 43, 43, 0.2);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    transition: var(--transition-smooth);
}
.circular-social__links a img {
    width: 16px;
    height: 16px;
    display: block;
}
.circular-social__links a:hover {
    border-color: var(--gold);
    background: var(--cream);
    transform: translateY(-2px);
}
.testimonials {
    background: var(--white);
}
.testimonials__grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}
.testimonial-card {
    background: var(--off-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 2rem;
    display: grid;
    gap: 1.5rem;
    text-align: center;
}
.testimonial-card img {
    display: block;
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
}
.testimonial-card p {
    color: var(--gray);
    line-height: 1.8;
}
.testimonial-card span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--black);
}

.footer {
    background: var(--dark-brown);
}
.footer__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 5% 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.footer__logo {
    width: 90px;
    height: auto;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
}
.footer__tagline {
    color: var(--off-white);
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
}
.footer__email {
    color: var(--off-white);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: lowercase;
    transition: color 0.3s ease;
    margin-bottom: 2.5rem;
}
.footer__email:hover {
    color: var(--gold-deep);
}
.footer__separator {
    width: 100%;
    max-width: 500px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-deep), transparent);
    margin-bottom: 2rem;
}
.footer__bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    padding-bottom: 1rem;
}
.footer__bottom p,
.footer__bottom a {
    display: inline;
    margin: 0;
    color: var(--gray-light);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    font-weight: 300;
    white-space: nowrap;
}
.footer__bottom a {
    transition: color 0.3s ease;
}
.footer__bottom a:hover {
    color: var(--gold-deep);
}
.footer__dot {
    color: var(--gold-deep);
    font-size: 0.5rem;
}
.lightbox {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.lightbox.active {
    opacity: 1;
    visibility: visible;
}
.lightbox__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 10;
}
.lightbox__close svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}
.lightbox__close:hover {
    background: var(--gold);
}
.lightbox__close:hover svg {
    color: var(--black);
}
.lightbox__content {
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.lightbox.active .lightbox__content {
    transform: scale(1);
}
.lightbox__content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes scrollPulse {
    0%, 100% {
        opacity: 1;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.4;
        transform: scaleY(0.7);
    }
}
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
@media (max-width: 1200px) {
    :root {
        --btn-padding-y: 0.95rem;
        --btn-padding-x: 1.9rem;
        --btn-font-size: 0.75rem;
        --h1-size: clamp(1.95rem, 3.7vw + 0.35rem, 3.15rem);
        --home-h1-size: var(--h1-size);
    }
    .hero__content {
        max-width: 450px;
    }
    .hero__title {
        font-size: var(--h1-size);
    }
    .hero__subtitle {
        font-size: clamp(0.95rem, 1.8vw, 1.15rem);
        margin-bottom: 2rem;
    }
    .hero__tagline {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    .home-page .hero--home .hero__content {
        max-width: 500px;
        padding: 1.8rem 2rem 4rem;
    }
    .book-hero__content {
        max-width: 480px;
    }
    .ingrid-hero__content {
        max-width: 480px;
    }
    .circular-hero__content {
        max-width: 520px;
    }
    .featured {
        gap: 4rem;
    }
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 1024px) {
    .navbar {
        position: fixed;
        padding: 0.5rem 4%;
        background: var(--white);
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }
    .navbar.scrolled {
        padding: 0.4rem 4%;
    }
    .logo img {
        width: 52px;
    }
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 18px;
        padding: 0;
        background: transparent;
        border: none;
        border-radius: 0;
        gap: 0;
    }
    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--black);
        border-radius: 0;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(280px, 75vw);
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1.5rem;
        padding-top: 4rem;
        padding-bottom: 3rem;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }
    .nav-links a {
        color: var(--white);
        font-size: 0.85rem;
    }
    .nav-links a:hover {
        color: var(--gold);
    }
    .nav-links.active {
        right: 0;
    }
    .menu-toggle {
        display: flex;
        width: 28px;
        height: 20px;
    }
    .menu-toggle span {
        height: 2px;
    }
    .nav-links__logo {
        display: block;
        margin-bottom: 1.5rem;
    }
    .nav-links__logo a {
        display: inline-block;
        background: var(--white);
        padding: 0.8rem 1rem;
        border-radius: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    .nav-links__logo a::before {
        display: none;
    }
    .nav-links__logo img {
        width: 60px;
        height: auto;
        display: block;
    }
    .nav-dropdown {
        width: 100%;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .dropdown-toggle {
        width: 100%;
        justify-content: center;
        color: var(--white);
        font-size: 0.85rem;
    }
    .dropdown-toggle::after {
        border-top-color: var(--white);
    }
    .dropdown-toggle:hover {
        color: var(--gold);
    }
    .dropdown-menu {
        position: static;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0.5rem 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.open .dropdown-menu {
        display: block;
    }
    .dropdown-menu a {
        color: var(--gray-light);
        font-size: 0.8rem;
        text-align: center;
    }
    .dropdown-menu a:hover {
        background: transparent;
        color: var(--gold);
    }
    .nav-lang {
        margin-top: 1.2rem;
        margin-left: 0;
    }
    .lang-current {
        padding: 0.6rem 1rem;
        background: rgba(255, 255, 255, 0.05);
    }
    .lang-text {
        color: var(--white);
    }
    .lang-arrow {
        color: var(--white);
    }
    .lang-menu {
        background: rgba(26, 21, 18, 0.98);
        border-color: rgba(255, 255, 255, 0.1);
        left: 50%;
        right: auto;
        transform: translateX(-50%) translateY(-4px);
    }
    .lang-current[aria-expanded="true"] + .lang-menu {
        transform: translateX(-50%) translateY(0);
    }
    .lang-option {
        color: var(--white);
    }
    .lang-menu a.lang-option {
        padding: 0.7rem 1rem;
    }
    .lang-option .lang-text {
        color: var(--white);
    }
    .lang-option:hover {
        background: rgba(242, 194, 36, 0.15);
    }
    .hero__content {
        max-width: 420px;
        padding-bottom: 4rem;
    }
    .hero__title {
        font-size: var(--h1-size);
        margin-bottom: 1rem;
    }
    .hero__subtitle {
        font-size: clamp(0.9rem, 2vw, 1rem);
        margin-bottom: 1.5rem;
    }
    .hero__tagline {
        font-size: 0.75rem;
        margin-bottom: 1.2rem;
    }
    .home-page .hero--home .hero__content {
        max-width: 460px;
        padding: 1.5rem 1.7rem 3.4rem;
    }
    .book-hero__content {
        max-width: 400px;
    }
    .ingrid-hero__content {
        max-width: 400px;
    }
    .circular-hero__content {
        max-width: 420px;
    }
    .featured {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .event-section {
        padding: 4rem 5%;
    }
    .event-section .featured {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .logo-showcase__content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about__content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about__image {
        order: -1;
    }
    .ingrid-collection {
        min-height: 45vh;
    }
    .ingrid-collection__content {
        padding: 3rem 5%;
    }
    .ingrid-collection__text {
        padding: 0;
    }
    .ingrid-collection__text .btn {
        margin: 0 auto;
    }
    .newsletter {
        padding: 5rem 5%;
    }
    .newsletter__logo img {
        width: 70px;
    }
    .newsletter__title {
        font-size: var(--h1-size);
    }
    .philosophy__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .press__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact__container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .contact-address__grid {
        grid-template-columns: 1fr;
    }
    .legal__block {
        padding: 2rem;
    }
}
@media (max-width: 768px) {
    :root {
        --btn-padding-y: 0.9rem;
        --btn-padding-x: 1.6rem;
        --btn-font-size: 0.75rem;
        --label-gap: 1rem;
        --h1-size: clamp(1.85rem, 5vw, 2.65rem);
        --home-h1-size: var(--h1-size);
    }
    html {
        font-size: 16px;
    }
    .navbar {
        padding: 0.5rem 4%;
    }
    .logo img {
        width: 50px;
    }
    .section {
        padding: 4rem 6%;
    }
    .hero {
        min-height: 85vh;
    }
    .hero__image {
        object-position: center 30%;
    }
    .hero__content {
        margin-left: 0;
        padding: 0 6%;
        padding-bottom: 4rem;
        max-width: 80%;
    }
    .hero__title {
        font-size: var(--h1-size);
        line-height: 1.25;
        margin-bottom: 1rem;
    }
    .home-page .hero--home .hero__overlay {
        display: block;
    }
    .home-page .hero--home {
        display: flex;
        min-height: 100svh;
        align-items: flex-end;
    }
    .home-page .hero--home .hero__bg {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .home-page .hero--home .hero__slide > img {
        object-position: center 16%;
    }
    .home-page .hero--home .hero__content {
        margin-left: 0;
        width: min(100%, 24rem);
        max-width: none;
        padding: 0 1.4rem 2.6rem;
        background: none;
    }
    .home-page .hero--home .hero__title {
        max-width: 8ch;
    }
    .home-page .hero--home .hero__overlay {
        background:
            linear-gradient(
                to top,
                rgba(10, 8, 7, 0.96) 0%,
                rgba(10, 8, 7, 0.84) 28%,
                rgba(10, 8, 7, 0.38) 58%,
                transparent 78%
            ),
            linear-gradient(
                90deg,
                rgba(10, 8, 7, 0.58) 0%,
                rgba(10, 8, 7, 0.14) 46%,
                transparent 76%
            );
    }
    .hero__subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        max-width: 100%;
        line-height: 1.6;
    }
    .hero__overlay {
        background:
            linear-gradient(
                to top,
                rgba(26, 21, 18, 0.6) 0%,
                rgba(26, 21, 18, 0.25) 15%,
                transparent 35%
            );
    }
    .intro {
        padding: 3rem 5%;
    }
    .products__grid {
        grid-template-columns: 1fr;
    }
    .featured__content {
        text-align: left;
    }
    .featured__content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    .featured__content p {
        font-size: var(--body-size);
        font-weight: var(--body-weight);
        margin-bottom: 0.5rem;
    }
    .featured__tagline {
        margin-bottom: 1rem;
    }
    .featured__buttons {
        justify-content: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.6rem;
    }
    .featured__buttons .btn {
        padding: var(--btn-padding-y) var(--btn-padding-x);
        font-size: var(--btn-font-size);
    }
    .section__label {
        font-size: 0.75rem;
    }
    .press__grid {
        grid-template-columns: 1fr;
    }
    .press-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .press-item {
        padding: 1.5rem 0;
        text-align: left;
    }
    .press-item h3 {
        font-size: 1.2rem;
    }
    .press-grid img {
        aspect-ratio: 3/4;
        height: auto;
    }
    .press-list {
        gap: 2rem;
    }
    .press-row--featured {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .press-item--split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .press-item--split .press-item__image {
        order: 1;
    }
    .press-item--split .press-item__text {
        order: 2;
    }
    .story {
        padding: 3rem 5%;
    }
    .story__logo {
        width: 55px;
        margin-bottom: 1.5rem;
    }
    .story__label {
        font-size: 0.75rem;
        gap: 1rem;
    }
    .story__label::before,
    .story__label::after {
        width: 25px;
    }
    .story__title,
    .story__content h2 {
        margin-bottom: 1rem;
    }
    .story__content p {
        font-size: var(--body-size);
        font-weight: var(--body-weight);
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    .story__quote {
        padding: 1rem 0;
        margin: 1rem 0 1.5rem;
    }
    .story__quote p {
        font-size: var(--body-size);
        font-weight: var(--body-weight);
    }
    .story__divider {
        height: 50px;
        margin-top: 2rem;
    }
    .featured__image--stack {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .event-section {
        padding: 2.5rem 5%;
    }
    .event-section .featured {
        gap: 2rem;
    }
    .event-section .featured__content {
        text-align: left;
    }
    .event-section .featured__content h1,
    .event-section .featured__content h2,
    .event-section .featured__content h3 {
        margin-bottom: 0.8rem;
    }
    .event-section .featured__content h2,
    .event-section .featured__content h3 {
        font-size: 1.2rem;
    }
    .event-section .featured__content p {
        margin-bottom: 0.6rem;
    }
    .event-section .section__label {
        font-size: 0.75rem;
    }
    .featured__image {
        width: 100%;
    }
    .featured__image--stack img {
        height: 220px;
    }
    .featured__slideshow {
        height: 300px;
    }
    .event-section .featured__image > img:only-child {
        height: 300px;
    }
    .ingrid-collection {
        min-height: 40vh;
    }
    .ingrid-collection__content {
        padding: 2.5rem 5%;
    }
    .ingrid-collection__title {
        font-size: var(--h1-size);
    }
    .ingrid-collection__subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    .ingrid-collection__text p:not(.ingrid-collection__subtitle) {
        font-size: var(--body-size);
        font-weight: var(--body-weight);
        margin-bottom: 2rem;
    }
    .newsletter {
        padding: 4rem 5%;
    }
    .newsletter__logo {
        margin-bottom: 1.5rem;
    }
    .newsletter__logo img {
        width: 60px;
    }
    .newsletter__content {
        margin-bottom: 2rem;
    }
    .newsletter__title {
        font-size: var(--h1-size);
    }
    .newsletter__subtitle {
        font-size: 0.95rem;
    }
    .newsletter__description {
        font-size: var(--body-size);
        font-weight: var(--body-weight);
    }
    .newsletter__form {
        max-width: 100%;
    }
    .newsletter__form input {
        padding: 0.9rem 1rem;
    }
    .newsletter__form .btn {
        padding: var(--btn-padding-y) var(--btn-padding-x);
        font-size: var(--btn-font-size);
    }
    .contact {
        padding: 4rem 5% 5rem;
    }
    .contact::before {
        height: 60px;
    }
    .contact__logo {
        width: 55px;
        margin-bottom: 2rem;
    }
    .contact__label {
        font-size: 0.65rem;
    }
    .contact__label::before {
        width: 20px;
    }
    .contact__title {
        font-size: var(--h1-size);
    }
    .contact__form-wrapper {
        padding: 2rem;
    }
    .contact__form-wrapper::before,
    .contact__form-wrapper::after {
        width: 40px;
        height: 40px;
    }
    .contact__info {
        text-align: left;
    }
    .contact__details {
        align-items: flex-start;
    }
    .hero__buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    .hero__buttons .btn {
        width: auto;
        min-width: 180px;
    }
    .page-header {
        padding-top: 7rem;
        padding-bottom: 1.5rem;
        min-height: auto;
    }
    .contact-page .contact,
    .legal-page .legal {
        padding-top: 2rem;
    }
    .footer__inner {
        padding: 3rem 5% 1.5rem;
    }
    .footer__logo {
        width: 70px;
        margin-bottom: 1.5rem;
    }
    .footer__tagline {
        font-size: 0.95rem;
        letter-spacing: 0.1em;
        margin-bottom: 1.2rem;
    }
    .footer__email {
        font-size: 0.8rem;
        margin-bottom: 2rem;
    }
    .footer__separator {
        margin-bottom: 1.5rem;
    }
    .footer__bottom p,
    .footer__bottom a {
        font-size: 0.65rem;
    }
    .lightbox__close {
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
    }
    .lightbox__close svg {
        width: 18px;
        height: 18px;
    }
    .btn {
        padding: var(--btn-padding-y) var(--btn-padding-x);
        font-size: var(--btn-font-size);
    }
}
@media (max-width: 480px) {
    :root {
        --btn-padding-y: 0.8rem;
        --btn-padding-x: 1.4rem;
        --btn-font-size: 0.7rem;
        --label-gap: 1rem;
        --h1-size: clamp(1.7rem, 6vw, 2.25rem);
        --home-h1-size: var(--h1-size);
    }
    html {
        font-size: 16px;
    }
    .navbar {
        padding: 0.35rem 4%;
    }
    .logo img {
        width: 44px;
    }
    .menu-toggle {
        width: 24px;
        height: 18px;
    }
    .back-to-top {
        right: 0.75rem;
        bottom: 0.75rem;
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .section {
        padding: 3.5rem 6%;
    }
    .hero {
        height: auto;
        min-height: 70vh;
    }
    .hero__image {
        object-fit: cover;
        object-position: center center;
    }
    .hero__content {
        margin-left: 0;
        padding: 0 5%;
        padding-bottom: 2.5rem;
        max-width: 90%;
    }
    .hero__tagline {
        font-size: 0.7rem;
        letter-spacing: 0.3em;
        margin-bottom: 1rem;
        gap: 1rem;
    }
    .hero__tagline::before {
        width: 30px;
    }
    .hero__title {
        font-size: var(--h1-size);
        line-height: 1.2;
        margin-bottom: 0.6rem;
    }
    .home-page .hero--home .hero__content {
        margin-left: 0;
        width: min(100%, 21rem);
        max-width: none;
        padding: 0 1rem 2.1rem;
    }
    .home-page .hero--home .hero__bg {
        width: 100%;
        height: 100%;
    }
    .home-page .hero--home .hero__slide > img {
        object-position: center 14%;
    }
    .hero__subtitle {
        font-size: clamp(0.8rem, 3vw, 0.9rem);
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    .hero__overlay {
        background:
            linear-gradient(
                to top,
                rgba(26, 21, 18, 0.65) 0%,
                rgba(26, 21, 18, 0.3) 18%,
                transparent 40%
            );
    }
    .hero__buttons {
        gap: 0.6rem;
    }
    .hero__buttons .btn {
        padding: var(--btn-padding-y) var(--btn-padding-x);
        font-size: var(--btn-font-size);
        min-width: auto;
    }
    .featured__content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.4rem;
    }
    .featured__content p {
        font-size: var(--body-size);
        font-weight: var(--body-weight);
        margin-bottom: 0.4rem;
    }
    .featured__tagline {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
    .products {
        padding: 1.5rem 4%;
    }
    .products .featured {
        gap: 1rem;
        margin-bottom: 0;
    }
    .products .featured__content {
        text-align: center;
    }
    .products .featured__content h3 {
        margin-bottom: 0.2rem;
    }
    .products .featured__buttons {
        justify-content: center;
        gap: 0.5rem;
    }
    .products .featured__buttons .btn {
        padding: var(--btn-padding-y) var(--btn-padding-x);
        font-size: var(--btn-font-size);
    }
    .featured__image--stack img {
        height: 180px;
    }
    .featured__slideshow {
        height: 220px;
        margin-bottom: 60px;
    }
    .featured__slideshow-thumbs {
        bottom: -55px;
    }
    .featured__thumb {
        width: 50px;
        height: 38px;
    }
    .event-section {
        padding: 2rem 4%;
    }
    .event-section .featured {
        gap: 1.5rem;
    }
    .event-section .featured__image > img:only-child {
        height: 220px;
    }
    .event-section .featured__content h1,
    .event-section .featured__content h2,
    .event-section .featured__content h3 {
        margin-bottom: 0.8rem;
    }
    .event-section .featured__content p {
        font-size: var(--body-size);
        font-weight: var(--body-weight);
        line-height: 1.5;
        margin-bottom: 0.6rem;
        padding-top: 0.2rem;
    }
    .event-section .featured__content p:first-of-type {
        margin-top: 0.5rem;
    }
    .section__label {
        font-size: 0.75rem;
    }
    .press-grid {
        margin-bottom: 1rem;
    }
    .press-grid img {
        aspect-ratio: 3/4;
        height: auto;
    }
    .press-grid a::before {
        width: 24px;
        height: 24px;
        top: 0.6rem;
        right: 0.6rem;
        background-size: 12px;
    }
    .press-item {
        padding: 1.2rem 0;
    }
    .press-item p {
        margin-top: 0.8rem;
        font-size: var(--body-size);
        font-weight: var(--body-weight);
        line-height: 1.5;
    }
    .press-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    .press-list {
        gap: 1.5rem;
    }
    .philosophy-section {
        padding: 2rem 4%;
    }
    .philosophy-section__title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    .philosophy-section__label {
        font-size: 0.75rem;
    }
    .philosophy-section__text p {
        font-size: var(--body-size);
        font-weight: var(--body-weight);
        margin-bottom: 0.8rem;
    }
    .philosophy-section__quote {
        margin: 1rem 0;
        padding: 1rem 0;
    }
    .philosophy-section__quote p {
        font-size: var(--body-size);
        font-weight: var(--body-weight);
    }
    .philosophy-section::after {
        width: 200px;
        height: 200px;
    }
    .ingrid-collection {
        min-height: 35vh;
    }
    .ingrid-collection__content {
        padding: 2rem 4%;
    }
    .ingrid-collection__title {
        font-size: var(--h1-size);
        margin-bottom: 0.5rem;
    }
    .ingrid-collection__subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    .newsletter {
        padding: 2rem 4%;
    }
    .newsletter__logo img {
        width: 50px;
    }
    .newsletter__title {
        font-size: var(--h1-size);
        margin-bottom: 0.3rem;
    }
    .newsletter__subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    .newsletter__description {
        font-size: var(--body-size);
        font-weight: var(--body-weight);
        margin-bottom: 1rem;
    }
    .newsletter__form {
        gap: 0.8rem;
    }
    .newsletter__form input {
        padding: 0.8rem 1rem;
    }
    .story {
        padding: 2.5rem 4%;
    }
    .story__logo {
        width: 50px;
        margin-bottom: 1rem;
    }
    .story__label {
        font-size: 0.75rem;
        gap: 0.8rem;
    }
    .story__title,
    .story__content h2 {
        margin-bottom: 0.8rem;
    }
    .story__content p {
        font-size: var(--body-size);
        font-weight: var(--body-weight);
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }
    .story__quote {
        margin: 1rem 0;
        padding: 1rem 0;
    }
    .story__divider {
        height: 40px;
        margin-top: 1.5rem;
    }
    .story::before {
        width: 300px;
        height: 300px;
    }
    .page-header {
        padding-top: 6rem;
        padding-bottom: 1rem;
        min-height: auto;
    }
    .page-header .section__header h1 {
        font-size: var(--h1-size);
    }
    .page-header .section__header h2 {
        font-size: 1.4rem;
    }
    .page-header .section__subtitle {
        font-size: var(--body-size);
        font-weight: var(--body-weight);
    }
    .contact {
        padding: 1.5rem 4%;
    }
    .contact__container {
        gap: 1.5rem;
    }
    .contact__info {
        text-align: left;
    }
    .contact__logo {
        width: 40px;
        margin-bottom: 1rem;
    }
    .contact__label {
        font-size: 0.65rem;
        margin-bottom: 0.8rem;
        justify-content: flex-start;
    }
    .contact__title {
        font-size: var(--h1-size);
        margin-bottom: 0.8rem;
    }
    .contact__text {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 0.6rem;
    }
    .contact__details {
        gap: 0.8rem;
        margin-top: 1rem;
        align-items: flex-start;
    }
    .contact__detail {
        gap: 0.6rem;
        justify-content: flex-start;
    }
    .contact__detail svg {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }
    .contact__detail span,
    .contact__detail a {
        font-size: 0.8rem;
    }
    .contact__actions {
        margin-top: 1.2rem;
        gap: 0.6rem;
        justify-content: flex-start;
    }
    .contact__actions .btn {
        padding: var(--btn-padding-y) var(--btn-padding-x);
        font-size: var(--btn-font-size);
    }
    .contact__form-wrapper {
        padding: 1rem;
    }
    .contact__form-wrapper::before,
    .contact__form-wrapper::after {
        display: none;
    }
    .contact__form {
        gap: 0.8rem;
    }
    .contact__form .form-group label {
        font-size: 0.7rem;
        margin-bottom: 0.3rem;
    }
    .contact__form .form-group input,
    .contact__form .form-group select,
    .contact__form .form-group textarea {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
    .contact__form .btn {
        padding: var(--btn-padding-y) var(--btn-padding-x);
        font-size: var(--btn-font-size);
        align-self: flex-start;
    }
    .contact-address {
        padding: 1.5rem 4%;
    }
    .contact-address .section__header {
        text-align: left;
    }
    .contact-address .section__header h1,
    .contact-address .section__header h2 {
        font-size: var(--h1-size);
    }
    .contact-address .section__label {
        justify-content: flex-start;
    }
    .contact-address__card {
        padding: 1.2rem;
        text-align: left;
    }
    .contact-address__card h3 {
        font-size: 0.95rem;
    }
    .contact-address__card p {
        font-size: var(--body-size);
        font-weight: var(--body-weight);
    }
    .press {
        padding: 2rem 4%;
    }
    .btn {
        padding: var(--btn-padding-y) var(--btn-padding-x);
        font-size: var(--btn-font-size);
        letter-spacing: 0.1em;
        min-height: 48px;
    }
    .footer__inner {
        padding: 2rem 4% 1rem;
    }
    .footer__logo {
        width: 60px;
        margin-bottom: 1rem;
    }
    .footer__tagline {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    .footer__email {
        font-size: 0.75rem;
        margin-bottom: 1.2rem;
    }
    .footer__bottom p,
    .footer__bottom a {
        font-size: 0.7rem;
    }
    .footer__bottom {
        flex-wrap: wrap;
    }
    .footer__bottom p,
    .footer__bottom a {
        white-space: normal;
    }
    .video-label {
        font-size: 0.55rem;
        padding: 0.25rem 0.5rem;
    }
}

@media (max-width: 1200px) {
    .booklight-intro__grid,
    .booklight-callout__inner,
    .product-card,
    .assembly__grid,
    .specs__grid,
    .care__inner,
    .why__grid {
        grid-template-columns: 1fr;
    }
    .ingrid-intro__grid,
    .ingrid-product,
    .ingrid-product__content,
    .ingrid-craft__grid,
    .ingrid-lifecycle__grid {
        grid-template-columns: 1fr;
    }
    .circular-services__grid,
    .circular-feature__grid {
        grid-template-columns: 1fr;
    }
    .circular-feature--reverse .circular-feature__media,
    .circular-feature--reverse .circular-feature__content {
        order: 0;
    }
    .circular-growth__inner {
        grid-template-columns: 1fr;
    }
    .philosophy-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .philosophy-hero__media {
        height: auto;
    }
    .philosophy-hero__media a {
        height: auto;
    }
    .philosophy-hero__media img {
        height: auto;
    }
    .philosophy-step {
        grid-template-columns: 1fr;
    }
    .philosophy-step__media {
        min-height: auto;
    }
    .philosophy-step__media a {
        height: auto;
    }
    .philosophy-step__media img {
        height: auto;
    }
    .product-card--reverse .product-card__media {
        order: 0;
    }
    .ingrid-product--reverse .ingrid-product__media {
        order: 0;
    }
    .assembly__warning {
        grid-column: 1;
        margin-top: 0;
    }
    .book-hero__collage {
        right: 4%;
    }
}

@media (max-width: 1024px) {
    .ingrid-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .philosophy-page .hero--philosophy .hero__content {
        width: 92%;
        margin: 0 auto;
    }
    .book-hero__collage {
        top: 62%;
    }
    .book-hero__collage img {
        width: clamp(160px, 26vw, 220px);
    }
}

@media (max-width: 768px) {
    .philosophy-page .hero--philosophy {
        padding: 9rem 0 4rem;
    }
    .booklight-page .hero--booklight {
        height: auto;
        min-height: 100vh;
    }
    .ingrid-page .hero--ingrid {
        min-height: 100vh;
    }
    .circular-page .hero--circular {
        min-height: 100vh;
    }
    .book-hero__content {
        text-shadow: none;
        max-width: 85%;
    }
    .ingrid-hero__content {
        max-width: 85%;
    }
    .circular-hero__content {
        max-width: 85%;
    }
    .booklight-page .hero--booklight .hero__subtitle,
    .ingrid-page .hero--ingrid .hero__subtitle,
    .circular-page .hero--circular .hero__subtitle {
        font-size: 0.95rem;
        line-height: 1.55;
    }
    .book-hero__collage {
        display: none;
    }
    .booklight-intro__grid {
        gap: 2.5rem;
    }
    .product-card__body {
        padding: 2rem;
    }
    .product-form__row {
        grid-template-columns: 1fr;
    }
    .details-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .assembly__grid {
        gap: 2rem;
    }
    .care__inner {
        gap: 2rem;
    }
    .booklight-closing__actions {
        flex-direction: column;
        align-items: center;
    }
    .ingrid-intro__grid {
        gap: 2.5rem;
    }
    .ingrid-product__content {
        padding: 2rem;
    }
    .ingrid-craft__grid {
        gap: 2rem;
    }
    .ingrid-lifecycle__grid {
        gap: 2rem;
    }
    .circular-services__grid {
        gap: 1.5rem;
    }
    .circular-card {
        padding: 2rem;
    }
    .circular-feature__grid {
        gap: 2rem;
    }
    .testimonial-card {
        padding: 1.5rem;
    }
    .philosophy-section--expanded {
        padding: 5rem 5%;
    }
    .philosophy-highlight {
        padding: 1.2rem;
    }
    .philosophy-card {
        padding: 1.5rem;
    }
    .philosophy-badges {
        letter-spacing: 0.15em;
        gap: 1rem;
    }
    .newsletter__cta-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .booklight-page .hero--booklight .hero__content {
        padding-bottom: 2rem;
        max-width: 95%;
    }
    .booklight-page .hero--booklight .hero__subtitle {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    .ingrid-page .hero--ingrid .hero__subtitle,
    .circular-page .hero--circular .hero__subtitle {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    .booklight-intro__quote {
        padding: 1.5rem;
    }
    .product-card__body {
        padding: 1.5rem;
    }
    .ingrid-product__content {
        padding: 1.5rem;
    }
    .circular-card {
        padding: 1.5rem;
    }
    .philosophy-card {
        padding: 1.5rem;
    }
    .newsletter__cta-brand {
        font-size: 0.65rem;
    }
}

@media (min-width: 1200px) {
    .press-archive {
        padding-top: 1.5rem;
    }
    .press-archive .section__header {
        margin-bottom: 1.5rem;
    }
    .press-row--featured {
        max-width: 1000px;
        margin: 0 auto 2rem;
        padding-bottom: 2rem;
        gap: 2rem;
    }
    .press-item--split {
        max-width: 1000px;
        margin: 0 auto;
        gap: 2rem;
        margin-top: 2rem;
    }
    .press-item--centered {
        max-width: 1000px;
        margin: 2rem auto;
    }
    .press-item {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .press-item--split .press-item__image img {
        max-width: 380px;
    }
    .press-item--split .press-item__text p {
        font-size: var(--body-size);
        font-weight: var(--body-weight);
        line-height: 1.75;
    }
    .press-item--split .press-item__text h3 {
        font-size: 1.4rem;
    }
    .press-item--image-only .press-grid {
        width: 60%;
    }
    .press-item--image-only .press-grid img {
        max-width: 400px;
    }
    .press-item__center-image {
        max-width: 500px;
    }
    .press-item--split .press-grid--full img {
        max-width: 100%;
    }
}


.section::before,
.section__label::before,
.section__label::after,
.hero__tagline::before,
.contact__label::before,
.story__label::before,
.story__label::after,
.philosophy-section__label::before {
    content: none;
    display: none;
}

.section__label,
.section__label--left,
.contact__label,
.story__label,
.philosophy-section__label {
    justify-content: flex-start;
    gap: 0;
    padding-left: 0;
    text-align: left;
}

.section__header .section__label {
    justify-content: flex-start;
    text-align: left;
}

.section__header {
    max-width: min(1100px, 100%);
}

.section__subtitle,
.newsletter__description {
    margin-left: auto;
    margin-right: auto;
}

.btn {
    max-width: 100%;
    text-align: center;
    white-space: normal;
}

.hero__buttons,
.featured__buttons,
.booklight-closing__actions,
.contact__actions,
.philosophy-cta {
    gap: 1rem;
}

.hero__buttons .btn,
.philosophy-cta .btn,
.booklight-closing__actions .btn {
    min-width: min(100%, 22rem);
}

.hero__buttons .btn {
    min-width: min(100%, 14.25rem);
}

.booklight-page .hero__buttons .btn {
    min-width: min(100%, 22rem);
}

.home-page .hero--home .hero__buttons {
    width: min(36.5rem, calc(100vw - 12%));
}

.home-page .hero--home .hero__buttons .btn {
    flex: 1 1 0;
    min-width: 0;
}

.philosophy-cta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    width: 100%;
    max-width: 46rem;
    margin-top: 0;
}

.philosophy-cta .btn {
    margin: 0;
    width: 100%;
    min-width: 0;
}

@media (min-width: 1201px) {
    .featured,
    .event-section .featured,
    .circular-feature__grid,
    .ingrid-intro__grid,
    .ingrid-product,
    .ingrid-craft__grid,
    .ingrid-lifecycle__grid,
    .product-card,
    .care__inner,
    .specs__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.form-group,
.contact__form,
.contact__form-wrapper,
.product-form,
.product-form__row,
.product-card,
.product-card__body,
.ingrid-product,
.ingrid-product__content,
.newsletter__form {
    min-width: 0;
}

.form-group input,
.form-group select,
.form-group textarea,
.newsletter__form input {
    width: 100%;
    max-width: 100%;
}

.product-form__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-form .btn,
.product-form--compact .btn,
.contact__form .btn,
.newsletter__form .btn {
    width: 100%;
    justify-content: center;
}

.booklight-page .hero--booklight {
    min-height: 100vh;
}

.booklight-page .hero--booklight .hero__title {
    font-size: clamp(2.7rem, 5.4vw, 5.5rem);
    line-height: 1.08;
    max-width: 24ch;
}

.booklight-page .hero--booklight .hero__subtitle {
    font-size: clamp(0.98rem, 1.45vw, 1.18rem);
    line-height: 1.65;
    max-width: 720px;
    margin-bottom: 1.2rem;
}

.booklight-page .hero--booklight .hero__tagline {
    margin-bottom: 1rem;
}

.booklight-page .hero--booklight .book-hero__content {
    padding-bottom: 3rem;
}

.booklight-page .section__header h1 {
    font-size: clamp(2.15rem, 4.2vw, 3.5rem);
    line-height: 1.14;
    overflow-wrap: break-word;
    hyphens: manual;
    word-break: normal;
}

.booklight-page .inspiration .section__subtitle {
    max-width: 760px;
}

.booklight-page .inspiration__prompt {
    margin-top: 1.25rem;
    margin-bottom: 0;
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1vw, 1.05rem);
    font-weight: 500;
    letter-spacing: 0.14em;
    color: var(--dark-brown);
    text-transform: uppercase;
}

.booklight-page .inspiration-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    max-width: 1200px;
    gap: 2rem;
}

.booklight-page .inspiration-card {
    display: flex;
    flex-direction: column;
}

.booklight-page .inspiration-card img {
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.booklight-page .inspiration-card__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 1.5rem;
}

.booklight-page .product-grid {
    max-width: 1180px;
    gap: 3rem;
}

.booklight-page .product-card {
    align-items: stretch;
}

.booklight-page .product-card__media {
    background: var(--white);
}

.booklight-page .product-card__media img {
    height: min(52vw, 560px);
    min-height: 360px;
    max-height: 560px;
    object-fit: contain;
    padding: clamp(1rem, 2vw, 2rem);
}

.booklight-page .product-card__body h3,
.ingrid-product__details h3 {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.1vw + 0.55rem, 1.35rem);
    letter-spacing: 0.12em;
}

.booklight-intro__quote blockquote p {
    font-size: clamp(1.25rem, 1.8vw, 1.75rem);
    letter-spacing: 0;
}

.ingrid-craft__heading h1 {
    font-size: clamp(2.7rem, 5.2vw, 5.3rem);
    line-height: 1.08;
    max-width: 100%;
}

.ingrid-craft__grid {
    align-items: start;
}

.ingrid-craft__media.featured__slideshow {
    height: clamp(360px, 36vw, 500px);
}

.ingrid-craft__media img {
    height: 100%;
    object-fit: cover;
}

.why__grid {
    max-width: 1200px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: clamp(2rem, 4vw, 4rem);
}

.why__image {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin-top: 0;
    align-self: stretch;
}

.why__intro {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    margin-left: 0;
    max-width: 100%;
}

.why__list {
    grid-column: 2;
    grid-row: 2;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}

.why__image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 560px;
    min-height: 360px;
    object-fit: cover;
}

.circular-feature--craft .circular-feature__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.circular-feature--craft .circular-feature__heading {
    grid-column: 1 / -1;
    max-width: 1120px;
}

.circular-feature--craft .circular-feature__heading h1 {
    color: var(--gold);
    font-size: clamp(2.7rem, 5.6vw, 5.7rem);
    line-height: 1.06;
    max-width: 100%;
    margin-bottom: 0.5rem;
}

.circular-feature--craft .circular-feature__content {
    grid-column: 1;
    grid-row: 2;
}

.circular-feature--craft .circular-feature__media {
    grid-column: 2;
    grid-row: 2;
}

.circular-feature--craft .circular-feature__media a {
    display: block;
    width: 100%;
}

.circular-feature--craft .circular-feature__media img {
    width: 100%;
    height: clamp(360px, 38vw, 500px);
    max-height: none;
    object-fit: cover;
    object-position: center;
    background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 1024px) {
    .featured,
    .event-section .featured,
    .circular-feature__grid,
    .ingrid-intro__grid,
    .ingrid-product,
    .ingrid-craft__grid,
    .ingrid-lifecycle__grid,
    .product-card,
    .care__inner,
    .specs__grid {
        grid-template-columns: 1fr;
    }

    .circular-feature--craft .circular-feature__heading,
    .circular-feature--craft .circular-feature__content,
    .circular-feature--craft .circular-feature__media,
    .ingrid-craft__heading,
    .ingrid-craft__text,
    .ingrid-craft__media {
        grid-column: 1;
    }

    .circular-feature--craft .circular-feature__heading {
        grid-row: 1;
    }

    .circular-feature--craft .circular-feature__media {
        grid-row: 2;
    }

    .circular-feature--craft .circular-feature__grid,
    .circular-feature--craft .circular-feature__media,
    .circular-feature--craft .circular-feature__media a {
        width: 100%;
        max-width: 100%;
    }

    .circular-feature--craft .circular-feature__content {
        grid-row: 3;
    }

    .ingrid-craft__heading {
        grid-row: 1;
    }

    .ingrid-craft__media {
        grid-row: 2;
    }

    .ingrid-craft__text {
        grid-row: 3;
    }
}

@media (max-width: 768px) {
    .section__header {
        margin-bottom: 2rem;
    }

    .hero__buttons .btn,
    .philosophy-cta .btn,
    .booklight-closing__actions .btn {
        width: 100%;
        min-width: 0;
    }

    .booklight-page .inspiration-card {
        grid-template-columns: 1fr;
    }

    .booklight-page .inspiration-card img {
        height: auto;
        min-height: 320px;
        aspect-ratio: 4 / 3;
    }

    .ingrid-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

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

    .why__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why__image,
    .why__intro,
    .why__list {
        grid-column: 1;
    }

    .why__image {
        grid-row: 1;
    }

    .why__image img {
        max-width: 100%;
    }

    .why__intro {
        grid-row: 2;
        text-align: left;
        margin-left: 0;
        max-width: 100%;
    }

    .why__intro h1 {
        font-size: clamp(2rem, 10vw, 3rem);
        max-width: 100%;
    }

    .why__list {
        grid-row: 3;
        gap: 0.85rem;
    }

    .booklight-page .product-card__media img {
        min-height: 300px;
    }

    .circular-feature--craft .circular-feature__heading h1 {
        font-size: clamp(1.65rem, 7.2vw, 2.35rem);
        line-height: 1.15;
    }

    .ingrid-craft__heading h1 {
        font-size: clamp(2rem, 9vw, 3.1rem);
    }

    .circular-feature--craft .circular-feature__media img {
        width: 100%;
        height: min(118vw, 520px);
        max-height: none;
        object-fit: cover;
        object-position: center;
    }

    .ingrid-craft__media.featured__slideshow {
        height: min(95vw, 430px);
    }
}


.hero__tagline,
.hero__subtitle,
.hero__buttons {
    opacity: 1;
    animation: none;
    transform: none;
}

.hero__title,
.section__header h1,
.section__header h2,
.featured__content h1,
.featured__content h2,
.featured__content h3,
.why__intro h1,
.ingrid-craft__heading h1,
.circular-feature--craft .circular-feature__heading h1 {
    overflow-wrap: break-word;
    hyphens: manual;
}

.event-section .featured__content h1::after,
.event-section .featured__content h2::after,
.event-section .featured__content h3::after,
.contact--simple .contact__title::after,
.specs__card h3 {
    border-bottom: 0;
}

.event-section .featured__content h1::after,
.event-section .featured__content h2::after,
.event-section .featured__content h3::after,
.contact--simple .contact__title::after {
    content: none;
}

.form-feedback {
    margin-top: 0.85rem;
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.section--dark .form-feedback,
.booklight-closing .form-feedback {
    color: var(--gray-light);
}

@media (max-width: 768px) {
    .booklight-page .hero--booklight,
    .thisisus-page .hero--thisisus,
    .circular-page .hero--circular,
    .press-page .hero--press {
        align-items: flex-end;
        min-height: 100svh;
    }

    .booklight-page .hero--booklight .hero__overlay,
    .thisisus-page .hero--thisisus .hero__overlay,
    .circular-page .hero--circular .hero__overlay,
    .press-page .hero--press .hero__overlay {
        background:
            linear-gradient(
                to bottom,
                rgba(12, 9, 8, 0.08) 0%,
                rgba(12, 9, 8, 0.3) 34%,
                rgba(12, 9, 8, 0.78) 68%,
                rgba(12, 9, 8, 0.9) 100%
            );
    }

    .booklight-page .hero--booklight .hero__content,
    .thisisus-page .hero--thisisus .hero__content,
    .circular-page .hero--circular .hero__content,
    .press-page .hero--press .hero__content {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0 5.5% 2.1rem;
    }

    .thisisus-page .hero--thisisus .hero__subtitle,
    .circular-page .hero--circular .hero__subtitle {
        font-size: 0.9rem;
        line-height: 1.55;
        margin-bottom: 0.75rem;
    }

    .booklight-page .hero--booklight .hero__title,
    .thisisus-page .hero--thisisus .hero__title,
    .circular-page .hero--circular .hero__title,
    .press-page .hero--press .hero__title {
        font-size: clamp(2.15rem, 11vw, 3.3rem);
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }

    body.philosophy-page .circular-feature--craft .circular-feature__media,
    body.philosophy-page .circular-feature--craft .circular-feature__media a {
        display: block;
        justify-self: stretch;
        width: 88vw;
        max-width: none;
    }

    body.philosophy-page .circular-feature--craft .circular-feature__media img {
        width: 88vw;
        max-width: none;
        height: min(118vw, 520px);
        object-fit: cover;
        object-position: center;
    }
}


.product-collection .section__header,
.event-section .section__header {
    max-width: 1120px;
    text-align: left;
}

.product-collection .section__label,
.event-section .section__label {
    justify-content: flex-start;
    text-align: left;
}

.product-collection .section__subtitle,
.event-section .section__subtitle {
    max-width: 680px;
    margin-left: 0;
    margin-right: 0;
}

.booklight-intro__quote .section__label,
.booklight-page .inspiration .section__label {
    justify-content: flex-start;
    text-align: left;
}

.product-form .btn,
.product-form--compact .btn {
    width: auto;
    align-self: flex-start;
    justify-content: center;
}

.ingrid-collection {
    width: 100%;
    margin-left: 0;
}

.testimonials--cream {
    background: var(--cream);
    color: var(--black);
}

.assembly__intro h1,
.circular-feature__content h1,
.ingrid-lifecycle__text h1,
.thisisus-story__cta h1,
.circular-services .circular-card h1 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.16;
}

.circular-feature--craft .circular-feature__heading h1 {
    font-size: clamp(2.4rem, 4.4vw, 4.4rem);
    line-height: 1.08;
}

@media (max-width: 1200px) {
    .featured,
    .event-section .featured,
    .circular-feature__grid,
    .ingrid-intro__grid,
    .ingrid-product,
    .ingrid-craft__grid,
    .ingrid-lifecycle__grid,
    .product-card,
    .care__inner,
    .specs__grid {
        grid-template-columns: 1fr;
    }

    .product-card--reverse .product-card__media,
    .booklight-page .product-card--reverse .product-card__media {
        order: 0;
    }

    .booklight-page .product-card__media img {
        height: min(56vw, 520px);
        min-height: 320px;
    }

    .contact-page .page-header {
        min-height: auto;
        padding-top: 7rem;
        padding-bottom: 2rem;
    }

    .ingrid-craft__heading,
    .ingrid-craft__text,
    .ingrid-craft__media,
    .circular-feature--craft .circular-feature__heading,
    .circular-feature--craft .circular-feature__content,
    .circular-feature--craft .circular-feature__media {
        grid-column: 1;
    }

    .ingrid-craft__heading,
    .circular-feature--craft .circular-feature__heading {
        grid-row: 1;
    }

    .ingrid-craft__media,
    .circular-feature--craft .circular-feature__media {
        grid-row: 2;
    }

    .ingrid-craft__text,
    .circular-feature--craft .circular-feature__content {
        grid-row: 3;
    }

    .circular-feature--craft .circular-feature__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .why__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .why__image,
    .why__intro,
    .why__list {
        grid-column: 1;
    }

    .why__image {
        grid-row: 1;
    }

    .why__intro {
        grid-row: 2;
        text-align: left;
        margin-left: 0;
        max-width: 100%;
    }

    .why__list {
        grid-row: 3;
    }
}

@media (max-width: 768px) {
    .home-page .hero--home .hero__title {
        max-width: 10ch;
    }

    .booklight-intro__quote {
        padding: 2rem 1.35rem;
    }

    .product-form .btn,
    .product-form--compact .btn {
        width: 100%;
    }

    .circular-growth__actions .btn {
        width: 100%;
        min-width: 0;
    }

    body.philosophy-page .circular-feature--craft .circular-feature__grid {
        width: 100%;
        max-width: 100%;
        grid-template-columns: minmax(0, 1fr);
        justify-items: stretch;
    }

    body.philosophy-page .circular-feature--craft .circular-feature__heading,
    body.philosophy-page .circular-feature--craft .circular-feature__content,
    body.philosophy-page .circular-feature--craft .circular-feature__media {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    body.philosophy-page .circular-feature--craft .circular-feature__heading h1 {
        font-size: clamp(1.5rem, 6.2vw, 2rem);
        line-height: 1.18;
        overflow-wrap: normal;
        word-break: normal;
    }

    body.philosophy-page .circular-feature--craft .circular-feature__media,
    body.philosophy-page .circular-feature--craft .circular-feature__media a {
        width: 100%;
        max-width: 100%;
    }

    body.philosophy-page .circular-feature--craft .circular-feature__media img {
        width: 100%;
        max-width: 100%;
        height: min(112vw, 500px);
    }
}

@media (max-width: 360px) {
    .section {
        padding-left: 5%;
        padding-right: 5%;
    }

    .booklight-page .inspiration .section__header h1,
    .assembly__intro h1,
    .ingrid-lifecycle__text h1,
    .philosophy-page .circular-feature:not(.circular-feature--craft) .circular-feature__content h1,
    .circular-services .circular-card h1 {
        font-size: clamp(1.45rem, 7vw, 1.85rem);
        line-height: 1.18;
    }

    .booklight-intro__quote,
    .legal__block,
    .circular-card,
    .thisisus-role,
    .product-card__body,
    .ingrid-product__content,
    .contact__form-wrapper {
        padding: 1.25rem;
    }

    .booklight-intro__quote blockquote p {
        font-size: clamp(1.05rem, 6vw, 1.3rem);
    }
}


.booklight-page .product-collection .section__header {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: clamp(2.75rem, 4vw, 4rem);
}

.booklight-page .product-card {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.booklight-page .product-card--reverse .product-card__media {
    order: 0;
}

.booklight-page .product-card__media {
    display: grid;
    place-items: center;
}

.booklight-page .product-card__body {
    justify-content: center;
    padding: clamp(2rem, 3.6vw, 4rem);
}

.ingrid-craft__grid,
body.philosophy-page .circular-feature--craft .circular-feature__grid {
    max-width: 1200px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2.25rem, 4.5vw, 4rem);
    align-items: start;
}

.ingrid-craft__heading,
body.philosophy-page .circular-feature--craft .circular-feature__heading {
    grid-column: 1 / -1;
    grid-row: 1;
    align-self: start;
    max-width: none;
    margin-bottom: clamp(1rem, 2vw, 1.75rem);
}

.ingrid-craft__text,
body.philosophy-page .circular-feature--craft .circular-feature__content {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
}

.ingrid-craft__media,
body.philosophy-page .circular-feature--craft .circular-feature__media {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
}

.ingrid-craft__heading h1,
body.philosophy-page .circular-feature--craft .circular-feature__heading h1 {
    font-size: clamp(2rem, 3.4vw, 3.4rem);
    line-height: 1.1;
    max-width: 20ch;
    margin-bottom: 0;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
}

body.philosophy-page .circular-feature--craft .circular-feature__heading h1 {
    font-size: clamp(1.9rem, 3vw, 3.1rem);
    max-width: 24ch;
}

.ingrid-craft__media.featured__slideshow {
    height: clamp(360px, 36vw, 500px);
}

.ingrid-craft__media img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

body.philosophy-page .circular-feature--craft .circular-feature__media img {
    width: 100%;
    height: clamp(360px, 38vw, 500px);
    max-height: none;
    object-fit: cover;
    object-position: center;
    background: transparent;
}

body.philosophy-page .hero--philosophy {
    min-height: 100svh;
    padding: clamp(8rem, 12vh, 12rem) 0 clamp(5rem, 8vh, 7rem);
    align-items: center;
}

body.philosophy-page .hero--philosophy .hero__content {
    max-width: 960px;
}

body.philosophy-page .hero--philosophy .hero__title {
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto;
}

.philosophy-opening {
    background: var(--off-white);
    color: var(--black);
}

.philosophy-opening__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2.25rem, 5vw, 5rem);
    max-width: 1180px;
    margin: 0 auto;
    align-items: start;
}

.philosophy-opening .philosophy-highlight {
    max-width: none;
    margin: 0;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-soft);
    text-align: left;
}

.philosophy-opening .philosophy-highlight h3 {
    color: var(--dark-brown);
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    line-height: 1.35;
}

.philosophy-opening .philosophy-highlight p,
.philosophy-opening__text p {
    color: var(--gray);
    line-height: 1.75;
}

.philosophy-opening__text {
    display: grid;
    gap: 1rem;
}

.philosophy-opening .philosophy-subtitle {
    margin: 0.25rem 0 0;
    color: var(--black);
    font-size: clamp(2.1rem, 4vw, 3.8rem);
    line-height: 1.08;
    text-align: left;
}

.philosophy-opening .philosophy-quote {
    margin-top: 0.5rem;
    color: var(--black);
    font-size: clamp(1.05rem, 1.4vw, 1.3rem);
    text-align: left;
}

.philosophy-opening .philosophy-footnote {
    font-size: 0.76rem;
    line-height: 1.6;
    color: var(--gray);
}

@media (min-width: 901px) {
    .booklight-page .product-collection .section__header {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: clamp(2.5rem, 5vw, 4.5rem);
        row-gap: 0.75rem;
        align-items: start;
        text-align: left;
    }

    .booklight-page .product-collection .section__label {
        grid-column: 1;
        grid-row: 1;
        justify-content: flex-start;
        text-align: left;
    }

    .booklight-page .product-collection .section__header h1 {
        grid-column: 1;
        grid-row: 2 / span 4;
        max-width: 9.5ch;
        margin: 0;
    }

    .booklight-page .product-collection .section__subtitle {
        grid-column: 2;
        max-width: none;
        margin: 0;
    }

    .booklight-page .product-collection .section__subtitle:nth-of-type(1) {
        grid-row: 2;
    }

    .booklight-page .product-collection .section__subtitle:nth-of-type(2) {
        grid-row: 3;
    }

    .booklight-page .product-collection .section__subtitle:nth-of-type(3) {
        grid-row: 4;
    }

    .booklight-page .product-collection .section__subtitle:nth-of-type(4) {
        grid-row: 5;
    }

    .booklight-page .product-card,
    .ingrid-craft__grid,
    body.philosophy-page .circular-feature--craft .circular-feature__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .booklight-page .product-collection .section__header {
        display: block;
        text-align: left;
    }

    .booklight-page .product-collection .section__header h1 {
        max-width: 100%;
    }

    .booklight-page .product-collection .section__subtitle {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .booklight-page .product-card,
    .ingrid-craft__grid,
    body.philosophy-page .circular-feature--craft .circular-feature__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .philosophy-opening__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .ingrid-craft__heading,
    .ingrid-craft__text,
    .ingrid-craft__media,
    body.philosophy-page .circular-feature--craft .circular-feature__heading,
    body.philosophy-page .circular-feature--craft .circular-feature__content,
    body.philosophy-page .circular-feature--craft .circular-feature__media {
        grid-column: 1;
        grid-row: auto;
    }

    .ingrid-craft__heading h1,
    body.philosophy-page .circular-feature--craft .circular-feature__heading h1 {
        max-width: 100%;
        overflow-wrap: normal;
        word-break: normal;
    }

    .ingrid-craft__heading h1 {
        font-size: clamp(2rem, 12vw, 3.2rem);
    }

    body.philosophy-page .circular-feature--craft .circular-feature__heading h1 {
        font-size: clamp(1.7rem, 8vw, 2.35rem);
        line-height: 1.16;
    }
}

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


body:not(.home-page) .hero {
    min-height: 86svh;
    align-items: center;
    padding: clamp(6.5rem, 11vh, 9rem) 5% clamp(4.5rem, 8vh, 7rem);
}

body:not(.home-page) .hero__overlay {
    background:
        radial-gradient(circle at center, rgba(12, 9, 8, 0.56) 0%, rgba(12, 9, 8, 0.5) 42%, rgba(12, 9, 8, 0.72) 100%),
        linear-gradient(to bottom, rgba(12, 9, 8, 0.35) 0%, rgba(12, 9, 8, 0.26) 42%, rgba(12, 9, 8, 0.68) 100%);
}

body:not(.home-page) .hero__content,
.book-hero__content,
.ingrid-hero__content,
.circular-hero__content,
.philosophy-hero__content,
.press-page .hero--press .hero__content,
.thisisus-page .hero--thisisus .hero__content {
    width: min(90vw, 760px);
    max-width: 760px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    text-shadow: 0 3px 24px rgba(0, 0, 0, 0.58);
    isolation: isolate;
}

body:not(.home-page) .hero__content::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -2.2rem;
    right: -3rem;
    bottom: -2.2rem;
    left: -3rem;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.25) 55%, transparent 78%);
    pointer-events: none;
}

body:not(.home-page) .hero__tagline {
    display: block;
    width: 100%;
    margin: 0 auto 1rem;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.28em;
}

body:not(.home-page) .hero__title {
    max-width: 24ch;
    margin: 0 auto 1.15rem;
    text-align: center;
    color: #f2c833;
    font-size: clamp(2.7rem, 5.4vw, 5.5rem);
    line-height: 1.08;
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.68);
}

body:not(.home-page) .hero__title span {
    display: block;
}

body:not(.home-page) .hero__subtitle {
    max-width: 720px;
    margin: 0 auto 1.2rem;
    text-align: center;
    font-size: clamp(0.98rem, 1.45vw, 1.18rem);
    line-height: 1.65;
}

body:not(.home-page) .hero__buttons {
    justify-content: center;
}

.assembly__warning {
    max-width: 32rem;
    margin: clamp(1.25rem, 2vw, 1.75rem) 0 0;
    line-height: 1.65;
}


@media (min-width: 1201px) {
    .assembly__intro {
        grid-column: 1;
        grid-row: 1;
    }

    .assembly__list {
        grid-column: 2;
        grid-row: 1;
    }

    .assembly__warning {
        grid-column: 2;
        grid-row: 2;
    }
}

@media (min-width: 901px) {
    .booklight-page .why__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 1200px;
    }

    .booklight-page .why__image {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .booklight-page .why__intro {
        grid-column: 2;
        grid-row: 1;
    }

    .booklight-page .why__list {
        grid-column: 2;
        grid-row: 2;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .assembly__intro,
    .assembly__list,
    .assembly__warning {
        grid-column: 1;
        grid-row: auto;
    }

    .philosophy-cta {
        grid-template-columns: 1fr;
        max-width: none;
    }
}

@media (max-width: 768px) {
    body:not(.home-page) .hero {
        min-height: 100svh;
        align-items: center;
        padding: 6.5rem 6% 3rem;
    }

    body:not(.home-page) .hero__content,
    .book-hero__content,
    .ingrid-hero__content,
    .circular-hero__content,
    .philosophy-hero__content,
    .press-page .hero--press .hero__content,
    .thisisus-page .hero--thisisus .hero__content {
        width: 100%;
        max-width: none;
        margin: 0 auto;
        padding: 0;
        text-align: center;
    }

    body:not(.home-page) .hero__title {
        max-width: 22ch;
        font-size: clamp(2.15rem, 11vw, 3.3rem);
        line-height: 1.1;
    }

    body:not(.home-page) .hero__tagline {
        font-size: 0.72rem;
        letter-spacing: 0.22em;
        margin-bottom: 0.85rem;
    }

    body:not(.home-page) .hero__subtitle {
        font-size: 0.95rem;
        line-height: 1.58;
    }
}


.philosophy-page .hero--philosophy {
    min-height: 86svh;
    align-items: center;
    padding: clamp(6.5rem, 11vh, 9rem) 5% clamp(4.5rem, 8vh, 7rem);
}

.philosophy-page .hero--philosophy .hero__content {
    width: min(90vw, 760px);
    max-width: 760px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.philosophy-page .hero--philosophy .hero__tagline {
    display: block;
    width: 100%;
    margin: 0 auto 1rem;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.28em;
}

.philosophy-page .hero--philosophy .hero__title {
    max-width: 24ch;
    margin: 0 auto 1.15rem;
    text-align: center;
    color: #f2c833;
    font-size: clamp(2.7rem, 5.4vw, 5.5rem);
    line-height: 1.08;
}

.philosophy-page .hero--philosophy .hero__subtitle {
    max-width: 720px;
    margin: 0 auto 1.2rem;
    text-align: center;
    font-size: clamp(0.98rem, 1.45vw, 1.18rem);
    line-height: 1.65;
}

@media (max-width: 768px) {
    .philosophy-page .hero--philosophy {
        min-height: 100svh;
        align-items: center;
        padding: 6.5rem 6% 3rem;
    }

    .philosophy-page .hero--philosophy .hero__content {
        width: 100%;
        max-width: none;
        margin: 0 auto;
        padding: 0;
    }

    .philosophy-page .hero--philosophy .hero__title {
        max-width: 22ch;
        font-size: clamp(2.15rem, 11vw, 3.3rem);
        line-height: 1.1;
    }

    .philosophy-page .hero--philosophy .hero__tagline {
        font-size: 0.72rem;
        letter-spacing: 0.22em;
        margin-bottom: 0.85rem;
    }

    .philosophy-page .hero--philosophy .hero__subtitle {
        font-size: 0.95rem;
        line-height: 1.58;
    }
}


.booklight-intro__quote .section__label,
.booklight-page .inspiration .section__label,
.booklight-page .inspiration .section__header .section__label {
    justify-content: center;
    text-align: center;
    width: 100%;
}


.details-card__image {
    background: var(--off-white);
    isolation: isolate;
}

.details-card__image img {
    display: block;
    mix-blend-mode: multiply;
}


.press-page .press-item h3,
.press-page .press-row--featured .press-item h3,
.press-page .press-row--featured .press-item:first-child h3,
.press-page .press-item--split .press-item__text h3 {
    font-size: clamp(1.2rem, 1.7vw, 1.4rem);
    line-height: 1.28;
}


.contact__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 32rem);
}

.contact__actions .btn {
    width: 100%;
    min-width: 0;
}

@media (max-width: 600px) {
    .contact__actions {
        grid-template-columns: 1fr;
        width: 100%;
    }
}


@media (min-width: 901px) {
    .circular-page .circular-services__grid,
    .circular-page .circular-feature__grid,
    .philosophy-page .circular-feature:not(.circular-feature--craft) .circular-feature__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .circular-page .circular-feature--reverse .circular-feature__media,
    .philosophy-page .circular-feature--reverse .circular-feature__media {
        order: 2;
    }

    .circular-page .circular-feature--reverse .circular-feature__content,
    .philosophy-page .circular-feature--reverse .circular-feature__content {
        order: 1;
    }
}


.ingrid-page .ingrid-beyond > .section__header {
    width: min(100%, 900px);
    max-width: min(900px, 100%);
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.ingrid-page .ingrid-beyond > .section__header .section__label {
    justify-content: flex-start;
    text-align: left;
    width: auto;
}

.ingrid-page .ingrid-beyond > .section__header .section__subtitle {
    margin-left: 0;
    margin-right: 0;
    max-width: 760px;
}


@media (min-width: 901px) {
    .ingrid-craft__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto minmax(0, 1fr);
        align-items: stretch;
    }

    .ingrid-craft__heading {
        grid-column: 1;
        grid-row: 1;
        margin-bottom: clamp(1rem, 2vw, 1.75rem);
    }

    .ingrid-craft__text {
        grid-column: 1;
        grid-row: 2;
    }

    .ingrid-craft__media {
        grid-column: 2;
        grid-row: 1 / span 2;
        align-self: stretch;
    }

    .ingrid-craft__media.featured__slideshow {
        height: 100%;
        min-height: 0;
        margin-bottom: 0;
    }

    .ingrid-craft__media .featured__slideshow-thumbs {
        bottom: 1rem;
    }

    .ingrid-craft__media.featured__slideshow > img {
        height: 100%;
        object-fit: cover;
    }
}


.contact-page .page-header .section__header {
    width: min(90vw, 760px);
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.contact-page .page-header .section__label {
    justify-content: center;
    text-align: center;
    width: 100%;
}


.circular-page .circular-services > .section__header,
.testimonials > .section__header,
.ingrid-products > .section__header,
.thisisus-roles > .section__header,
.thisisus-vibes > .section__header,
.thisisus-cta > .section__header,
.press-page .press-archive > .section__header,
.legal-page .page-header > .section__header,
.details > .section__header {
    text-align: center;
}

.circular-page .circular-services > .section__header > .section__label,
.testimonials > .section__header > .section__label,
.ingrid-products > .section__header > .section__label,
.thisisus-roles > .section__header > .section__label,
.thisisus-vibes > .section__header > .section__label,
.thisisus-cta > .section__header > .section__label,
.press-page .press-archive > .section__header > .section__label,
.press-page .press-item--centered > .section__label,
.legal-page .page-header > .section__header > .section__label,
.details > .section__header > .section__label {
    justify-content: center;
    text-align: center;
    width: 100%;
}

.product-collection .section__header > .section__label,
.event-section .section__label,
.section__label--left,
.circular-growth__content > .section__label,
.thisisus-story__hero-text > .section__label {
    justify-content: flex-start;
    text-align: left;
    width: auto;
}

@media (min-width: 769px) {
    .contact-address > .section__header {
        text-align: center;
    }

    .contact-address > .section__header > .section__label {
        justify-content: center;
        text-align: center;
        width: 100%;
    }
}


@media (min-width: 901px) {
    body.philosophy-page .circular-feature--craft .circular-feature__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
        align-items: start;
        max-width: 1200px;
    }

    body.philosophy-page .circular-feature--craft .circular-feature__copy {
        grid-column: 1;
        grid-row: 1;
        display: flex;
        flex-direction: column;
        align-self: stretch;
        min-width: 0;
    }

    body.philosophy-page .circular-feature--craft .circular-feature__heading {
        grid-column: auto;
        grid-row: auto;
        align-self: start;
        max-width: 100%;
        margin-bottom: clamp(1.25rem, 2.4vw, 2rem);
    }

    body.philosophy-page .circular-feature--craft .circular-feature__content {
        grid-column: auto;
        grid-row: auto;
        align-self: start;
    }

    body.philosophy-page .circular-feature--craft .circular-feature__media {
        grid-column: 2;
        grid-row: 1;
        align-self: stretch;
        min-height: 0;
        position: relative;
        overflow: hidden;
    }

    body.philosophy-page .circular-feature--craft .circular-feature__media a {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    body.philosophy-page .circular-feature--craft .circular-feature__media img {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: 0;
        object-fit: cover;
        object-position: center;
    }
}

body.booklight-page .hero--booklight .hero__title,
body.ingrid-page .hero--ingrid .hero__title,
body.circular-page .hero--circular .hero__title,
body.philosophy-page .hero--philosophy .hero__title,
body.press-page .hero--press .hero__title,
body.thisisus-page .hero--thisisus .hero__title {
    max-width: 24ch;
    margin: 0 auto 1.15rem;
    text-align: center;
    font-size: clamp(2.7rem, 5.4vw, 5.5rem);
    line-height: 1.08;
}

body.booklight-page .hero--booklight .hero__subtitle,
body.ingrid-page .hero--ingrid .hero__subtitle,
body.circular-page .hero--circular .hero__subtitle,
body.philosophy-page .hero--philosophy .hero__subtitle,
body.press-page .hero--press .hero__subtitle,
body.thisisus-page .hero--thisisus .hero__subtitle {
    max-width: 720px;
    margin: 0 auto 1.2rem;
    text-align: center;
    font-size: clamp(0.98rem, 1.45vw, 1.18rem);
    line-height: 1.65;
}

body.booklight-page .hero--booklight .hero__tagline,
body.ingrid-page .hero--ingrid .hero__tagline,
body.circular-page .hero--circular .hero__tagline,
body.philosophy-page .hero--philosophy .hero__tagline,
body.press-page .hero--press .hero__tagline,
body.thisisus-page .hero--thisisus .hero__tagline {
    font-size: 0.9rem;
    line-height: 1.4;
    letter-spacing: 0.28em;
}

.section > .section__header > h1,
.section > .section__header > h2,
.page-header:not(.page-header--bg) > .section__header > h1,
.page-header:not(.page-header--bg) > .section__header > h2 {
    font-size: var(--h1-size);
    line-height: 1.25;
    letter-spacing: 0.05em;
}

body.contact-page .page-header--bg .section__header h1 {
    font-size: clamp(2.7rem, 5.4vw, 5.5rem);
    line-height: 1.08;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    body.booklight-page .hero--booklight .hero__title,
    body.ingrid-page .hero--ingrid .hero__title,
    body.circular-page .hero--circular .hero__title,
    body.philosophy-page .hero--philosophy .hero__title,
    body.press-page .hero--press .hero__title,
    body.thisisus-page .hero--thisisus .hero__title {
        max-width: 22ch;
        font-size: clamp(2.15rem, 11vw, 3.3rem);
        line-height: 1.1;
    }

    body.booklight-page .hero--booklight .hero__subtitle,
    body.ingrid-page .hero--ingrid .hero__subtitle,
    body.circular-page .hero--circular .hero__subtitle,
    body.philosophy-page .hero--philosophy .hero__subtitle,
    body.press-page .hero--press .hero__subtitle,
    body.thisisus-page .hero--thisisus .hero__subtitle {
        font-size: 0.95rem;
        line-height: 1.58;
    }

    body.booklight-page .hero--booklight .hero__tagline,
    body.ingrid-page .hero--ingrid .hero__tagline,
    body.circular-page .hero--circular .hero__tagline,
    body.philosophy-page .hero--philosophy .hero__tagline,
    body.press-page .hero--press .hero__tagline,
    body.thisisus-page .hero--thisisus .hero__tagline {
        font-size: 0.72rem;
        letter-spacing: 0.22em;
        margin-bottom: 0.85rem;
    }

    body.contact-page .page-header--bg .section__header h1 {
        font-size: clamp(2.15rem, 11vw, 3.3rem);
        line-height: 1.1;
    }
}

body.booklight-page .hero--booklight .hero__title > span,
body.ingrid-page .hero--ingrid .hero__title > span,
body.circular-page .hero--circular .hero__title > span,
body.philosophy-page .hero--philosophy .hero__title > span,
body.press-page .hero--press .hero__title > span,
body.thisisus-page .hero--thisisus .hero__title > span {
    display: block;
    opacity: 1;
    animation: titleReveal 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (prefers-reduced-motion: reduce) {
    body.booklight-page .hero--booklight .hero__title > span,
    body.ingrid-page .hero--ingrid .hero__title > span,
    body.circular-page .hero--circular .hero__title > span,
    body.philosophy-page .hero--philosophy .hero__title > span,
    body.press-page .hero--press .hero__title > span,
    body.thisisus-page .hero--thisisus .hero__title > span {
        animation: none;
        opacity: 1;
        transform: none;
        clip-path: none;
    }
}

body:not(.home-page) .hero {
    min-height: 86svh;
    align-items: flex-end;
    justify-content: flex-start;
    padding: clamp(6rem, 10vh, 8rem) 5% clamp(3.8rem, 7vh, 5.5rem);
}

body:not(.home-page) .hero__overlay {
    background:
        linear-gradient(
            90deg,
            rgba(12, 9, 8, 0.86) 0%,
            rgba(12, 9, 8, 0.62) 34%,
            rgba(12, 9, 8, 0.18) 60%,
            transparent 78%
        ),
        linear-gradient(
            to top,
            rgba(26, 21, 18, 0.56) 0%,
            rgba(26, 21, 18, 0.22) 26%,
            transparent 52%
        );
}

body.booklight-page .hero--booklight .hero__overlay,
body.ingrid-page .hero--ingrid .hero__overlay,
body.circular-page .hero--circular .hero__overlay,
body.philosophy-page .hero--philosophy .hero__overlay,
body.press-page .hero--press .hero__overlay,
body.thisisus-page .hero--thisisus .hero__overlay {
    background:
        linear-gradient(
            90deg,
            rgba(12, 9, 8, 0.86) 0%,
            rgba(12, 9, 8, 0.62) 34%,
            rgba(12, 9, 8, 0.18) 60%,
            transparent 78%
        ),
        linear-gradient(
            to top,
            rgba(26, 21, 18, 0.56) 0%,
            rgba(26, 21, 18, 0.22) 26%,
            transparent 52%
        );
}

body:not(.home-page) .hero__content,
body.booklight-page .hero--booklight .book-hero__content,
body.ingrid-page .hero--ingrid .ingrid-hero__content,
body.circular-page .hero--circular .circular-hero__content,
body.philosophy-page .hero--philosophy .philosophy-hero__content,
body.press-page .hero--press .hero__content,
body.thisisus-page .hero--thisisus .hero__content,
body.booklight-page .book-hero__content,
body.ingrid-page .ingrid-hero__content,
body.circular-page .circular-hero__content,
body.philosophy-page .philosophy-hero__content,
body.press-page .hero--press .hero__content,
body.thisisus-page .hero--thisisus .hero__content {
    width: min(90vw, 560px);
    max-width: 560px;
    margin: 0;
    padding: 2rem 2.2rem 0;
    text-align: left;
    background: linear-gradient(90deg, rgba(12, 9, 8, 0.58) 0%, rgba(12, 9, 8, 0.28) 72%, rgba(12, 9, 8, 0) 100%);
    text-shadow: 0 3px 24px rgba(0, 0, 0, 0.62);
}

body:not(.home-page) .hero__content::before {
    display: none;
}

body.booklight-page .hero--booklight .hero__title,
body.ingrid-page .hero--ingrid .hero__title,
body.circular-page .hero--circular .hero__title,
body.philosophy-page .hero--philosophy .hero__title,
body.press-page .hero--press .hero__title,
body.thisisus-page .hero--thisisus .hero__title {
    max-width: 12ch;
    margin: 0 0 1rem;
    text-align: left;
    font-size: var(--h1-size);
    line-height: 1.14;
}

body.booklight-page .hero--booklight .hero__subtitle,
body.ingrid-page .hero--ingrid .hero__subtitle,
body.circular-page .hero--circular .hero__subtitle,
body.philosophy-page .hero--philosophy .hero__subtitle,
body.press-page .hero--press .hero__subtitle,
body.thisisus-page .hero--thisisus .hero__subtitle {
    max-width: 32rem;
    margin: 0 0 1.45rem;
    text-align: left;
    font-size: clamp(0.95rem, 1.18vw, 1.08rem);
    line-height: 1.62;
}

body.booklight-page .hero--booklight .hero__tagline,
body.ingrid-page .hero--ingrid .hero__tagline,
body.circular-page .hero--circular .hero__tagline,
body.philosophy-page .hero--philosophy .hero__tagline,
body.press-page .hero--press .hero__tagline,
body.thisisus-page .hero--thisisus .hero__tagline {
    width: auto;
    justify-content: flex-start;
    margin: 0 0 1rem;
    text-align: left;
}

body:not(.home-page) .hero__buttons {
    justify-content: flex-start;
}

body.contact-page .page-header--bg {
    align-items: flex-start;
    justify-content: flex-end;
    min-height: 76svh;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: clamp(3.8rem, 7vh, 5.5rem);
}

body.contact-page .page-header--bg .section__header {
    width: min(90vw, 560px);
    max-width: 560px;
    margin: 0;
    padding: 2rem 2.2rem 0;
    text-align: left;
    background: linear-gradient(90deg, rgba(12, 9, 8, 0.58) 0%, rgba(12, 9, 8, 0.28) 72%, rgba(12, 9, 8, 0) 100%);
}

body.contact-page .page-header--bg .section__label {
    justify-content: flex-start;
    text-align: left;
    width: auto;
}

body.contact-page .page-header--bg .section__header h1 {
    max-width: 12ch;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    font-size: var(--h1-size);
    line-height: 1.14;
}

@media (max-width: 768px) {
    body:not(.home-page) .hero {
        min-height: 100svh;
        align-items: flex-end;
        padding: 6.25rem 5.5% 2.4rem;
    }

    body:not(.home-page) .hero__overlay {
        background:
            linear-gradient(
                to top,
                rgba(10, 8, 7, 0.99) 0%,
                rgba(10, 8, 7, 0.93) 38%,
                rgba(10, 8, 7, 0.58) 68%,
                rgba(10, 8, 7, 0.08) 90%
            ),
            linear-gradient(
                90deg,
                rgba(10, 8, 7, 0.58) 0%,
                rgba(10, 8, 7, 0.14) 48%,
                transparent 78%
            );
    }

    body.booklight-page .hero--booklight .hero__overlay,
    body.ingrid-page .hero--ingrid .hero__overlay,
    body.circular-page .hero--circular .hero__overlay,
    body.philosophy-page .hero--philosophy .hero__overlay,
    body.press-page .hero--press .hero__overlay,
    body.thisisus-page .hero--thisisus .hero__overlay {
        background:
            linear-gradient(
                to top,
                rgba(10, 8, 7, 0.99) 0%,
                rgba(10, 8, 7, 0.93) 38%,
                rgba(10, 8, 7, 0.58) 68%,
                rgba(10, 8, 7, 0.08) 90%
            ),
            linear-gradient(
                90deg,
                rgba(10, 8, 7, 0.58) 0%,
                rgba(10, 8, 7, 0.14) 48%,
                transparent 78%
            );
    }

    body:not(.home-page) .hero__content,
    body.booklight-page .hero--booklight .book-hero__content,
    body.ingrid-page .hero--ingrid .ingrid-hero__content,
    body.circular-page .hero--circular .circular-hero__content,
    body.philosophy-page .hero--philosophy .philosophy-hero__content,
    body.press-page .hero--press .hero__content,
    body.thisisus-page .hero--thisisus .hero__content,
    body.booklight-page .book-hero__content,
    body.ingrid-page .ingrid-hero__content,
    body.circular-page .circular-hero__content,
    body.philosophy-page .philosophy-hero__content,
    body.press-page .hero--press .hero__content,
    body.thisisus-page .hero--thisisus .hero__content {
        width: min(100%, 24rem);
        max-width: none;
        margin: 0;
        padding: 0;
        text-align: left;
        background: none;
    }

    body.booklight-page .hero--booklight .hero__title,
    body.ingrid-page .hero--ingrid .hero__title,
    body.circular-page .hero--circular .hero__title,
    body.philosophy-page .hero--philosophy .hero__title,
    body.press-page .hero--press .hero__title,
    body.thisisus-page .hero--thisisus .hero__title {
        max-width: 13ch;
        margin: 0 0 0.75rem;
        text-align: left;
        font-size: clamp(1.7rem, 7vw, 2.65rem);
        line-height: 1.08;
    }

    body.booklight-page .hero--booklight .hero__subtitle,
    body.ingrid-page .hero--ingrid .hero__subtitle,
    body.circular-page .hero--circular .hero__subtitle,
    body.philosophy-page .hero--philosophy .hero__subtitle,
    body.press-page .hero--press .hero__subtitle,
    body.thisisus-page .hero--thisisus .hero__subtitle {
        max-width: 100%;
        margin: 0 0 1.05rem;
        text-align: left;
        font-size: clamp(0.82rem, 3.5vw, 0.95rem);
        line-height: 1.48;
    }

    body.booklight-page .hero--booklight .hero__tagline,
    body.ingrid-page .hero--ingrid .hero__tagline,
    body.circular-page .hero--circular .hero__tagline,
    body.philosophy-page .hero--philosophy .hero__tagline,
    body.press-page .hero--press .hero__tagline,
    body.thisisus-page .hero--thisisus .hero__tagline {
        justify-content: flex-start;
        margin-bottom: 0.75rem;
        text-align: left;
        font-size: 0.68rem;
        letter-spacing: 0.2em;
    }

    body.contact-page .page-header--bg {
        align-items: flex-start;
        justify-content: flex-end;
        min-height: 100svh;
        padding: 6.25rem 5.5% clamp(4rem, 9vh, 6rem);
    }

    body.contact-page .page-header--bg .section__header {
        width: min(100%, 24rem);
        max-width: none;
        margin: 0;
        padding: 0;
        text-align: left;
        background: none;
    }

    body.contact-page .page-header--bg .section__header h1 {
        max-width: 13ch;
        text-align: left;
        font-size: clamp(1.7rem, 7vw, 2.65rem);
        line-height: 1.08;
    }
}

@media (min-width: 769px) {
    body:not(.home-page) .hero {
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
        min-height: 86svh;
        padding: clamp(6rem, 10vh, 8rem) 5% clamp(2.2rem, 4vh, 3.2rem);
    }

    body:not(.home-page) .hero__content,
    body.booklight-page .hero--booklight .book-hero__content,
    body.ingrid-page .hero--ingrid .ingrid-hero__content,
    body.circular-page .hero--circular .circular-hero__content,
    body.philosophy-page .hero--philosophy .philosophy-hero__content,
    body.press-page .hero--press .hero__content,
    body.thisisus-page .hero--thisisus .hero__content {
        align-self: flex-end;
        width: min(90vw, 560px);
        max-width: 560px;
        margin: 0;
        padding: 2rem 2.2rem 0;
        text-align: left;
        background: linear-gradient(90deg, rgba(12, 9, 8, 0.58) 0%, rgba(12, 9, 8, 0.28) 72%, rgba(12, 9, 8, 0) 100%);
    }

    body:not(.home-page) .hero__content > * {
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }

    body.booklight-page .hero--booklight .hero__title,
    body.ingrid-page .hero--ingrid .hero__title,
    body.circular-page .hero--circular .hero__title,
    body.philosophy-page .hero--philosophy .hero__title,
    body.press-page .hero--press .hero__title,
    body.thisisus-page .hero--thisisus .hero__title {
        max-width: 12ch;
        font-size: var(--h1-size);
        line-height: 1.14;
    }

    body.booklight-page .hero--booklight .hero__subtitle,
    body.ingrid-page .hero--ingrid .hero__subtitle,
    body.circular-page .hero--circular .hero__subtitle,
    body.philosophy-page .hero--philosophy .hero__subtitle,
    body.press-page .hero--press .hero__subtitle,
    body.thisisus-page .hero--thisisus .hero__subtitle {
        max-width: 32rem;
        font-size: clamp(0.95rem, 1.18vw, 1.08rem);
        line-height: 1.62;
    }

    body.booklight-page .hero--booklight .hero__tagline,
    body.ingrid-page .hero--ingrid .hero__tagline,
    body.circular-page .hero--circular .hero__tagline,
    body.philosophy-page .hero--philosophy .hero__tagline,
    body.press-page .hero--press .hero__tagline,
    body.thisisus-page .hero--thisisus .hero__tagline {
        width: auto;
        justify-content: flex-start;
        font-size: 0.9rem;
        line-height: 1.4;
        letter-spacing: 0.28em;
    }

    body.contact-page .page-header--bg {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        min-height: 76svh;
        padding: clamp(6rem, 10vh, 8rem) 5% clamp(2.2rem, 4vh, 3.2rem);
    }

    body.contact-page .page-header--bg .section__header {
        width: min(90vw, 560px);
        max-width: 560px;
        margin: 0;
        padding: 2rem 2.2rem 0;
        place-items: start;
        text-align: left;
        background: linear-gradient(90deg, rgba(12, 9, 8, 0.58) 0%, rgba(12, 9, 8, 0.28) 72%, rgba(12, 9, 8, 0) 100%);
    }

    body.contact-page .page-header--bg .section__header > * {
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }

    body.contact-page .page-header--bg .section__label {
        width: auto;
        justify-content: flex-start;
    }

    body.contact-page .page-header--bg .section__header h1 {
        max-width: 12ch;
        font-size: var(--h1-size);
        line-height: 1.14;
    }
}

body.contact-page .page-header--bg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: clamp(420px, 54svh, 560px);
    padding: clamp(6.5rem, 9vh, 8rem) 5% clamp(3rem, 5vh, 4rem);
}

body.contact-page .page-header--bg .section__header {
    width: min(90vw, 760px);
    max-width: 760px;
    margin: 0 auto;
    padding: 0;
    place-items: center;
    text-align: center;
    background: none;
}

body.contact-page .page-header--bg .section__header > * {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

body.contact-page .page-header--bg .section__label {
    width: 100%;
    justify-content: center;
    text-align: center;
}

body.contact-page .page-header--bg .section__header h1 {
    max-width: 16ch;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: clamp(2.1rem, 3.8vw, 3.8rem);
    line-height: 1.08;
}

@media (max-width: 768px) {
    body.contact-page .page-header--bg {
        min-height: 58svh;
        padding: 5.75rem 5.5% 3rem;
    }

    body.contact-page .page-header--bg .section__header {
        width: min(100%, 24rem);
        max-width: none;
        margin: 0 auto;
        padding: 0;
        text-align: center;
    }

    body.contact-page .page-header--bg .section__header h1 {
        max-width: 14ch;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        font-size: clamp(1.85rem, 7.2vw, 2.45rem);
        line-height: 1.08;
    }
}

.booklight-intro__quote blockquote::before {
    transform: rotate(180deg);
}

.thisisus-story__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    max-width: 1200px;
    align-items: start;
}

.thisisus-story__grid .thisisus-story__block {
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.booklight-page .inspiration-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 980px;
    gap: clamp(2rem, 5vw, 4rem);
}

.booklight-page .inspiration-card {
    border: 0;
    box-shadow: var(--shadow-soft);
    background: var(--white);
}

.booklight-page .inspiration-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.booklight-page .inspiration-card__content {
    padding: clamp(1.5rem, 3vw, 2.4rem);
}

@media (max-width: 900px) {
    .thisisus-story__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.5rem;
    }

    .booklight-page .inspiration-grid {
        max-width: 100%;
        gap: 2rem;
    }

    .booklight-page .inspiration-card img {
        aspect-ratio: 4 / 5;
    }
}

:root {
    --h1-size: clamp(1.85rem, 3vw + 0.2rem, 3.15rem);
    --home-h1-size: var(--h1-size);
}

.home-page .hero--home .hero__bg,
.booklight-page .hero--booklight .hero__bg {
    background: var(--dark-shade);
}

.home-page .hero--home .hero__slide > img,
.booklight-page .hero--booklight .hero__image {
    object-fit: cover;
    object-position: center center;
}

.section > .section__header > h1,
.section > .section__header > h2,
.page-header:not(.page-header--bg) > .section__header > h1,
.page-header:not(.page-header--bg) > .section__header > h2,
.home-page .ingrid-collection__title,
.home-page .section__title,
.home-page .newsletter__title,
.home-page .story__title,
.newsletter__title,
.contact__title,
.booklight-callout__text h1,
.booklight-callout__text h2,
.assembly__intro h1,
.care__text h1,
.why__intro h1,
.ingrid-intro__text h1,
.ingrid-intro__text h2,
.ingrid-craft__heading h1,
.ingrid-craft__heading h2,
.ingrid-craft__heading h3,
.ingrid-lifecycle__text h1,
.thisisus-story__hero-text h1,
.thisisus-story__cta h1,
.booklight-closing__inner h1,
.circular-social__inner h1 {
    font-size: clamp(1.45rem, 1.8vw + 0.35rem, 2.25rem);
    line-height: 1.18;
}

.circular-feature__content h1,
.circular-feature__content h2,
.ingrid-craft__heading h1,
.circular-feature--craft .circular-feature__heading h1 {
    font-size: clamp(1.7rem, 2.4vw + 0.25rem, 2.7rem);
    line-height: 1.12;
}

.featured__content h3,
.event-section .featured__content h3,
.inspiration-card__content h3,
.product-card__body h3,
.details-card h3,
.specs__card h3,
.thisisus-role h3,
.thisisus-vibes__card h3,
.contact-address__card h3,
.ingrid-product__details h3,
.ingrid-gallery__item figcaption,
.photo-credit,
.video-label {
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.featured__content h3,
.event-section .featured__content h3,
.inspiration-card__content h3,
.product-card__body h3,
.ingrid-product__details h3 {
    font-size: clamp(1.15rem, 1vw + 0.85rem, 1.55rem);
    line-height: 1.35;
}

.event-section .featured__content h3 {
    max-width: 24ch;
}

.circular-card h1,
.circular-card h2 {
    font-weight: 100;
    font-size: clamp(1.45rem, 1.35vw + 1rem, 2.15rem);
}

.philosophy-opening .philosophy-subtitle {
    font-size: clamp(2rem, 2.9vw, 3.15rem);
    line-height: 1.12;
}

.details-card h3,
.specs__card h3,
.thisisus-role h3,
.thisisus-vibes__card h3,
.contact-address__card h3 {
    font-size: clamp(0.82rem, 0.55vw + 0.72rem, 1rem);
    line-height: 1.45;
}

.circular-card h1,
.circular-card h2,
.thisisus-story__block h1,
.thisisus-story__block h2,
.thisisus-story__block h3 {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1.25rem, 1.25vw + 0.95rem, 2rem);
    line-height: 1.32;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.circular-services .circular-card h1 {
    font-weight: 100;
}

.thisisus-role {
    background: transparent;
    border: 0;
    padding: 0;
}

.thisisus-role img {
    box-shadow: var(--shadow-soft);
}

.ingrid-gallery__item figcaption {
    font-style: normal;
}

@media (max-width: 768px) {
    :root {
        --h1-size: clamp(1.75rem, 7vw, 2.55rem);
        --home-h1-size: var(--h1-size);
    }

    .home-page .hero--home .hero__slide > img {
        object-fit: cover;
        object-position: center center;
    }

    .booklight-page .hero--booklight .hero__image {
        object-fit: cover;
        object-position: center center;
    }

    .section > .section__header > h1,
    .section > .section__header > h2,
    .page-header:not(.page-header--bg) > .section__header > h1,
    .page-header:not(.page-header--bg) > .section__header > h2 {
        font-size: clamp(1.55rem, 6.2vw, 2.25rem);
        line-height: 1.16;
    }
}

@media (max-width: 768px) {
    .home-page .hero--home {
        display: block;
        min-height: 0;
        height: auto;
        padding: 0;
        background: var(--dark-shade);
        overflow: hidden;
    }

    .home-page .hero--home .hero__bg {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        height: clamp(250px, 72vw, 330px);
        overflow: hidden;
    }

    .home-page .hero--home .hero__overlay {
        display: none;
    }

    .home-page .hero--home .hero__content {
        position: relative;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: clamp(1.45rem, 5vw, 2rem) 1rem 2.25rem;
        background: linear-gradient(180deg, rgba(12, 9, 8, 0.98) 0%, #070605 100%);
        text-shadow: none;
    }

    .home-page .hero--home .hero__title {
        max-width: 9ch;
        margin-bottom: 1rem;
    }

    .home-page .hero--home .hero__subtitle {
        max-width: 100%;
        margin-bottom: 1.35rem;
    }

    .home-page .hero--home .hero__buttons {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 0.75rem;
    }

    .home-page .hero--home .hero__buttons .btn {
        width: 100%;
    }

    body.booklight-page .hero--booklight {
        display: block;
        min-height: 0;
        height: auto;
        padding: 0;
        background: var(--dark-shade);
        overflow: hidden;
    }

    body.booklight-page .hero--booklight .hero__bg {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        height: clamp(300px, 82vw, 360px);
        overflow: hidden;
    }

    body.booklight-page .hero--booklight .hero__overlay {
        display: none;
    }

    body.booklight-page .hero--booklight .hero__content,
    body.booklight-page .hero--booklight .book-hero__content {
        position: relative;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: clamp(1.45rem, 5vw, 2rem) 1rem 2.25rem;
        background: linear-gradient(180deg, rgba(12, 9, 8, 0.98) 0%, #070605 100%);
        text-shadow: none;
    }

    body.booklight-page .hero--booklight .hero__title {
        max-width: 13ch;
        margin-bottom: 1rem;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }

    body.booklight-page .hero--booklight .hero__subtitle {
        max-width: 100%;
        margin-bottom: 1.35rem;
    }

    body.booklight-page .hero--booklight .hero__buttons {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 0.75rem;
    }

    body.booklight-page .hero--booklight .hero__buttons .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .home-page .hero--home,
    body.booklight-page .hero--booklight {
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
        min-height: 100svh;
        height: auto;
        padding: 6.25rem 5.5% 2.35rem;
        background: var(--dark-shade);
        overflow: hidden;
    }

    .home-page .hero--home .hero__bg,
    body.booklight-page .hero--booklight .hero__bg {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .home-page .hero--home .hero__overlay,
    body.booklight-page .hero--booklight .hero__overlay {
        display: block;
        background:
            linear-gradient(
                to top,
                rgba(8, 6, 5, 0.98) 0%,
                rgba(8, 6, 5, 0.9) 31%,
                rgba(8, 6, 5, 0.48) 59%,
                rgba(8, 6, 5, 0.06) 84%
            ),
            linear-gradient(
                90deg,
                rgba(8, 6, 5, 0.66) 0%,
                rgba(8, 6, 5, 0.16) 52%,
                transparent 82%
            );
    }

    .home-page .hero--home .hero__slide > img,
    body.booklight-page .hero--booklight .hero__image {
        position: absolute;
        right: 0;
        bottom: auto;
        left: 0;
        top: 3.2rem;
        width: 100%;
        height: clamp(390px, 58svh, 520px);
        transform: none;
        object-fit: cover;
        object-position: center center;
        z-index: 1;
    }

    body.booklight-page .hero--booklight .hero__image {
        top: 3.2rem;
        height: clamp(390px, 58svh, 520px);
    }

    body.booklight-page .hero--booklight {
        padding-bottom: 1.45rem;
    }

    .home-page .hero--home .hero__slide:not(.is-active) {
        display: none;
    }

    .home-page .hero--home .hero__content,
    body.booklight-page .hero--booklight .hero__content,
    body.booklight-page .hero--booklight .book-hero__content {
        position: relative;
        width: min(100%, 24rem);
        max-width: none;
        margin: 0;
        padding: 0;
        background: none;
        text-align: left;
        text-shadow: 0 3px 22px rgba(0, 0, 0, 0.66);
    }

    .home-page .hero--home .hero__title {
        max-width: 9ch;
        margin-bottom: 0.85rem;
        font-size: clamp(1.75rem, 8.2vw, 2.55rem);
        line-height: 1.12;
    }

    body.booklight-page .hero--booklight .hero__title {
        max-width: 13ch;
        margin-bottom: 0.7rem;
        font-size: clamp(1.8rem, 8vw, 2.6rem);
        line-height: 1.08;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }

    .home-page .hero--home .hero__subtitle,
    body.booklight-page .hero--booklight .hero__subtitle {
        max-width: 100%;
        margin-bottom: 1.15rem;
        font-size: clamp(0.85rem, 3.4vw, 0.98rem);
        line-height: 1.5;
    }

    body.booklight-page .hero--booklight .hero__subtitle {
        margin-bottom: 0.95rem;
        font-size: clamp(0.76rem, 3.1vw, 0.86rem);
        line-height: 1.42;
    }

    .home-page .hero--home .hero__tagline,
    body.booklight-page .hero--booklight .hero__tagline {
        margin-bottom: 0.75rem;
        font-size: 0.68rem;
        letter-spacing: 0.2em;
    }

    .home-page .hero--home .hero__buttons,
    body.booklight-page .hero--booklight .hero__buttons {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
        gap: 0.75rem;
    }

    .home-page .hero--home .hero__buttons .btn,
    body.booklight-page .hero--booklight .hero__buttons .btn {
        width: 100%;
    }
}

.home-page .hero--home .hero__slide.hero__slide--ingrid > img {
    object-position: left center;
    transform: scale(1.18);
    transform-origin: left center;
}

.hero__tagline {
    font-family: var(--font-body);
}

.philosophy-badges {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-content: start;
    gap: 0.75rem;
    max-width: 900px;
    margin: 0 0 1.5rem;
    padding-left: 1.4rem;
    list-style: disc;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--gold);
}

.philosophy-badges li {
    padding-left: 0.25rem;
}

html[lang="en"] .booklight-intro__quote blockquote::before {
    font-size: clamp(7rem, 12vw, 11rem);
    margin-top: -1rem;
    margin-bottom: -0.25rem;
}

html[lang="en"] .booklight-callout__note p {
    color: var(--gray-light);
}

html[lang="en"] .product-collection .section__header h1 {
    max-width: 24ch;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

html[lang="en"] .circular-services .circular-card h1 {
    font-family: var(--font-body);
    font-weight: 100;
}

html[lang="en"] .testimonials .testimonial-card img {
    width: 100px;
    height: 100px;
    aspect-ratio: 1;
}

html[lang="en"] .contact__title {
    max-width: 20ch;
    font-size: clamp(1.7rem, 2.7vw, 2.55rem);
}

html[lang="en"] .thisisus-story__hero-text h1,
html[lang="en"] .thisisus-story__block h1 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.06em;
}

.ms-recaptcha-notice {
    text-align: center;
}
