/* =========================================================
   Kiyowish — Shopify Dawn-inspired theme
   Neutral palette, generous whitespace, modern typography
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
    --color-bg: #ffffff;
    --color-bg-alt: #f3f3f3;
    --color-bg-soft: #fafafa;
    --color-text: #121212;
    --color-text-muted: #707070;
    --color-border: rgba(18, 18, 18, 0.08);
    --color-border-strong: rgba(18, 18, 18, 0.2);
    --color-accent: #2a4d3a;
    --color-accent-hover: #1f3a2c;
    --color-accent-soft: #eaf0ec;
    --color-success: #2e7d32;
    --color-sale: #b94a48;

    --font-heading: "Assistant", "Noto Sans KR", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --font-body: "Assistant", "Noto Sans KR", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --font-display: "Playfair Display", "Noto Serif KR", Georgia, "Times New Roman", serif;

    --container-max: 1400px;
    --container-pad: 2.4rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    --shadow-sm: 0 1px 2px rgba(18, 18, 18, 0.04);
    --shadow-md: 0 4px 12px rgba(18, 18, 18, 0.06);
    --shadow-lg: 0 18px 40px rgba(18, 18, 18, 0.08);

    --header-height: 88px;
    --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a:hover { color: var(--color-accent); }

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

ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 1.6rem;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(3.2rem, 5vw, 5.2rem); }
h2 { font-size: clamp(2.6rem, 3.5vw, 3.6rem); }
h3 { font-size: 2rem; }
h4 { font-size: 1.6rem; }

p { margin: 0 0 1.6rem; }

::selection { background: var(--color-accent); color: #fff; }

/* ---------- Layout helpers ---------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.section { padding: 8rem 0; }

@media (max-width: 768px) {
    .section { padding: 5rem 0; }
    :root { --container-pad: 1.6rem; }
}

.section-header { text-align: center; margin-bottom: 5rem; }

.section-title {
    font-family: var(--font-display);
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.6rem;
    margin: 0;
}

.section-cta { text-align: center; margin-top: 4rem; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.4rem 3.2rem;
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
    border: 1px solid var(--color-text);
    border-radius: 0;
    background: var(--color-text);
    color: #fff;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    min-height: 4.6rem;
}

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

.btn-primary { background: var(--color-text); border-color: var(--color-text); color: #fff; }

.btn-outline,
.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-text);
}

.btn-outline:hover,
.btn-secondary:hover { background: var(--color-text); color: #fff; }

.btn-on-dark { background: #fff; color: var(--color-text); border-color: #fff; }
.btn-on-dark:hover { background: transparent; color: #fff; border-color: #fff; }

/* ---------- Announcement bar ---------- */
.announcement-bar {
    background: var(--color-text);
    color: #fff;
    text-align: center;
    padding: 1rem 1.6rem;
    font-size: 1.3rem;
    letter-spacing: 0.04em;
}

.announcement-bar p { margin: 0; }

/* ---------- Header ---------- */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition);
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2.4rem;
    min-height: var(--header-height);
}

.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo-img { height: 50px; width: auto; }

.logo-text {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--color-text);
    margin: 0;
}

.main-nav { display: flex; justify-content: center; }

.nav-list { display: flex; align-items: center; gap: 3.2rem; }

.nav-link {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-text);
    padding: 0.8rem 0;
    position: relative;
    letter-spacing: 0.02em;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-text);
    transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after { width: 100%; }

.header-icons { display: flex; align-items: center; gap: 0.4rem; }

.icon-btn {
    width: 4.4rem;
    height: 4.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    font-size: 1.7rem;
    position: relative;
    transition: color var(--transition);
}

.icon-btn:hover { color: var(--color-accent); }

