/* ============================================
   1. CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    --bg-light: #F5F3EE;
    --bg-dark: #0E0E0C;
    --text: #1A1916;
    --text-light: #F5F3EE;
    --accent: #B8964A;
    --muted: rgba(26, 25, 22, 0.55);
    --muted-light: rgba(245, 243, 238, 0.7);

    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Inter', system-ui, -apple-system, sans-serif;

    --section-padding: 120px;
    --section-padding-sm: 80px;

    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

body {
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg-light);
    overflow-x: clip;
    width: 100%;
}

main,
section,
nav,
footer {
    width: 100%;
    max-width: 100%;
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea {
    font-family: inherit;
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
.section-label {
    display: block;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
}

.section-label--light {
    color: rgba(245, 243, 238, 0.45);
}

/* Fade-in */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--delay, 0s);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   4. NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 22px 0;
    transition: var(--transition-smooth);
}

.nav.scrolled {
    background: rgba(245, 243, 238, 0.93);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(184, 150, 74, 0.18);
    padding: 14px 0;
}

.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
}

.nav__links {
    display: flex;
    gap: 40px;
}

.nav__links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--text);
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: var(--transition-fast);
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav__lang-toggle {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--muted);
    padding: 5px 8px;
    opacity: 0.5;
    transition: var(--transition-fast);
}

.nav__lang-toggle.active {
    opacity: 1;
    color: var(--text);
}

.nav__lang-toggle:hover {
    opacity: 1;
}

.nav__cta {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 9px 18px;
    border: 1px solid var(--accent);
    color: var(--text);
    transition: var(--transition-fast);
}

.nav__cta:hover {
    opacity: 0.75;
}

.nav__menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    color: var(--text);
}

.nav__menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1500;
    visibility: hidden;
    pointer-events: none;
}

.mobile-menu.active {
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu__overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 14, 12, 0.28);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.mobile-menu.active .mobile-menu__overlay {
    opacity: 1;
}

.mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(360px, 100%);
    height: 100%;
    background: rgba(245, 243, 238, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
}

.mobile-menu.active .mobile-menu__panel {
    transform: translateX(0);
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.mobile-menu__title {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.mobile-menu__close {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.mobile-menu__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 1px;
    background: currentColor;
}

.mobile-menu__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mobile-menu__nav a {
    font-family: var(--serif);
    font-size: 2rem;
    font-style: italic;
    line-height: 1.05;
    color: var(--text);
}

.mobile-menu__footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu__lang {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-menu__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 14px 22px;
    border: 1px solid var(--accent);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
}

/* ============================================
   5. HERO
   ============================================ */
.hero {
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-light);
    padding: 130px 32px 80px;
    text-align: center;
    position: relative;
}

.hero__logo-display {
    position: absolute;
    left: 52px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-family: 'Josefin Sans', sans-serif;
    font-size: clamp(4rem, 11vw, 7.5rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
    opacity: 0.07;
    white-space: nowrap;
    pointer-events: none;
}

.hero__content {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero__headline {
    font-family: var(--serif);
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.18;
    color: var(--text);
    letter-spacing: -0.01em;
    margin-bottom: 28px;
}

.hero__subtext {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 32px;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero__cta {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 1px solid var(--accent);
    color: var(--text);
    transition: opacity 0.2s ease, border-color 0.2s ease;
}

.hero__cta:hover {
    opacity: 0.72;
}

.hero__cta--secondary {
    border-color: rgba(26, 25, 22, 0.22);
}

.hero__cta--secondary:hover {
    opacity: 0.65;
    border-color: rgba(26, 25, 22, 0.4);
}

.hero__image-wrapper {
    width: 768px;
    max-width: 72%;
    margin: 0 auto;
    transform: translateY(-10%);
}

.hero__image {
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ============================================
   6. WHAT IS OKO
   ============================================ */
.what-is {
    padding: var(--section-padding) 0;
    background-color: var(--bg-light);
}

.what-is__container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.what-is__title {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 3.5vw, 3.2rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 20px;
}

.what-is__body {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 28px;
}

.what-is__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.what-is__list li {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    padding-left: 18px;
    position: relative;
}

.what-is__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 1px;
    background: var(--accent);
}

.what-is__image-box {
    width: 100%;
}

.what-is__image {
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
}

/* ============================================
   7. PROBLEM
   ============================================ */
.problem {
    padding: var(--section-padding) 0;
    background-color: var(--bg-dark);
}

.problem__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.problem__title {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.18;
    color: var(--text-light);
    margin-bottom: 52px;
}

.problem__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    text-align: left;
}

.problem__item p {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(245, 243, 238, 0.68);
}

/* ============================================
   8. EDITORIAL
   ============================================ */
.editorial {
    position: relative;
    height: 70vh;
    min-height: 480px;
    overflow: hidden;
}

.editorial__background {
    position: absolute;
    inset: 0;
    background-image: url('assets/dark-beach.png.webp');
    background-size: cover;
    background-position: center;
}

.editorial__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.42) 100%);
}

