/* ═══════════════════════════════════════════════
   ARVO — Shared Stylesheet (arvo-shared.css)
   모든 페이지(index, norix, lorin, nevora)에서 공통 사용
═══════════════════════════════════════════════ */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ── Design Tokens ── */
:root {
    --brown:        #7B542F;
    --linen:        #F3EFE8;
    --dust:         #9A9088;
    --stone:        #4A453D;
    --nbrown:       #A77F60;
    --mid:          #A98B76;
    --mid2:         #C1A17B;
    --maxbrown:     #362706;
    --maxxbrown:    #251a02;
    --arvo-navy:    #1a2332;
    --arvo-terracotta: #d4a574;
    --cream:        #F2EDE6;
    --dark:         #1C1A18;
    --mid3:         #5A544E;
    --light:        #A09890;
    --warm-white:   #F8F5F1;
    --rule:         #D6CFC8;
    --parchment:    #EDE8E1;
    --arvo-warm-gray: #e8e6e1;
    --arvo-light-gray: #BFC9D1;
    --arvo-green:   #7fae9c;
    --arvo-ivory:   #f5f3f0;
    --arvo-mint:    #c8dfd8;
}

/* ── Body ── */
body {
    font-family: "Pretendard Variable", Pretendard, "Noto Sans KR", sans-serif;
    background-color: oklch(0.98 0.001 0);
    color: var(--arvo-navy);
    letter-spacing: 0.3px;
    line-height: 1.6;
}

/* ── Custom Cursor ── */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--stone);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}
.cursor.grow {
    width: 40px;
    height: 40px;
    background-color: #9A908833;
}
body.dark-section .cursor { background: var(--linen); }
body.dark-section .cursor.grow { border-color: var(--linen); background: transparent; }

/* ── Typography ── */
h1 {
    font-family: 'GmarketSansMedium', sans-serif;
    font-weight: 700;
    font-size: 4.5rem;
    line-height: 1.15;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}
h2 {
    font-family: "Pretendard Variable", Pretendard, sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: var(--arvo-navy);
}
h3 {
    font-family: "Pretendard Variable", Pretendard, sans-serif;
    font-weight: 600;
    font-size: 1.75rem;
    line-height: 1.4;
}
h4 {
    font-family: "Pretendard Variable", Pretendard, sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}
p {
    font-size: 1rem;
    color: oklch(0.35 0.02 280);
    margin-bottom: 1rem;
}
.text-small { font-size: 0.875rem; line-height: 1.5; }

/* ── Container ── */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (min-width: 640px) {
    .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
    .container { padding-left: 2rem; padding-right: 2rem; max-width: 80vw; }
    body { cursor: none; }
}

/* ── Animations ── */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeScale {
    from { opacity: 0; transform: scale(.95); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes lineGrow { to { transform: scaleX(1); } }
@keyframes appear   { to  { opacity: 1; } }

.animate-fade-in         { animation: fadeIn 0.8s ease-out forwards; }
.animate-fade-in-delay-1 { animation: fadeIn 0.8s ease-out 0.2s forwards; opacity: 0; }
.animate-fade-in-delay-2 { animation: fadeIn 0.8s ease-out 0.4s forwards; opacity: 0; }
.animate-fade-in-delay-3 { animation: fadeIn 0.8s ease-out 0.6s forwards; opacity: 0; }
.animate-bounce          { animation: bounce 2s infinite; }

/* ── Navigation ── */
/* ── 메인 랜딩 nav (index.html — 투명 시작 → 스크롤 시 white) ── */
nav#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background-color: transparent;
}
nav#navbar.scrolled {
    background-color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
nav#navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
/* nav#navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0;
    display: inline-block;
    transition: transform 0.2s ease-out;
} */

nav#navbar .logo-img {
    height: auto;
    width: 100px;
    display: block;
    transition: transform 0.2s ease-out;
}

nav#navbar a.logo-link       { color: inherit; }
nav#navbar a.logo-link:hover { color: inherit; }
nav#navbar a.logo-link:hover .logo-img { transform: scale(1.06); }
nav#navbar .nav-links        { display: none; gap: 2rem; align-items: center; }
@media (min-width: 768px) { nav#navbar .nav-links { display: flex; } }
nav#navbar a {
    font-size: 0.875rem;
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease-out;
}
nav#navbar a:hover { color: var(--arvo-terracotta); }