.cart-count {
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    background: var(--color-text);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    min-width: 1.8rem;
    height: 1.8rem;
    padding: 0 0.5rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn { display: none; font-size: 2rem; }

@media (max-width: 992px) {
    .main-nav { display: none; }
    .mobile-menu-btn { display: inline-flex; align-items: center; justify-content: center; width: 4.4rem; height: 4.4rem; }
    .logo { justify-self: center; }
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(86vw, 380px);
    background: #fff;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

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

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.4rem;
    border-bottom: 1px solid var(--color-border);
}

.close-menu-btn { font-size: 2rem; }

.mobile-nav { padding: 2rem; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0.4rem; }
.mobile-nav a {
    display: block;
    padding: 1.4rem 1rem;
    font-size: 1.6rem;
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(18, 18, 18, 0.4);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.mobile-menu-overlay.active { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    height: clamp(480px, 78vh, 760px);
    overflow: hidden;
    background: var(--color-bg-alt);
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 800ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active { opacity: 1; }

.hero-content {
    position: relative;
    max-width: 720px;
    text-align: center;
    color: #fff;
    padding: 0 2rem;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 500;
    color: #fff;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: clamp(1.6rem, 2vw, 1.9rem);
    margin-bottom: 3.2rem;
    opacity: 0.95;
}

.hero-navigation { position: absolute; inset: 0; pointer-events: none; z-index: 3; }

.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--color-text);
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background var(--transition);
}

.hero-nav-btn:hover { background: #fff; }
.hero-nav-btn.prev { left: 2rem; }
.hero-nav-btn.next { right: 2rem; }

.hero-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2.4rem;
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    z-index: 3;
}

.dot {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition);
}

.dot.active { background: #fff; width: 2.4rem; }

/* ---------- Benefits row ---------- */
.benefits { padding: 6rem 0; border-bottom: 1px solid var(--color-border); }

.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3.2rem; }

.benefit-card { text-align: center; padding: 1.6rem; }

.benefit-icon {
    width: 5.6rem;
    height: 5.6rem;
    margin: 0 auto 1.6rem;
    color: var(--color-accent);
    font-size: 2.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-soft);
    border-radius: 999px;
}

.benefit-card h3 { font-size: 1.6rem; margin-bottom: 0.4rem; }
.benefit-card p { font-size: 1.4rem; color: var(--color-text-muted); margin: 0; }

@media (max-width: 768px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

/* ---------- Products grid ---------- */
.products-section { padding: 8rem 0; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 3.2rem 2.4rem;
}

.product-card { position: relative; background: var(--color-bg); transition: transform var(--transition); }

.product-card .product-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--color-bg-alt);
    margin-bottom: 1.6rem;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.product-card:hover .product-image img { transform: scale(1.04); }

.product-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: var(--color-text);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.5rem 0.9rem;
    z-index: 2;
}

.product-badge.new { background: var(--color-accent); }

.product-actions {
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition);
    z-index: 2;
}

.product-card:hover .product-actions,
.product-card.hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.quick-add-btn {
    width: 100%;
    background: #fff;
    color: var(--color-text);
    padding: 1.1rem 1.6rem;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border: 1px solid var(--color-text);
    transition: all var(--transition);
}