.editorial__text {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 3.2rem);
    font-weight: 400;
    font-style: italic;
    color: var(--text-light);
    text-align: center;
    line-height: 1.3;
    padding: 0 32px;
    max-width: 680px;
}

/* ============================================
   9. HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: var(--section-padding) 0;
    background-color: var(--bg-light);
}

.how-it-works__container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.how-it-works__title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 3.5vw, 3.4rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 60px;
}

.how-it-works__steps {
    display: flex;
    gap: 36px;
    justify-content: center;
    margin-bottom: 44px;
}

.how-it-works__step {
    flex: 1;
    max-width: 280px;
    text-align: left;
    padding: 28px 24px;
    border: 1px solid rgba(184, 150, 74, 0.2);
    transition: border-color var(--transition-fast);
}

.how-it-works__step:hover {
    border-color: rgba(184, 150, 74, 0.5);
}

.how-it-works__num {
    display: block;
    font-family: var(--serif);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 14px;
    opacity: 0.55;
}

.how-it-works__step h3 {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 10px;
}

.how-it-works__step p {
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--muted);
}

.how-it-works__note {
    border-top: 1px solid rgba(184, 150, 74, 0.18);
    padding-top: 28px;
    max-width: 520px;
    margin: 0 auto;
}

.how-it-works__note p {
    font-size: 13.5px;
    line-height: 1.8;
    color: var(--muted);
    font-style: italic;
}

/* ============================================
   10. BENEFITS
   ============================================ */
.benefits {
    padding: var(--section-padding) 0;
    background-color: var(--bg-light);
    border-top: 1px solid rgba(184, 150, 74, 0.2);
}

.benefits__container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
}

.benefits__title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 3.5vw, 3.4rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 52px;
}

.benefits__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px 80px;
}

.benefits__item {
    border-top: 1px solid rgba(184, 150, 74, 0.2);
    padding-top: 22px;
}

.benefits__item h3 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--text);
    margin-bottom: 8px;
}

.benefits__item p {
    font-size: 13.5px;
    line-height: 1.8;
    color: var(--muted);
}

/* ============================================
   11. EXPERIENCE
   ============================================ */
.experience {
    padding: var(--section-padding) 0;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.experience__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.experience__image-col {
    position: relative;
    overflow: hidden;
}

.experience__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180%;
    height: 180%;
    background: radial-gradient(ellipse at center, rgba(184,150,74,0.11) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.experience__image {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.experience__title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
    color: var(--text-light);
    margin-bottom: 24px;
}

.experience__body {
    font-size: 1rem;
    line-height: 1.88;
    color: rgba(245, 243, 238, 0.68);
}

.experience__body + .experience__body {
    margin-top: 16px;
}

/* ============================================
   12. HOW TO USE
   ============================================ */
.how-to-use {
    padding: var(--section-padding) 0;
    background-color: var(--bg-light);
    border-top: 1px solid rgba(184, 150, 74, 0.2);
}

.how-to-use__container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 32px;
}

.how-to-use__title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 3.5vw, 3.4rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 52px;
    text-align: center;
}