/* ── 브랜드 페이지 nav (sticky 고정 배경 — 색상은 각 브랜드 CSS에서) ── */
nav.site-nav {
    position: sticky;
    top: 0; z-index: 50;
    backdrop-filter: blur(8px);
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
nav.site-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    background-size: cover;
    background-position: center;
    background-image: url('Image/nordic_different_1.png');
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.2);
}
.hero .container        { position: relative; z-index: 10; }
.hero-content           { max-width: 40rem; }
.hero-subtitle {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero h1 { color: white; margin-bottom: 1.5rem; }
.hero p  {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 35rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}
.scroll-indicator svg { color: rgba(255,255,255,0.6); width: 24px; height: 24px; }

/* ── Buttons ── */
button, .btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    display: inline-block;
}
button:active, .btn:active { transform: scale(0.97); }
.btn-primary  { background-color: white; color: var(--arvo-navy); box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.btn-primary:hover  { background-color: rgba(255,255,255,0.9); }
.btn-secondary { border: 1px solid white; color: white; background-color: transparent; backdrop-filter: blur(2px); }
.btn-secondary:hover { background-color: rgba(255,255,255,0.1); }
.btn-dark { background-color: var(--arvo-navy); color: white; }
.btn-dark:hover { opacity: 0.9; }

/* ── Sections ── */
section { padding: 8rem 0; }
.section-header { margin-bottom: 5rem; }
.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: oklch(0.45 0.03 280);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* ── MANIFESTO ── */
.manifesto { background: var(--warm-white); padding: 100px 56px; }
.manifesto-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 60px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--rule);
}
.manifesto-header h2 {
    font-family: 'EB Garamond', serif;
    font-size: clamp(26px,3vw,40px);
    font-weight: 400;
    color: var(--dark);
}
.manifesto-header span {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--light);
}
.m-list { list-style: none; }
.m-list li {
    display: grid;
    grid-template-columns: 56px 1fr 110px;
    gap: 0 40px;
    align-items: baseline;
    padding: 26px 0;
    border-bottom: 1px solid var(--rule);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s, transform 0.5s;
}
.m-list li.vis { opacity: 1; transform: none; }
.m-list li:last-child { border-bottom: none; }
.m-num  { font-size: 13px; font-style: italic; color: var(--light); }
.m-text { font-size: clamp(17px,2.1vw,25px); font-weight: 400; color: var(--dark); line-height: 1.45; }
.m-tag  { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--light); text-align: right; }

/* ── Values Grid ── */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) { .values-grid { grid-template-columns: 1fr 1fr; } }
.value-card {
    padding: 2rem;
    background-color: oklch(0.98 0.001 0);
    border: 1px solid oklch(0.92 0.004 286.32);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, var(--mid), oklch(0.75 0.08 180 / 0));
}
.value-card:hover { box-shadow: 0 8px 16px rgba(0,0,0,0.08); transform: translateY(-4px); }
.value-card h4 { color: var(--arvo-navy); margin-bottom: 0.75rem; font-size: 1.1rem; }
.value-card p  { font-size: 0.9rem; line-height: 1.7; color: oklch(0.35 0.02 280); }

/* ── ARVO Values Banner ── */
.arvo-values { background: #A89888; padding: 72px 40px; border-top: 0.5px solid rgba(255,255,255,0.05); }
.arvo-values-inner {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    border: 0.5px solid rgba(255,255,255,0.06);
    background: #F2EDE622;
}
.arvo-vi {
    padding: 44px 32px; text-align: center;
    border-right: 0.5px solid rgba(255,255,255,0.06);
    transition: background .3s;
}
.arvo-vi:last-child { border-right: none; }
.arvo-vi:hover { background: rgba(255,255,255,0.02); }
.arvo-vi-n {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px; font-weight: 300;
    color: rgba(255,255,255,0.5); line-height: 1; margin-bottom: 16px;
    transition: color .4s;
}
.arvo-vi:hover .arvo-vi-n { color: var(--brown); }
.arvo-vi-t { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: #fff; margin-bottom: 12px; }
.arvo-vi-b { font-size: 12px; line-height: 1.8; color: rgba(255,255,255,0.712); }

/* ── Divider ── */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, oklch(0.92 0.004 286.32), transparent);
    margin: 4rem 0;
}