.quick-add-btn:hover { background: var(--color-text); color: #fff; }

.product-info { padding: 0 0.2rem; }

.product-title { font-size: 1.6rem; font-weight: 500; margin: 0 0 0.6rem; letter-spacing: 0; }
.product-title a { color: var(--color-text); }
.product-title a:hover { text-decoration: underline; }

.product-desc { font-size: 1.4rem; color: var(--color-text-muted); margin: 0 0 0.8rem; }

.product-rating { color: #d4a017; font-size: 1.2rem; margin-bottom: 0.6rem; }
.product-rating span { color: var(--color-text-muted); margin-left: 0.4rem; }

.product-price { font-size: 1.5rem; font-weight: 600; }
.current-price { color: var(--color-text); }
.old-price { color: var(--color-text-muted); text-decoration: line-through; font-weight: 400; margin-left: 0.6rem; }

/* ---------- Image-with-text / Why us ---------- */
.image-with-text { padding: 8rem 0; }

.iwt-grid,
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.iwt-grid.reverse > :first-child { order: 2; }

.iwt-content h2,
.why-us-content h2 {
    font-family: var(--font-display);
    font-weight: 500;
    margin-bottom: 2rem;
}

.iwt-image img,
.why-us-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.why-us-list { margin: 2.4rem 0 3.2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.why-us-list li { display: flex; align-items: flex-start; gap: 1.2rem; font-size: 1.5rem; }
.why-us-list i { color: var(--color-accent); margin-top: 0.5rem; }

@media (max-width: 768px) {
    .iwt-grid,
    .why-us-grid { grid-template-columns: 1fr; gap: 3rem; }
    .iwt-grid.reverse > :first-child { order: 0; }
}

/* ---------- Testimonials ---------- */
.testimonials { padding: 8rem 0; background: var(--color-bg-soft); }

.testimonials-slider { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.4rem; }

.testimonial-card {
    background: #fff;
    padding: 3.2rem;
    border: 1px solid var(--color-border);
    text-align: left;
}

.testimonial-rating { color: #d4a017; font-size: 1.4rem; margin-bottom: 1.6rem; }
.testimonial-text { font-size: 1.5rem; line-height: 1.7; color: var(--color-text); margin-bottom: 2.4rem; }
.testimonial-author { display: flex; align-items: center; gap: 1.2rem; }
.testimonial-author img { width: 4.4rem; height: 4.4rem; border-radius: 999px; object-fit: cover; }
.testimonial-author h4 { font-size: 1.4rem; margin: 0; }
.testimonial-author span { font-size: 1.2rem; color: var(--color-text-muted); }

@media (max-width: 768px) {
    .testimonials-slider { grid-template-columns: 1fr; }
}

/* ---------- Instagram ---------- */
.instagram-section { padding: 6rem 0; }
.instagram-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; }

.instagram-item { position: relative; aspect-ratio: 1 / 1; overflow: hidden; display: block; }
.instagram-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.instagram-item:hover img { transform: scale(1.06); }

.instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 18, 18, 0.4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    opacity: 0;
    transition: opacity var(--transition);
}

.instagram-item:hover .instagram-overlay { opacity: 1; }

@media (max-width: 768px) {
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Newsletter ---------- */
.newsletter { padding: 8rem 0; background: var(--color-bg-alt); }

.newsletter-content { max-width: 600px; margin: 0 auto; text-align: center; }
.newsletter-content h2 { font-family: var(--font-display); font-weight: 500; }
.newsletter-content p { color: var(--color-text-muted); font-size: 1.5rem; margin-bottom: 2.4rem; }

.newsletter-form { display: flex; gap: 0.8rem; max-width: 480px; margin: 0 auto; }

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 1.6rem;
    font-size: 1.5rem;
    font-family: inherit;
    background: #fff;
    border: 1px solid var(--color-border-strong);
    outline: none;
    transition: border-color var(--transition);
}

.newsletter-form input:focus { border-color: var(--color-text); }

@media (max-width: 540px) {
    .newsletter-form { flex-direction: column; }
}

/* ---------- Footer ---------- */
.footer { background: var(--color-text); color: #fff; padding: 6rem 0 3rem; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }

.footer-col h3,
.footer-col h4 {
    color: #fff;
    margin-bottom: 1.6rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-col .logo-text {
    color: #fff;
    text-transform: none;
    letter-spacing: 0.06em;
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
}

.footer-col p { color: rgba(255, 255, 255, 0.7); font-size: 1.4rem; margin-bottom: 2rem; }

.footer-col ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col li { font-size: 1.4rem; }
.footer-col a { color: rgba(255, 255, 255, 0.75); }
.footer-col a:hover { color: #fff; }

.social-links { display: flex; gap: 1.2rem; }
.social-links a {
    width: 3.8rem;
    height: 3.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all var(--transition);
}
.social-links a:hover { background: #fff; color: var(--color-text); }

.contact-info li { display: flex; align-items: flex-start; gap: 1rem; color: rgba(255, 255, 255, 0.75); }
.contact-info i { margin-top: 0.4rem; color: var(--color-accent); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2.4rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.3rem;
}

.footer-bottom p { margin: 0; }

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
    padding: 2rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 1.3rem;
    color: var(--color-text-muted);
}

.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; }
.breadcrumbs li::after { content: "/"; margin-left: 0.6rem; color: var(--color-text-muted); }
.breadcrumbs li:last-child::after { content: ""; }
.breadcrumbs a:hover { color: var(--color-text); }
.breadcrumbs [aria-current="page"] { color: var(--color-text); }

/* ---------- Page hero ---------- */
.page-hero {
    padding: 6rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.page-hero h1 { font-family: var(--font-display); font-weight: 500; margin-bottom: 1rem; }
.page-hero p { color: var(--color-text-muted); max-width: 640px; margin: 0 auto; font-size: 1.6rem; }

/* ---------- Collection toolbar ---------- */
.collection-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.4rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 1.4rem;
}

.collection-count { color: var(--color-text-muted); }
.collection-sort { display: inline-flex; align-items: center; gap: 0.8rem; }
.collection-sort select {
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--color-border-strong);
    background: #fff;
    font: inherit;
    font-size: 1.4rem;
}

/* ---------- Product detail ---------- */
.product-detail { padding: 5rem 0; }

.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: flex-start; }

@media (max-width: 900px) {
    .product-detail-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.pd-gallery { display: flex; flex-direction: column; gap: 1.2rem; }
.pd-main-image { aspect-ratio: 4 / 5; background: var(--color-bg-alt); overflow: hidden; }
.pd-main-image img { width: 100%; height: 100%; object-fit: cover; }

.pd-thumb-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; }
.pd-thumb { aspect-ratio: 1 / 1; background: var(--color-bg-alt); overflow: hidden; border: 1px solid transparent; cursor: pointer; }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb.active { border-color: var(--color-text); }

.pd-info { padding-top: 1rem; }

.pd-vendor {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 0.8rem;
}

.pd-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.6rem, 3vw, 3.6rem);
    margin-bottom: 1.2rem;
}