.how-to-use__steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.how-to-use__step {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}

.how-to-use__num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent);
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--accent);
}

.how-to-use__step p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--muted);
    padding-top: 8px;
}

/* ============================================
   13. MATERIALS / CRAFTSMANSHIP
   ============================================ */
.materials {
    background-color: var(--bg-light);
}

.materials__header {
    text-align: center;
    padding: 80px 32px 60px;
}

.materials__title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 3.5vw, 3.4rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
    color: var(--text);
}

.materials__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
}

.materials__left {
    background-color: var(--bg-dark);
    padding: 80px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.materials__number {
    position: absolute;
    top: 36px;
    left: 36px;
    font-family: var(--serif);
    font-size: 5.5rem;
    font-weight: 400;
    color: rgba(184, 150, 74, 0.07);
    line-height: 1;
}

.materials__callouts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.materials__callout {
    padding-left: 22px;
    border-left: 1px solid rgba(184, 150, 74, 0.38);
}

.materials__callout h3 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #B8964A;
    margin-bottom: 7px;
}

.materials__callout p {
    font-size: 13.5px;
    line-height: 1.78;
    color: rgba(245, 243, 238, 0.68);
}

.materials__right {
    background-color: var(--bg-light);
    overflow: hidden;
}

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

/* ============================================
   14. PRODUCT / PURCHASE
   ============================================ */
.product {
    padding: var(--section-padding) 0;
    background-color: var(--bg-light);
    border-top: 1px solid rgba(184, 150, 74, 0.2);
}

.product__container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.product__label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.product__name {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 3.5vw, 3.2rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 12px;
}

.product__tagline {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 28px;
}

.product__price-box {
    margin-bottom: 28px;
}

.product__price {
    display: block;
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 4px;
}

.product__price-note {
    font-size: 12px;
    color: var(--muted);
}

.product__specs {
    margin-bottom: 28px;
}

.product__specs li {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text);
    padding-left: 18px;
    position: relative;
}

.product__specs li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 5px;
    height: 1px;
    background: var(--accent);
}

.product__cta {
    display: block;
    width: 100%;
    max-width: 320px;
    padding: 18px 36px;
    background-color: #1A1916;
    color: var(--text-light);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
    margin-bottom: 10px;
}

.product__cta:hover {
    opacity: 0.78;
}

.product__lead-time {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 14px;
}

.product__link {
    font-size: 13px;
    color: var(--muted);
    display: inline-block;
}

.product__link:hover {
    color: var(--text);
}

.product__visual {
    width: 100%;
}

.product__image {
    width: 100%;
    height: auto;
}

/* ============================================
   15. TESTIMONIALS
   ============================================ */
.testimonials {
    padding: var(--section-padding) 0;
    background-color: var(--bg-dark);
}

.testimonials__container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
    margin-top: 44px;
}

.testimonials__item {
    border-top: 1px solid rgba(184, 150, 74, 0.28);
    padding-top: 22px;
}

.testimonials__item p {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.8;
    color: rgba(245, 243, 238, 0.78);
    margin-bottom: 14px;
}

.testimonials__author {
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--accent);
}

/* ============================================
   16. PHILOSOPHY
   ============================================ */
.philosophy {
    padding: var(--section-padding) 0;
    background-color: var(--bg-light);
    text-align: center;
}

.philosophy__container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 32px;
}

.philosophy__line {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 2.8vw, 2.8rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.3;
    color: var(--text);
}

.philosophy__line + .philosophy__line {
    margin-top: 14px;
}

/* ============================================
   17. CTA SECTION
   ============================================ */
.cta {
    position: relative;
    padding: var(--section-padding) 0;
    background-color: var(--bg-light);
    overflow: hidden;
    border-top: 1px solid rgba(184, 150, 74, 0.2);
}

.cta__background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta__background::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.032;
}