/* ── Brands Section ── */
.brands-section { background: var(--parchment); padding: 100px 56px; }
.sec-head { margin-bottom: 72px; display: block; }
.sec-head h2 { font-size: clamp(32px,4vw,54px); font-weight: 400; line-height: 1.1; color: var(--dark); }
.brand-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--rule); }
.brand-item {
    background: var(--warm-white);
    padding: 56px 44px;
    transition: background 0.35s;
    cursor: pointer;
}
.brand-item:hover { background: var(--maxxbrown); }
.brand-item:hover .bi-num,
.brand-item:hover .bi-category,
.brand-item:hover .bi-slogan,
.brand-item:hover .bi-desc { color: rgba(242,237,230,0.6); }
.brand-item:hover .bi-name { color: var(--parchment); }
.brand-item:hover .bi-rule { background: rgba(242,237,230,0.12); }
.brand-item:hover .bi-link { color: var(--parchment); }
.brand-item:hover .bi-link::after { background: var(--parchment); }
.bi-num      { font-family: 'EB Garamond',serif; font-size: 11px; font-style: italic; color: var(--light); margin-bottom: 44px; display: block; transition: color 0.35s; }
.bi-category { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--light); margin-bottom: 12px; display: block; transition: color 0.35s; }
.bi-name     { font-family: 'EB Garamond',serif; font-size: clamp(38px,3.5vw,54px); font-weight: 400; letter-spacing: 0.04em; color: var(--dark); line-height: 1; margin-bottom: 18px; display: block; transition: color 0.35s; }
.bi-rule     { width: 32px; height: 1px; background: var(--rule); margin-bottom: 18px; transition: background 0.35s; }
.bi-slogan   { font-family: 'EB Garamond',serif; font-size: 15px; font-style: italic; color: var(--mid3); line-height: 1.55; margin-bottom: 18px; display: block; transition: color 0.35s; }
.bi-desc     { font-size: 13px; font-weight: 300; line-height: 1.9; color: var(--mid3); margin-bottom: 36px; transition: color 0.35s; }
.bi-link     { display: inline-flex; align-items: center; gap: 12px; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dark); text-decoration: none; transition: color 0.35s; }
.bi-link::after { content: ''; display: block; width: 28px; height: 1px; background: var(--dark); transition: width 0.3s, background 0.35s; }
.bi-link:hover::after { width: 44px; }

/* ── About Section ── */
.about-section {
    padding: 120px 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}
.about-left h2 { font-size: clamp(36px,4.5vw,64px); font-weight: 400; line-height: 1.1; color: var(--dark); margin-bottom: 48px; }
.about-right   { padding-top: 56px; border-top: 1px solid var(--rule); }
.about-right p { font-size: 15px; font-weight: 300; line-height: 1.95; color: var(--mid3); margin-bottom: 24px; }