.pd-price { font-size: 2rem; font-weight: 600; margin-bottom: 1.6rem; }
.pd-rating { color: #d4a017; font-size: 1.4rem; margin-bottom: 2.4rem; }
.pd-rating span { color: var(--color-text-muted); margin-left: 0.6rem; font-size: 1.3rem; }

.pd-description { font-size: 1.5rem; line-height: 1.7; color: var(--color-text); margin-bottom: 2.4rem; }

.pd-features {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 1.6rem 0;
    margin-bottom: 2.4rem;
}

.pd-features li { display: flex; align-items: flex-start; gap: 1rem; padding: 0.6rem 0; font-size: 1.4rem; }
.pd-features i { color: var(--color-accent); margin-top: 0.4rem; }

.pd-qty-row { display: flex; gap: 1.2rem; align-items: center; margin-bottom: 2rem; }
.pd-qty { display: inline-flex; align-items: center; border: 1px solid var(--color-border-strong); }
.pd-qty button { width: 4.4rem; height: 4.6rem; font-size: 1.6rem; }
.pd-qty input { width: 5rem; text-align: center; border: none; outline: none; font: inherit; font-size: 1.5rem; }

.pd-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.pd-actions .btn { flex: 1; min-width: 200px; }

.pd-meta { margin-top: 2.4rem; font-size: 1.3rem; color: var(--color-text-muted); }
.pd-meta p { margin: 0.4rem 0; display: flex; align-items: center; gap: 0.8rem; }

/* ---------- FAQ ---------- */
.faq-section { padding: 6rem 0; background: var(--color-bg-soft); }

.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.8rem; }

.faq-item { background: #fff; border: 1px solid var(--color-border); }

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.8rem 2rem;
    font-weight: 600;
    font-size: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: "+";
    font-size: 2rem;
    font-weight: 400;
    transition: transform var(--transition);
}

.faq-item[open] summary::after { content: "−"; }

.faq-answer { padding: 0 2rem 2rem; color: var(--color-text-muted); font-size: 1.5rem; line-height: 1.7; }

/* ---------- About ---------- */
.about-story { padding: 8rem 0; max-width: 800px; margin: 0 auto; text-align: center; }
.about-story p { font-size: 1.6rem; line-height: 1.8; color: var(--color-text); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3.2rem; }