.cta__container {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.cta__eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.cta__headline {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 14px;
}

.cta__tagline {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 0;
}

.cta__buttons {
    display: flex;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.cta__button {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 15px 36px;
    border: 1px solid var(--accent);
    color: var(--text);
    transition: var(--transition-fast);
    min-width: 200px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.cta__button:hover {
    opacity: 0.72;
}

.cta__button--secondary {
    border-color: rgba(26, 25, 22, 0.2);
    margin-left: 12px;
}

.cta__button--secondary:hover {
    opacity: 0.65;
}

/* ============================================
   18. FOOTER
   ============================================ */
.footer {
    padding: 56px 0;
    background-color: var(--bg-light);
    border-top: 1px solid rgba(26, 25, 22, 0.1);
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer__logo {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
}

.footer__tagline {
    font-size: 13px;
    color: var(--muted);
}

.footer__nav {
    display: flex;
    gap: 30px;
}

.footer__nav a {
    font-size: 13px;
    color: var(--text);
    opacity: 0.65;
    transition: var(--transition-fast);
}

.footer__nav a:hover {
    opacity: 1;
}

/* ============================================
   19. ORDER MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(14, 14, 12, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: relative;
    background: var(--bg-light);
    max-width: 480px;
    width: 100%;
    padding: 44px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Modal states */
.modal__state {
    display: none;
}

.modal__state--form.active {
    display: block;
}

/* Modal header */
.modal__header {
    margin-bottom: 28px;
}

.modal__product-label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.modal__title {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.2;
}

.modal__subtitle {
    font-size: 13px;
    color: var(--muted);
}

/* Modal form */
.modal__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.modal__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.modal__field label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.modal__required {
    color: var(--accent);
}

.modal__field input,
.modal__field textarea {
    font-size: 1rem;
    padding: 13px 15px;
    border: 1px solid rgba(26, 25, 22, 0.18);
    background: var(--bg-light);
    color: var(--text);
    transition: border-color var(--transition-fast);
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

.modal__field input::placeholder,
.modal__field textarea::placeholder {
    color: rgba(26, 25, 22, 0.3);
}

.modal__field input:focus,
.modal__field textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.modal__field input.error,
.modal__field textarea.error {
    border-color: #c0392b;
}

.modal__error {
    font-size: 11px;
    color: #c0392b;
    display: none;
}

.modal__error.visible {
    display: block;
}

/* Modal footer */
.modal__footer {
    margin-top: 6px;
}

.modal__privacy {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.modal__submit {
    width: 100%;
    padding: 17px 36px;
    background-color: #1A1916;
    color: var(--text-light);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
}

.modal__submit:hover {
    opacity: 0.82;
}

.modal__submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.modal__submit-text,
.modal__submit-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal__submit .modal__submit-loading {
    display: none;
}

.modal__submit.loading .modal__submit-text {
    display: none;
}

.modal__submit.loading .modal__submit-loading {
    display: flex;
}

.modal__spinner {
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Success state */
.modal__state--success {
    text-align: center;
    padding: 20px 0;
}

.modal__success-icon {
    margin-bottom: 20px;
}

.modal__success-title {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text);
    margin-bottom: 12px;
}

.modal__success-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 24px;
}

.modal__success-close {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 1px solid var(--accent);
    color: var(--text);
    transition: var(--transition-fast);
    cursor: pointer;
}

.modal__success-close:hover {
    opacity: 0.72;
}

/* Error state */
.modal__state--error {
    text-align: center;
    padding: 20px 0;
}

.modal__error-icon {
    margin-bottom: 20px;
}

.modal__error-title {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text);
    margin-bottom: 12px;
}

.modal__error-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 24px;
}

.modal__error-retry {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 1px solid var(--accent);
    color: var(--text);
    transition: var(--transition-fast);
    cursor: pointer;
}

.modal__error-retry:hover {
    opacity: 0.72;
}

/* Modal close */
.modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    color: var(--muted);
    transition: color var(--transition-fast);
    padding: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__close:hover {
    color: var(--text);
}

/* ============================================
   20. RESPONSIVE — TABLET (1024px)
   ============================================ */
@media (max-width: 1024px) {
    .nav__links {
        gap: 28px;
    }

    .what-is__container {
        gap: 56px;
    }

    .how-it-works__steps {
        gap: 24px;
    }

    .how-it-works__step {
        max-width: 240px;
    }

    .benefits__grid {
        gap: 40px 60px;
    }

    .experience__container {
        gap: 56px;
    }

    .materials__content {
        min-height: 520px;
    }

    .materials__left {
        padding: 60px 40px;
    }

    .product__container {
        gap: 56px;
    }

    .testimonials__grid {
        gap: 28px;
    }
}

/* ============================================
   21. RESPONSIVE — MOBILE (768px)
   ============================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    /* Navigation */
    .nav__container {
        padding: 0 20px;
        gap: 12px;
    }

    .nav__links {
        display: none;
    }

    .nav__logo {
        font-size: 22px;
    }

    .nav__right {
        gap: 10px;
    }

    .nav__cta {
        display: none;
    }

    .nav__lang-toggle {
        font-size: 10px;
        padding: 4px 6px;
    }

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

    /* Hero */
    .hero {
        padding: 108px 20px 48px;
        min-height: auto;
        align-items: center;
        text-align: center;
    }

    .hero__logo-display {
        display: none;
    }

    .hero__content {
        max-width: 100%;
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .hero__subtext br,
    .what-is__title br,
    .materials__title br {
        display: none;
    }

    .hero__headline {
        font-size: 2.4rem;
        line-height: 1.08;
        margin-bottom: 20px;
        max-width: none;
        overflow-wrap: normal;
        word-break: normal;
        text-wrap: balance;
    }

    .hero__eyebrow {
        font-size: 10px;
        letter-spacing: 0.16em;
        margin-bottom: 16px;
        max-width: 28ch;
        overflow-wrap: anywhere;
    }

    .hero__image-wrapper {
        width: 100%;
        max-width: 420px;
        margin: 8px auto 0;
        transform: none;
    }

    .hero__subtext {
        font-size: 13px;
        margin-bottom: 24px;
        max-width: 34ch;
    }

    .hero__cta {
        font-size: 11px;
        padding: 13px 28px;
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .hero__actions {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        width: 100%;
        margin-bottom: 28px;
    }

    /* What is OKO */
    .what-is__container {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 0 20px;
    }

    .what-is__title {
        font-size: 2rem;
    }

    .what-is__body {
        font-size: 15px;
    }

    .what-is__content {
        order: 1;
    }

    .what-is__image-box {
        order: 2;
        margin-top: 8px;
    }

    /* Problem */
    .problem__grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 20px;
    }

    .problem__title {
        font-size: 2.2rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    /* Editorial */
    .editorial {
        height: 60vh;
        min-height: 400px;
    }

    .editorial__text {
        font-size: 1.6rem;
        padding: 0 24px;
    }

    /* How it works */
    .how-it-works__container {
        padding: 0 20px;
    }

    .how-it-works__title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .how-it-works__steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .how-it-works__step {
        max-width: 100%;
        width: 100%;
        text-align: left;
    }

    /* Benefits */
    .benefits__container {
        padding: 0 20px;
    }

    .benefits__title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .benefits__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    /* Experience */
    .experience__container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .experience__image-col {
        width: 100%;
        max-width: 440px;
        margin: 0 auto;
    }

    .experience__title {
        font-size: 2rem;
    }

    /* How to use */
    .how-to-use__container {
        padding: 0 20px;
    }

    .how-to-use__title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .how-to-use__step {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        text-align: left;
    }

    .how-to-use__num {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .how-to-use__step p {
        padding-top: 0;
        font-size: 15px;
    }

    /* Materials */
    .materials__header {
        padding: 60px 20px 40px;
    }

    .materials__title {
        font-size: 2rem;
    }

    .materials__content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .materials__left {
        padding: 48px 24px;
        order: 2;
    }

    .materials__number {
        display: none;
    }

    .materials__right {
        height: 360px;
        order: 1;
    }

    /* Product */
    .product__container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .product__name {
        font-size: 2rem;
    }

    .product__price {
        font-size: 2rem;
    }

    .product__cta {
        max-width: 100%;
    }

    .product__visual {
        order: -1;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }

    /* Testimonials */
    .testimonials__container {
        padding: 0 20px;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    /* Philosophy */
    .philosophy__container {
        padding: 0 20px;
    }

    .philosophy__line {
        font-size: 2rem;
    }

    /* CTA */
    .cta__container {
        padding: 0 20px;
    }

    .cta__headline {
        font-size: 2.4rem;
    }

    .cta__buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .cta__button {
        width: 100%;
        max-width: 280px;
        margin: 0;
    }

    .cta__button--secondary {
        margin-left: 0;
    }

    /* Footer */
    .footer__container {
        flex-direction: column;
        text-align: center;
        gap: 28px;
        padding: 0 20px;
    }

    .footer__nav {
        gap: 22px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Modal */
    .modal {
        padding: 36px 24px;
        max-height: 85vh;
    }

    .modal__title {
        font-size: 1.5rem;
    }
}

/* ============================================
   22. RESPONSIVE — SMALL MOBILE (480px)
   ============================================ */
@media (max-width: 480px) {
    :root {
        --section-padding: 64px;
    }

    .nav__container {
        padding: 0 16px;
        gap: 8px;
    }

    .nav__right {
        gap: 6px;
    }

    .nav__logo {
        font-size: 18px;
    }

    .mobile-menu__panel {
        padding: 22px 18px;
    }

    .mobile-menu__nav a {
        font-size: 1.8rem;
    }

    .hero {
        padding: 96px 16px 40px;
    }

    .hero__headline {
        font-size: 2rem;
        line-height: 1.03;
        margin-bottom: 18px;
        max-width: none;
    }

    .hero__eyebrow {
        font-size: 10px;
        letter-spacing: 0.18em;
        margin-bottom: 14px;
    }

    .hero__subtext {
        font-size: 12px;
        margin-bottom: 22px;
    }

    .hero__cta {
        font-size: 11px;
        padding: 13px 20px;
    }

    .hero__actions {
        margin-bottom: 22px;
    }

    .hero__image-wrapper {
        width: 100%;
        max-width: 320px;
    }

    /* Typography scaling */
    .section-label {
        font-size: 10px;
        letter-spacing: 0.16em;
        margin-bottom: 12px;
    }

    .what-is__title {
        font-size: 1.8rem;
    }

    .problem__title {
        font-size: 1.8rem;
        margin-bottom: 32px;
    }

    .problem__item p {
        font-size: 15px;
    }

    .editorial__text {
        font-size: 1.4rem;
    }

    .how-it-works__title {
        font-size: 1.8rem;
        margin-bottom: 32px;
    }

    .how-it-works__step {
        padding: 20px 18px;
    }

    .benefits__title {
        font-size: 1.8rem;
        margin-bottom: 32px;
    }

    .benefits__item h3 {
        font-size: 13.5px;
    }

    .benefits__item p {
        font-size: 13px;
    }

    .experience__title {
        font-size: 1.8rem;
    }

    .experience__body {
        font-size: 15px;
    }

    .how-to-use__title {
        font-size: 1.8rem;
        margin-bottom: 36px;
    }

    .materials__title {
        font-size: 1.8rem;
    }

    .materials__callout h3 {
        font-size: 13px;
    }

    .materials__callout p {
        font-size: 13px;
    }

    .product__name {
        font-size: 1.8rem;
    }

    .product__price {
        font-size: 1.8rem;
    }

    .product__specs li {
        font-size: 13.5px;
    }

    .product__cta {
        font-size: 11px;
        padding: 16px 24px;
    }

    .testimonials__item p {
        font-size: 1rem;
    }

    .philosophy__line {
        font-size: 1.7rem;
    }

    .cta__headline {
        font-size: 2rem;
    }

    .cta__tagline {
        font-size: 12px;
    }

    /* Modal adjustments */
    .modal {
        padding: 32px 20px;
        max-height: 90vh;
    }

    .modal__title {
        font-size: 1.4rem;
    }

    .modal__subtitle {
        font-size: 12px;
    }

    .modal__field input,
    .modal__field textarea {
        font-size: 15px; /* Prevents iOS zoom */
        padding: 12px 13px;
    }

    .modal__submit {
        font-size: 11px;
        padding: 15px 24px;
    }

    /* Minimum tap targets */
    .hero__cta,
    .product__cta,
    .cta__button,
    .modal__submit,
    .modal__close,
    .nav__cart {
        min-height: 48px;
        min-width: 48px;
    }
}

/* ============================================
   23. RESPONSIVE — 390px (iPhone 12/14 Pro)
   ============================================ */
/* ============================================
   23. RESPONSIVE â€” 414px (iPhone 11 Max / Plus)
   ============================================ */
@media (min-width: 391px) and (max-width: 414px) {
    .hero {
        padding: 104px 18px 52px;
    }

    .hero__headline {
        font-size: 2.1rem;
        margin-bottom: 18px;
    }

    .hero__eyebrow {
        font-size: 10px;
        margin-bottom: 14px;
    }

    .hero__subtext {
        font-size: 12px;
        margin-bottom: 22px;
    }

    .hero__image-wrapper {
        max-width: 336px;
    }

    .hero__actions {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 38px;
    }

    .hero__cta {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .what-is__title {
        font-size: 1.9rem;
    }

    .problem__title {
        font-size: 1.9rem;
    }

    .editorial__text {
        font-size: 1.45rem;
    }

    .how-it-works__title {
        font-size: 1.9rem;
    }

    .benefits__title {
        font-size: 1.9rem;
    }

    .experience__title {
        font-size: 1.9rem;
    }

    .how-to-use__title {
        font-size: 1.9rem;
    }

    .materials__title {
        font-size: 1.9rem;
    }

    .product__name {
        font-size: 1.9rem;
    }

    .product__price {
        font-size: 1.9rem;
    }

    .philosophy__line {
        font-size: 1.75rem;
    }

    .cta__headline {
        font-size: 2.1rem;
    }

    .modal {
        padding: 32px 20px;
    }
}

/* ============================================
   24. RESPONSIVE â€” 390px (iPhone 12/14 Pro)
   ============================================ */
@media (max-width: 390px) {
    .hero {
        padding: 98px 16px 48px;
    }

    .hero__headline {
        font-size: 1.85rem;
        margin-bottom: 16px;
    }

    .hero__eyebrow {
        font-size: 9.5px;
        margin-bottom: 14px;
    }

    .hero__subtext {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .hero__actions {
        margin-bottom: 32px;
    }

    .hero__image-wrapper {
        width: 100%;
        max-width: 300px;
    }

    .what-is__title {
        font-size: 1.7rem;
    }

    .problem__title {
        font-size: 1.7rem;
    }

    .editorial__text {
        font-size: 1.3rem;
    }

    .how-it-works__title {
        font-size: 1.7rem;
    }

    .benefits__title {
        font-size: 1.7rem;
    }

    .experience__title {
        font-size: 1.7rem;
    }

    .how-to-use__title {
        font-size: 1.7rem;
    }

    .materials__title {
        font-size: 1.7rem;
    }

    .product__name {
        font-size: 1.7rem;
    }

    .philosophy__line {
        font-size: 1.55rem;
    }

    .cta__headline {
        font-size: 1.85rem;
    }

    .testimonials__item p {
        font-size: 0.98rem;
    }
}

/* ============================================
   24. RESPONSIVE — 375px (iPhone SE/X)
   ============================================ */
@media (max-width: 375px) {
    .hero {
        padding: 94px 14px 44px;
    }

    .hero__headline {
        font-size: 1.75rem;
        margin-bottom: 14px;
    }

    .hero__eyebrow {
        font-size: 9.5px;
        margin-bottom: 12px;
    }

    .hero__subtext {
        font-size: 12px;
        margin-bottom: 18px;
    }

    .hero__cta {
        font-size: 10px;
        padding: 12px 18px;
    }

    .hero__actions {
        margin-bottom: 28px;
    }

    .hero__image-wrapper {
        width: 100%;
        max-width: 280px;
    }

    .what-is__title {
        font-size: 1.65rem;
    }

    .problem__title {
        font-size: 1.65rem;
    }

    .problem__item p {
        font-size: 14px;
    }

    .editorial__text {
        font-size: 1.25rem;
    }

    .how-it-works__title {
        font-size: 1.65rem;
    }

    .how-it-works__step {
        padding: 18px 16px;
    }

    .benefits__title {
        font-size: 1.65rem;
    }

    .benefits__item h3 {
        font-size: 13px;
    }

    .benefits__item p {
        font-size: 12.5px;
    }

    .experience__title {
        font-size: 1.65rem;
    }

    .experience__body {
        font-size: 14px;
    }

    .how-to-use__title {
        font-size: 1.65rem;
    }

    .materials__title {
        font-size: 1.65rem;
    }

    .product__name {
        font-size: 1.65rem;
    }

    .product__price {
        font-size: 1.65rem;
    }

    .product__specs li {
        font-size: 13px;
    }

    .testimonials__item p {
        font-size: 0.95rem;
    }

    .philosophy__line {
        font-size: 1.45rem;
    }

    .cta__headline {
        font-size: 1.75rem;
    }

    /* Modal */
    .modal {
        padding: 28px 16px;
    }

    .modal__title {
        font-size: 1.35rem;
    }

    .modal__field input,
    .modal__field textarea {
        font-size: 16px; /* Prevents iOS zoom on focus */
    }
}

/* ============================================
   25. RESPONSIVE — 320px (older iPhones)
   ============================================ */
@media (max-width: 320px) {
    .hero {
        padding: 90px 12px 40px;
    }

    .hero__headline {
        font-size: 1.55rem;
        margin-bottom: 14px;
    }

    .hero__eyebrow {
        font-size: 9px;
        margin-bottom: 12px;
    }

    .hero__subtext {
        font-size: 11px;
        margin-bottom: 18px;
    }

    .hero__cta {
        font-size: 10px;
        padding: 12px 16px;
    }

    .hero__actions {
        margin-bottom: 24px;
    }

    .hero__image-wrapper {
        width: 100%;
        max-width: 248px;
    }

    .what-is__title {
        font-size: 1.5rem;
    }

    .what-is__body {
        font-size: 13.5px;
    }

    .problem__title {
        font-size: 1.5rem;
    }

    .problem__item p {
        font-size: 13px;
    }

    .editorial__text {
        font-size: 1.15rem;
    }

    .how-it-works__title {
        font-size: 1.5rem;
    }

    .benefits__title {
        font-size: 1.5rem;
    }

    .benefits__item h3 {
        font-size: 12.5px;
    }

    .experience__title {
        font-size: 1.5rem;
    }

    .experience__body {
        font-size: 13px;
    }

    .how-to-use__title {
        font-size: 1.5rem;
    }

    .materials__title {
        font-size: 1.5rem;
    }

    .product__name {
        font-size: 1.5rem;
    }

    .product__price {
        font-size: 1.5rem;
    }

    .testimonials__item p {
        font-size: 0.9rem;
    }

    .philosophy__line {
        font-size: 1.3rem;
    }

    .cta__headline {
        font-size: 1.55rem;
    }

    .cta__tagline {
        font-size: 11px;
    }

    /* Modal */
    .modal {
        padding: 24px 14px;
    }

    .modal__title {
        font-size: 1.25rem;
    }

    .modal__privacy {
        font-size: 10px;
    }

    .modal__success-title,
    .modal__error-title {
        font-size: 1.4rem;
    }
}