/* ── Editorial ── */
.eyebrow { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--light); margin-bottom: 20px; display: block; }
.editorial { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }
.ed-image  { position: relative; overflow: hidden; }
.ed-base   { position: absolute; inset: 0; background: linear-gradient(145deg,#C8BCAA 0%,#A89888 45%,#8C7A68 100%); }
.ed-light  { position: absolute; inset: 0; background: radial-gradient(ellipse 55% 50% at 22% 22%,rgba(255,248,235,.5),transparent 50%),radial-gradient(ellipse 40% 55% at 72% 72%,rgba(90,70,55,.2),transparent 50%); }
.ed-obj    { position: absolute; bottom: 22%; left: 50%; transform: translateX(-50%); width: 150px; height: 195px; background: linear-gradient(155deg,#E8DDD0,#C0AE9C); box-shadow: -14px 18px 44px rgba(0,0,0,.16); }
.ed-small  { position: absolute; top: 24%; right: 19%; width: 65px; height: 65px; border-radius: 50%; background: linear-gradient(135deg,#D0C4B0,#B0A090); box-shadow: -8px 10px 22px rgba(0,0,0,.11); }
.ed-cap    { position: absolute; bottom: 32px; left: 32px; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mid3); }
.ed-content { background: var(--cream); padding: 80px 72px; display: flex; flex-direction: column; justify-content: center; }
.ed-content h2 { font-family: 'EB Garamond',serif; font-size: clamp(28px,3vw,44px); font-weight: 400; line-height: 1.25; color: var(--dark); margin-bottom: 28px; }
.ed-content p  { font-size: 14px; font-weight: 300; line-height: 1.95; color: var(--mid3); margin-bottom: 20px; }
.ed-content .text-link { margin-top: 20px; }
.text-link {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--dark); text-decoration: none;
    opacity: 0; animation: appear 1.2s 1s forwards;
}
.text-link::after { content: ''; display: block; width: 40px; height: 1px; background: var(--dark); transition: width 0.3s; }
.text-link:hover::after { width: 60px; }
.text-link.shown { opacity: 1; animation: none; }

/* ── CTA ── */
.cta { background-color: oklch(0.92 0.02 70 / 0.3); }
.cta-content { max-width: 48rem; margin: 0 auto; text-align: center; }
.cta-content h2 { margin-bottom: 1.5rem; }
.cta-content p  { font-size: 1.125rem; margin-bottom: 3rem; line-height: 1.8; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.cta-dark-norix  { background: linear-gradient(to right,var(--arvo-light-gray),rgba(26,35,50,.9)); }
.cta-dark-nevora { background: linear-gradient(to right,#7fae9c75,#c8dfd89e); }
.cta-dark h2, .cta-dark p { color: #fff; }
.cta-warm        { background: linear-gradient(to right,var(--mid),#C8B8A6); }

/* ── Footer ── */
footer {
    padding: 3rem 0;
    background-color: var(--footer-bg, var(--dark));
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-section h4 {
    font-weight: 600; margin-bottom: 1rem; font-size: 0.875rem;
    text-transform: uppercase; letter-spacing: 0.05em;
    color: rgba(242,237,230,0.28);
}
.footer-section p  { font-size: 0.875rem; color: rgba(242,237,230,0.48); margin: 0; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.5rem; }
.footer-section a {
    color: rgba(242,237,230,0.48);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease-out;
}
.footer-section a:hover { color: var(--parchment); }
.footer-bottom { border-top: 1px solid rgba(242,237,230,0.07); padding-top: 2rem; text-align: center; }
.footer-bottom p { font-size: 0.875rem; color: rgba(242,237,230,0.18); margin: 0; }

/* ── Fade-in on scroll ── */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease-out;
}
.fade-in-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ── Scroll Reveal ── */
.reveal        { opacity: 0; transform: translateY(24px); transition: opacity .8s ease-out, transform .8s ease-out; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-scale  { opacity: 0; transform: scale(.95); transition: opacity .8s ease-out, transform .8s ease-out; }
.reveal-scale.in-view { opacity: 1; transform: scale(1); }
.reveal-stagger > * { opacity: 0; transform: translateY(28px); transition: opacity .8s ease-out, transform .8s ease-out; }
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: .1s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: .2s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: .3s; }

/* ── Hero Entrance ── */
.anim-hero-text { opacity: 0; animation: fadeUp .8s ease-out forwards; }
.anim-hero-text.delay-1 { animation-delay: .15s; }
.anim-hero-text.delay-2 { animation-delay: .3s; }
.anim-hero-img  { opacity: 0; animation: fadeScale 1s ease-out .2s forwards; }
.anim-hero-line { transform: scaleX(0); transform-origin: center; animation: lineGrow 1s ease-out .8s forwards; }
.fade-up { opacity: 0; transform: translateY(10px); transition: opacity 0.5s, transform 0.5s; }
.fade-up.vis { opacity: 1; transform: none; }

/* ── Hover micro-interactions ── */
.arvo-cta { transform: translateY(0); }
.arvo-cta:hover { opacity: .88; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(26,35,50,.25); }
.card { transition: transform .35s ease, box-shadow .35s ease; }
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(26,35,50,.16); }
.icon-circle { transition: transform .3s ease; }
.card:hover .icon-circle { transform: scale(1.08); }
.tab-btn { transform: translateY(0); }
.tab-btn:hover:not(.active) { background: rgba(232,230,225,.85); transform: translateY(-1px); }
.nav-links a { position: relative; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 1px; background: var(--arvo-terracotta); transition: width .25s ease; }
.nav-links a:hover::after { width: 100%; }
footer a { transition: color .2s ease; }
.gallery-grid img { transition: transform .5s ease, box-shadow .35s ease; }
.gallery-grid img:hover { box-shadow: 0 16px 40px rgba(0,0,0,.2); }
.product-icon-box { transition: transform .35s ease; }
.card:hover .product-icon-box { transform: scale(1.04); }

/* ── Responsive ── */
@media (max-width: 768px) {
    body { cursor: auto; }
    .cursor { display: none; }
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    section { padding: 4rem 0; }
    .hero-buttons { flex-direction: column; }
    button, .btn { width: 100%; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; }
    .manifesto  { padding: 72px 28px; }
    .about-section { grid-template-columns: 1fr; gap: 48px; padding: 80px 28px; }
    .brands-section { padding: 72px 28px; }
    .brand-grid { grid-template-columns: 1fr; }
    .editorial  { grid-template-columns: 1fr; }
    .arvo-values-inner { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════
   BRAND PAGE SHARED STYLES — 구조/레이아웃만
   색상·그라데이션·배경은 각 브랜드 CSS에서 정의
════════════════════════════════════════════ */
.brand-page {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
}
.brand-page .container {
    width: 100%;
    margin-left: auto; margin-right: auto;
    padding-left: 1rem; padding-right: 1rem;
}
@media (min-width: 640px) {
    .brand-page .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
    .brand-page .container { padding-left: 2rem; padding-right: 2rem; max-width: 80vw; }
}

/* Brand page nav 로고 / 링크 — 색상은 브랜드 CSS에서 */
.brand-page .logo { font-size: 1.5rem; text-decoration: none; }
.brand-page .nav-links { display: none; gap: 3rem; }
@media (min-width: 768px) { .brand-page .nav-links { display: flex; } }
.brand-page .nav-links a { font-size: 0.875rem; text-decoration: none; transition: color .2s; }
.brand-page .nav-links a::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 1px; transition: width .25s ease; }
.brand-page .nav-links a:hover::after { width: 100%; }

/* Typography */
.arvo-heading-lg {
    font-family: 'EB Garamond', serif; font-weight: 400;
    font-size: clamp(2.2rem,5vw,3.75rem); line-height: 1.15;
    letter-spacing: -0.01em; color: var(--dark);
}
.arvo-heading-sm {
    font-family: 'EB Garamond', serif; font-weight: 400;
    font-size: 1.4rem; line-height: 1.3; color: var(--dark);
}
.arvo-body    { font-size: 1rem; line-height: 1.7; color: var(--mid3); }
.arvo-caption { font-size: 0.875rem; }

/* Utility */
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.text-center  { text-align: center; }
.mb-4  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: .75rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-20 { margin-bottom: 5rem; }
.pt-4  { padding-top: 1rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* Grid */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) {
    .grid-2 { grid-template-columns: 1fr 1fr; }
    .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}

/* Hero gradient wrapper — 실제 색상은 브랜드 CSS에서 */
.hero-grad-norix,
.hero-grad-lorin,
.hero-grad-nevora { padding: 10rem 0 8rem; }

/* Hero image */
.hero-img {
    position: relative; height: 24rem;
    border-radius: 2px; overflow: hidden;
    box-shadow: 0 20px 40px rgba(28,26,24,.18);
}
@media (min-width: 768px) { .hero-img { width: 100%; } }
.hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 10px; }
.hero-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top,rgba(28,26,24,.15),transparent);
}

/* Sections */
.py-section { padding: 6rem 0; }
@media (min-width: 768px) { .py-section { padding: 8rem 0; } }

/* Cards — 배경색은 브랜드 CSS에서 */
.card {
    border-radius: 2px;
    padding: 2rem; text-align: center;
    box-shadow: 0 10px 30px rgba(28,26,24,.08);
}
.icon-circle {
    width: 64px; height: 64px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
}
.icon-circle svg { width: 28px; height: 28px; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; border-radius: 30px; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
.gallery-grid img {
    width: 100%; height: 24rem; object-fit: cover;
    border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,.1);
    transition: transform .5s;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* Product icon box */
.product-icon-box { height: 12rem; margin-bottom: 2rem; display: flex; align-items: center; justify-content: center; }

/* Tab row */
.tab-row { display: flex; justify-content: center; gap: 1rem; margin-bottom: 5rem; flex-wrap: wrap; }
.tab-btn {
    padding: .75rem 2rem; border-radius: 2px; font-weight: 400;
    border: none; cursor: pointer;
    background: var(--rule); color: var(--dark);
    transition: all .25s; font-size: .95rem;
}
.tab-btn.active { background: var(--dark); color: #fff; }

/* Footer bottom */
.footer-bottom { text-align: center; }