.value-card { text-align: center; padding: 2.4rem; border: 1px solid var(--color-border); }
.value-card i { color: var(--color-accent); font-size: 2.8rem; margin-bottom: 1.6rem; }
.value-card h3 { font-size: 1.7rem; margin-bottom: 0.8rem; }
.value-card p { color: var(--color-text-muted); font-size: 1.4rem; margin: 0; }

@media (max-width: 768px) {
    .values-grid { grid-template-columns: 1fr; }
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: flex-start; }

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.contact-info-block h3 { font-family: var(--font-display); font-weight: 500; }
.contact-info-block ul { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 1.6rem; }
.contact-info-block li { display: flex; align-items: flex-start; gap: 1.2rem; font-size: 1.5rem; }
.contact-info-block i { color: var(--color-accent); margin-top: 0.4rem; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 1.6rem; }

.form-group label {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem 1.4rem;
    font: inherit;
    font-size: 1.5rem;
    background: #fff;
    border: 1px solid var(--color-border-strong);
    outline: none;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--color-text); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }

@media (max-width: 540px) {
    .form-row { grid-template-columns: 1fr; }
}

/* ---------- Reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.active { opacity: 1; transform: translateY(0); }

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

.skip-link {
    position: absolute;
    top: -50px;
    left: 1rem;
    background: var(--color-text);
    color: #fff;
    padding: 0.8rem 1.6rem;
    z-index: 1000;
    transition: top var(--transition);
}

.skip-link:focus { top: 1rem; color: #fff; }

/* =========================================================
   Cart drawer (Shopify-style slide-in)
   ========================================================= */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(440px, 100vw);
    background: #fff;
    z-index: 110;
    transform: translateX(100%);
    transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -12px 0 32px rgba(18, 18, 18, 0.08);
}

.cart-drawer.active { transform: translateX(0); }

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.4rem;
    border-bottom: 1px solid var(--color-border);
    flex-shrink: 0;
}

.cart-drawer-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.close-cart-btn {
    width: 3.6rem;
    height: 3.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--color-text);
    transition: color var(--transition);
}

.close-cart-btn:hover { color: var(--color-accent); }

/* Free shipping progress bar — Shopify Dawn favourite */
.cart-shipping-bar {
    padding: 1.6rem 2.4rem;
    background: var(--color-bg-soft);
    border-bottom: 1px solid var(--color-border);
    font-size: 1.3rem;
    color: var(--color-text);
    flex-shrink: 0;
}

.cart-shipping-bar .shipping-message {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.cart-shipping-bar .shipping-message strong { color: var(--color-accent); }

.cart-shipping-progress {
    width: 100%;
    height: 4px;
    background: rgba(18, 18, 18, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.cart-shipping-progress .bar {
    height: 100%;
    background: var(--color-accent);
    width: 0%;
    transition: width 400ms ease;
}

.cart-drawer-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.cart-empty {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 2.4rem;
    text-align: center;
    height: 100%;
    min-height: 320px;
}

.cart-empty i {
    font-size: 4.8rem;
    color: var(--color-border-strong);
    margin-bottom: 1.6rem;
}

.cart-empty p {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    margin-bottom: 2.4rem;
}

.cart-items { padding: 0; }

.cart-item {
    display: grid;
    grid-template-columns: 88px 1fr auto;
    gap: 1.6rem;
    padding: 2rem 2.4rem;
    border-bottom: 1px solid var(--color-border);
    align-items: flex-start;
}

.cart-item-image {
    width: 88px;
    height: 110px;
    background: var(--color-bg-alt);
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details h4 {
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0 0 0.4rem;
    line-height: 1.4;
}

.cart-item-price {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 1rem;
}

.cart-item-quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--color-border-strong);
    width: fit-content;
}

.cart-item-quantity .qty-btn {
    width: 3.2rem;
    height: 3.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: background var(--transition);
}

.cart-item-quantity .qty-btn:hover { background: var(--color-bg-alt); }

.cart-item-quantity .qty-input {
    width: 3.6rem;
    text-align: center;
    border: none;
    outline: none;
    font: inherit;
    font-size: 1.4rem;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-item-remove {
    width: 3.2rem;
    height: 3.2rem;
    color: var(--color-text-muted);
    font-size: 1.3rem;
    transition: color var(--transition);
}

.cart-item-remove:hover { color: var(--color-sale); }

.cart-drawer-footer {
    padding: 2rem 2.4rem;
    border-top: 1px solid var(--color-border);
    background: #fff;
    flex-shrink: 0;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.6rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.cart-subtotal-note {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 1.6rem;
}

.btn-checkout {
    width: 100%;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(18, 18, 18, 0.4);
    z-index: 105;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.cart-overlay.active { opacity: 1; pointer-events: auto; }

/* =========================================================
   Modals (checkout / success / search)
   ========================================================= */
.checkout-modal,
.success-modal,
.search-modal {
    position: fixed;
    inset: 0;
    z-index: 130;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 4rem 2rem;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.checkout-modal.active,
.success-modal.active,
.search-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.checkout-overlay,
.success-overlay {
    position: fixed;
    inset: 0;
    background: rgba(18, 18, 18, 0.5);
    z-index: 125;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.checkout-overlay.active,
.success-overlay.active { opacity: 1; pointer-events: auto; }

.checkout-modal-content,
.success-modal-content {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 640px;
    padding: 4rem 4rem 3.2rem;
    margin: auto;
    box-shadow: var(--shadow-lg);
    z-index: 131;
}

@media (max-width: 540px) {
    .checkout-modal,
    .success-modal { padding: 0; }
    .checkout-modal-content,
    .success-modal-content { padding: 3rem 2rem; min-height: 100vh; }
}

.close-checkout-btn,
.close-search-btn {
    position: absolute;
    top: 1.6rem;
    right: 1.6rem;
    width: 3.6rem;
    height: 3.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--color-text);
    z-index: 2;
}

.checkout-modal-content h2 {
    font-family: var(--font-display);
    font-weight: 500;
    margin-bottom: 2.4rem;
}

.checkout-modal-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.checkout-summary { margin-bottom: 2.4rem; }

.checkout-items {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
    color: var(--color-text);
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 1.7rem;
    font-weight: 600;
    padding-top: 1.2rem;
    border-top: 1px solid var(--color-border);
}

.btn-place-order { width: 100%; margin-top: 0.8rem; }

/* Success modal */
.success-modal-content { text-align: center; }

.success-icon {
    width: 7.2rem;
    height: 7.2rem;
    margin: 0 auto 2rem;
    background: var(--color-accent-soft);
    color: var(--color-accent);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
}

.success-modal-content h2 {
    font-family: var(--font-display);
    font-weight: 500;
}

.order-number {
    background: var(--color-bg-soft);
    padding: 1.2rem 1.6rem;
    margin: 2rem 0;
    font-size: 1.4rem;
    border: 1px solid var(--color-border);
}

.order-number span { font-weight: 700; }

/* Search modal */
.search-modal { padding-top: 14vh; }

.search-modal-content {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 720px;
    padding: 3.2rem;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    z-index: 131;
}

.search-form {
    display: flex;
    border-bottom: 1px solid var(--color-text);
    padding-bottom: 0.4rem;
}

.search-form input {
    flex: 1;
    padding: 1rem 0.4rem;
    font: inherit;
    font-size: 1.8rem;
    border: none;
    outline: none;
    background: transparent;
}

.search-form button[type="submit"] {
    padding: 0 1rem;
    font-size: 1.7rem;
    color: var(--color-text);
}

/* Cart icon bump animation */
.cart-btn.bump { animation: cart-bump 320ms ease; }
@keyframes cart-bump {
    0% { transform: scale(1); }
    40% { transform: scale(1.18); }
    100% { transform: scale(1); }
}

/* =========================================================
   Advanced / editorial components (v2 design)
   ========================================================= */

/* Korean language adjustments */
:lang(ko) {
    --font-body: "Noto Sans KR", "Assistant", -apple-system, sans-serif;
    --font-heading: "Noto Sans KR", "Assistant", -apple-system, sans-serif;
    --font-display: "Noto Serif KR", "Playfair Display", serif;
    letter-spacing: -0.005em;
}

:lang(ko) h1, :lang(ko) h2, :lang(ko) h3, :lang(ko) h4 {
    letter-spacing: -0.02em;
}

/* Page-load fade */
body {
    animation: page-fade 500ms ease;
}
@keyframes page-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Eyebrow — small uppercase label above headings */
.eyebrow {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-accent);
    margin-bottom: 1.6rem;
}

.eyebrow::before {
    content: "—";
    margin-right: 0.8rem;
    color: var(--color-text-muted);
}

/* Language switcher in header */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.1rem;
    margin-left: 0.6rem;
    border: 1px solid var(--color-border-strong);
    background: transparent;
    color: var(--color-text);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
}

.lang-switch:hover {
    background: var(--color-text);
    color: #fff;
    border-color: var(--color-text);
}

.lang-switch .lang-current { font-weight: 700; }
.lang-switch .lang-sep { opacity: 0.4; margin: 0 0.2rem; }
.lang-switch .lang-other { opacity: 0.6; }

@media (max-width: 992px) {
    .lang-switch { padding: 0.4rem 0.8rem; font-size: 1.1rem; }
}

/* Announcement bar — rotating */
.announcement-bar {
    position: relative;
    overflow: hidden;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-bar p {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 400ms ease, transform 400ms ease;
}

.announcement-bar p.active {
    opacity: 1;
    transform: translateY(0);
}

/* Marquee strip — scrolling brand values */
.marquee {
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 2rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    gap: 6rem;
    animation: marquee-scroll 28s linear infinite;
    padding-right: 6rem;
}

.marquee-track > span {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 400;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

.marquee-track > span::after {
    content: "✦";
    font-size: 1.4rem;
    color: var(--color-accent);
    font-style: normal;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.marquee:hover .marquee-track { animation-play-state: paused; }

/* Hero split layout — oversized editorial hero */
.hero-split {
    position: relative;
    min-height: clamp(560px, 86vh, 880px);
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.hero-split-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 6rem;
    min-height: clamp(560px, 86vh, 880px);
    align-items: center;
}

.hero-split-content {
    padding: 4rem 0;
    position: relative;
    z-index: 2;
}

.hero-split-content .hero-eyebrow {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 2.4rem;
    display: block;
}

.hero-split-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(4.4rem, 7vw, 8.8rem);
    line-height: 0.95;
    letter-spacing: -0.025em;
    margin-bottom: 2.4rem;
    color: var(--color-text);
}

.hero-split-title em {
    font-style: italic;
    color: var(--color-accent);
}

.hero-split-subtitle {
    font-size: clamp(1.6rem, 1.7vw, 1.9rem);
    line-height: 1.5;
    color: var(--color-text-muted);
    max-width: 480px;
    margin-bottom: 3.6rem;
}

.hero-split-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-split-meta {
    margin-top: 4rem;
    display: flex;
    gap: 3.2rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.hero-split-meta strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: -0.01em;
    text-transform: none;
    margin-bottom: 0.4rem;
}

.hero-split-image {
    position: relative;
    height: 100%;
    min-height: 60vh;
    overflow: hidden;
}

.hero-split-image img,
.hero-split-image .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    transition: opacity 600ms ease, transform 8s ease;
    opacity: 0;
}

.hero-split-image .hero-bg.active {
    opacity: 1;
    transform: scale(1.04);
}

.hero-split-badge {
    position: absolute;
    top: 3rem;
    right: 3rem;
    z-index: 3;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 0.8rem 1.4rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text);
}

.hero-split-pager {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    z-index: 3;
    display: flex;
    gap: 0.6rem;
}

.hero-split-pager .dot {
    width: 3.2rem;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition);
}

.hero-split-pager .dot.active { background: #fff; }

@media (max-width: 900px) {
    .hero-split-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .hero-split-content { padding: 5rem 0 4rem; order: 2; }
    .hero-split-image { min-height: 50vh; order: 1; }
    .hero-split-meta { gap: 2rem; }
    .hero-split-badge { top: 1.6rem; right: 1.6rem; }
    .hero-split-pager { bottom: 1.6rem; right: 1.6rem; }
}

/* Manifesto block — large serif statement */
.manifesto {
    padding: 12rem 0;
    background: var(--color-bg);
    text-align: center;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.manifesto-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.manifesto-text {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.6rem, 4.5vw, 5.2rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin-bottom: 3rem;
}

.manifesto-text em {
    font-style: italic;
    color: var(--color-accent);
}

.manifesto-attribution {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .manifesto { padding: 8rem 0; }
}

/* Editorial product showcase — asymmetric grid */
.editorial {
    padding: 10rem 0;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.editorial-item {
    position: relative;
}

.editorial-item-number {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.6rem;
    color: var(--color-text-muted);
    margin-bottom: 1.6rem;
    display: block;
}

.editorial-item h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(3rem, 4vw, 4.4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.6rem;
}

.editorial-item p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 2.4rem;
    max-width: 460px;
}

.editorial-item .editorial-price {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 2.4rem;
    font-weight: 500;
}

.editorial-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--color-bg-alt);
}

.editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 800ms cubic-bezier(0.4, 0, 0.2, 1);
}

.editorial-item:hover .editorial-image img { transform: scale(1.05); }

.editorial-grid.reverse > :first-child { order: 2; }

@media (max-width: 900px) {
    .editorial { padding: 6rem 0; }
    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 3.2rem;
    }
    .editorial-grid.reverse > :first-child { order: 0; }
}

/* Premium product cards (v2) — bigger, more space, hover label */
.products-grid {
    gap: 4.8rem 2.4rem;
}

.product-card .product-image {
    aspect-ratio: 3 / 4;
}

/* Section title with eyebrow */
.section-eyebrow {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 1.4rem;
}

.section-title {
    font-size: clamp(3rem, 4.5vw, 4.8rem);
    letter-spacing: -0.02em;
}

/* Modern footer upgrade */
.footer {
    padding: 8rem 0 3rem;
}

.footer-brand-statement {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(2.2rem, 3vw, 3.4rem);
    line-height: 1.3;
    color: #fff;
    margin-bottom: 6rem;
    max-width: 800px;
    letter-spacing: -0.01em;
}

/* Scroll-triggered reveal v2 — smoother */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons — magnetic hover */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-accent);
    transform: translateY(100%);
    transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn:hover::before { transform: translateY(0); }

.btn:hover {
    background: var(--color-text);
    border-color: var(--color-text);
}

.btn-on-dark:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

/* Korean wider line-height for body */
:lang(ko) p,
:lang(ko) li,
:lang(ko) .hero-split-subtitle,
:lang(ko) .editorial-item p {
    line-height: 1.75;
}

:lang(ko) .hero-split-title,
:lang(ko) .manifesto-text,
:lang(ko) .editorial-item h3 {
    line-height: 1.25;
}

/* Reading-friendly Korean numeric */
:lang(ko) .marquee-track > span { font-style: normal; }

/* Link with arrow indicator (Aesop-style) */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.3rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text);
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--color-text);
    transition: all var(--transition);
}

.link-arrow::after {
    content: "→";
    transition: transform var(--transition);
}

.link-arrow:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

/* Editorial collection grid (replaces old products-grid on home) */
.featured-collection {
    padding: 8rem 0 12rem;
    background: var(--color-bg);
}

.featured-collection-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 6rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.featured-collection-header h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(3rem, 4.5vw, 5.4rem);
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 0;
    max-width: 600px;
}

@media (max-width: 768px) {
    .featured-collection { padding: 6rem 0 8rem; }
    .featured-collection-header { margin-bottom: 4rem; }
}

/* Brand-row strip (small icons section refresh) */
.benefits {
    padding: 4rem 0;
    background: var(--color-bg-soft);
    border-bottom: none;
}

.benefit-card {
    border-right: 1px solid var(--color-border);
}

.benefits-grid .benefit-card:last-child { border-right: none; }

@media (max-width: 768px) {
    .benefit-card { border-right: none; border-bottom: 1px solid var(--color-border); padding-bottom: 2.4rem; }
    .benefits-grid .benefit-card:last-child { border-bottom: none; }
}
