:root {
    --bg: #f5f1ea;
    --bg-2: #ebe5d8;
    --bg-3: #ffffff;
    --paper: #faf6ee;
    --ink: #14181f;
    --ink-2: #2a2f38;
    --ink-dim: #5a6170;
    --ink-mute: #8b909c;
    --navy: #1a2842;
    --navy-deep: #0f1828;
    --rust: #b8543a;
    --olive: #6b6b3a;
    --rule: #d8d0bf;
    --rule-2: #c4baa3;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Barlow', sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.55;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

/* ========== TOP BAR ========== */
.topbar {
    background: var(--navy);
    color: #cfd4de;
    font-size: 12px;
    letter-spacing: 0.06em;
}
.topbar-inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 9px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-left, .topbar-right {
    display: flex;
    gap: 22px;
    align-items: center;
}
.topbar a {
    color: #cfd4de;
    text-decoration: none;
    transition: color 0.2s;
}
.topbar a:hover { color: #fff; }
.lang-switch {
    display: flex;
    gap: 8px;
    border-left: 1px solid rgba(255,255,255,0.15);
    padding-left: 18px;
}
.lang-switch a.active { color: #fff; font-weight: 500; }
.lang-switch a:not(.active)::after {
    content: '· ';
    margin-left: 8px;
    color: rgba(255,255,255,0.3);
}

/* ========== HEADER ========== */
.header {
    position: sticky;
    top: 0;
    background: rgba(245, 241, 234, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--rule);
    z-index: 100;
}
.header-inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 22px 40px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 50px;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--ink);
}
.logo-img {
    height: 44px;
    width: auto;
    display: block;
}
.logo-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--ink);
}
.logo-mark .dot {
    color: var(--rust);
}
.logo-tag {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
    border-left: 1px solid var(--rule-2);
    padding-left: 12px;
    line-height: 1.3;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 36px;
    justify-content: center;
}
nav a {
    color: var(--ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    padding: 4px 0;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rust);
    transition: width 0.3s;
}
nav a:hover::after { width: 100%; }

.header-actions {
    display: flex;
    gap: 14px;
    align-items: center;
}
.btn-search {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--rule-2);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    transition: all 0.2s;
}
.btn-search:hover { border-color: var(--ink); }
.btn-search svg { width: 16px; height: 16px; }
.cta-btn {
    background: var(--ink);
    color: var(--bg);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    border: 1px solid var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.cta-btn:hover {
    background: transparent;
    color: var(--ink);
}

/* ========== HERO ========== */
.hero {
    padding: 70px 40px 0;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/img/store-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.10;
    filter: grayscale(0.4) contrast(0.95);
    pointer-events: none;
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(245,241,234,0.6) 0%, rgba(245,241,234,0.2) 50%, rgba(245,241,234,0.85) 100%);
    pointer-events: none;
    z-index: 0;
}
.hero-inner {
    max-width: 1380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: end;
    min-height: 78vh;
    position: relative;
    z-index: 1;
}

.hero-left {
    padding-bottom: 80px;
    position: relative;
}
.hero-meta {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 32px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-dim);
    animation: fadeUp 0.8s ease-out 0.1s both;
}
.hero-meta-dot {
    width: 6px;
    height: 6px;
    background: var(--rust);
    border-radius: 50%;
}
.hero-meta-line {
    flex: 0 0 30px;
    height: 1px;
    background: var(--ink-mute);
}
.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(54px, 7.5vw, 108px);
    font-weight: 400;
    line-height: 0.96;
    letter-spacing: -0.035em;
    color: var(--ink);
    margin-bottom: 36px;
    animation: fadeUp 0.9s ease-out 0.2s both;
}
.hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--rust);
}
.hero-sub {
    font-size: 18px;
    color: var(--ink-dim);
    line-height: 1.65;
    max-width: 520px;
    margin-bottom: 44px;
    animation: fadeUp 0.9s ease-out 0.35s both;
}
.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeUp 0.9s ease-out 0.5s both;
}
.btn-primary {
    background: var(--ink);
    color: var(--bg);
    padding: 18px 32px;
    text-decoration: none;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--ink);
}
.btn-primary:hover {
    background: var(--rust);
    border-color: var(--rust);
    transform: translateY(-2px);
}
.btn-primary .arrow {
    width: 28px;
    height: 28px;
    background: var(--bg);
    color: var(--ink);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform 0.25s;
}
.btn-primary:hover .arrow {
    background: var(--bg);
    color: var(--rust);
    transform: rotate(-45deg);
}
.btn-link {
    color: var(--ink);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 4px;
    transition: color 0.2s, border-color 0.2s;
}
.btn-link:hover {
    color: var(--rust);
    border-color: var(--rust);
}

.hero-right {
    position: relative;
    height: 78vh;
    min-height: 600px;
    padding-bottom: 40px;
}
.hero-card {
    position: absolute;
    background: var(--bg-3);
    border: 1px solid var(--rule);
    overflow: hidden;
}
.hero-card-1 {
    top: 8%;
    right: 0;
    width: 65%;
    aspect-ratio: 4/5;
    background: #1a2842 url('assets/img/store-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transform: rotate(2deg);
}
.hero-card-1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,24,40,0.15) 0%, rgba(15,24,40,0.55) 70%, rgba(15,24,40,0.85) 100%);
    z-index: 1;
}
.hero-card-1::after {
    content: '';
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(255,255,255,0.18);
    z-index: 2;
}
.hero-card-1-content {
    text-align: center;
    color: var(--bg);
    z-index: 3;
    padding-bottom: 50px;
    width: 100%;
}
.hero-card-1-mono {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--bg);
}
.hero-card-1-label {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 12px;
    color: rgba(245, 241, 234, 0.7);
}

.hero-card-2 {
    bottom: 0;
    left: 0;
    width: 50%;
    aspect-ratio: 4/3;
    background: var(--navy-deep);
    color: #d4d8e0;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: rotate(-3deg);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}
.hero-card-2-num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--rust);
    margin-bottom: 8px;
}
.hero-card-2-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.15;
    color: #fff;
}
.hero-card-2-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 14px;
    margin-top: 14px;
}

.hero-tag-circle {
    position: absolute;
    bottom: 12%;
    right: 8%;
    width: 110px;
    height: 110px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    animation: spin 22s linear infinite;
}
.hero-tag-circle svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.hero-tag-circle-arrow {
    width: 36px;
    height: 36px;
    background: var(--rust);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    animation: spin 22s linear infinite reverse;
}

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

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== MARQUEE ========== */
.marquee {
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 22px 0;
    overflow: hidden;
    background: var(--bg);
    margin-top: 60px;
}
.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 35s linear infinite;
    white-space: nowrap;
    width: max-content;
}
.marquee-item {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 22px;
    color: var(--ink-2);
    display: flex;
    align-items: center;
    gap: 60px;
}
.marquee-item::after {
    content: '✦';
    color: var(--rust);
    font-style: normal;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ========== SECTIONS ========== */
.section {
    padding: 120px 40px;
}
.section-inner {
    max-width: 1380px;
    margin: 0 auto;
}
.section-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 70px;
}
.section-eyebrow {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}
.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--rust);
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 5.2vw, 72px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--ink);
}
.section-title em {
    font-style: italic;
    color: var(--rust);
}
.section-lede {
    color: var(--ink-dim);
    font-size: 17px;
    line-height: 1.7;
}

/* ========== CATEGORIES ========== */
.categories {
    background: var(--bg);
}
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
}
.cat-card {
    background: var(--bg);
    padding: 40px 36px 36px;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}
.cat-card:hover { background: var(--paper); }
.cat-card-num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--rust);
    margin-bottom: 28px;
}
.cat-card-icon {
    width: 56px;
    height: 56px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--ink);
    transition: all 0.4s;
}
.cat-card:hover .cat-card-icon {
    background: var(--ink);
    color: var(--bg);
    transform: rotate(-12deg);
}
.cat-card-icon svg { width: 24px; height: 24px; }
.cat-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.cat-card-en {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--ink-mute);
    margin-bottom: 16px;
}
.cat-card-desc {
    font-size: 14px;
    color: var(--ink-dim);
    line-height: 1.65;
    margin-bottom: 26px;
}
.cat-card-arrow {
    margin-top: auto;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.04em;
}
.cat-card-arrow .ar {
    width: 28px;
    height: 28px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.cat-card:hover .cat-card-arrow .ar {
    background: var(--rust);
    border-color: var(--rust);
    color: #fff;
}

/* ========== FEATURED PRODUCT ========== */
.featured {
    background: var(--bg-2);
    padding: 130px 40px;
}
.featured-inner {
    max-width: 1380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.featured-visual {
    position: relative;
    aspect-ratio: 4/5;
    background: radial-gradient(ellipse at 50% 45%, #2a3d5f 0%, #1a2842 45%, #0f1828 100%);
    overflow: hidden;
}
.featured-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 80px, rgba(255,255,255,0.025) 80px, rgba(255,255,255,0.025) 81px);
}
/* Spotlight glow behind logo */
.featured-visual::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70%;
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(184, 84, 58, 0.35) 0%, rgba(184, 84, 58, 0.12) 35%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}
.featured-visual-content {
    position: absolute;
    inset: 0;
    padding: 50px 44px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: rgba(245, 241, 234, 0.85);
    z-index: 2;
}
.featured-visual-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(245, 241, 234, 0.7);
}
.featured-visual-tag {
    background: var(--rust);
    color: var(--bg);
    padding: 7px 14px;
    border-radius: 999px;
    font-weight: 500;
    letter-spacing: 0.18em;
}
.featured-visual-logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}
.featured-visual-logo img {
    width: 78%;
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(184, 84, 58, 0.4)) drop-shadow(0 0 60px rgba(255, 255, 255, 0.1));
    opacity: 0.95;
}
.featured-visual-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(245, 241, 234, 0.18);
    padding-top: 18px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.featured-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4.8vw, 60px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 24px;
}
.featured-text h2 em {
    font-style: italic;
    color: var(--rust);
}
.featured-text p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-dim);
    margin-bottom: 18px;
}
.featured-list {
    list-style: none;
    margin-top: 30px;
    border-top: 1px solid var(--rule-2);
}
.featured-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--rule-2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: var(--ink-2);
}
.featured-list li::before {
    content: '◇';
    color: var(--rust);
    margin-right: 14px;
}
.featured-list li span:first-of-type { flex: 1; }
.featured-list li .arrow-tiny {
    color: var(--ink-mute);
    transition: color 0.2s, transform 0.2s;
}
.featured-list li:hover .arrow-tiny {
    color: var(--rust);
    transform: translateX(4px);
}

/* ========== PROCESS / VALUE ========== */
.value {
    padding: 130px 40px;
    background: var(--paper);
}
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 50px;
}
.value-item {
    border-top: 1px solid var(--ink);
    padding-top: 28px;
}
.value-num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    color: var(--rust);
    margin-bottom: 18px;
    letter-spacing: 0.05em;
}
.value-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.value-desc {
    font-size: 15px;
    color: var(--ink-dim);
    line-height: 1.7;
}

/* ========== BRANDS ========== */
.brands {
    padding: 90px 40px 70px;
    background: var(--paper);
    border-top: 1px solid var(--rule-2);
}
.brands-inner {
    max-width: 1380px;
    margin: 0 auto;
    text-align: center;
}
.brands-eyebrow {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 18px;
}
.brands-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 14px;
}
.brands-title em { font-style: italic; color: var(--rust); }
.brands-lede {
    max-width: 580px;
    margin: 0 auto 56px;
    color: var(--ink-mute);
    font-size: 15px;
    line-height: 1.6;
}
.brands-strip {
    background: #fff;
    border: 1px solid var(--rule);
    padding: 38px 30px;
    border-radius: 4px;
}
.brands-strip img {
    width: 100%;
    max-width: 1100px;
    height: auto;
    display: block;
    margin: 0 auto;
    mix-blend-mode: multiply;
}

/* ========== STATS / TRUST ========== */
.stats {
    padding: 100px 40px;
    background: var(--navy-deep);
    color: #d4d8e0;
}
.stats-inner {
    max-width: 1380px;
    margin: 0 auto;
}
.stats-head {
    text-align: center;
    margin-bottom: 70px;
}
.stats-eyebrow {
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 16px;
}
.stats-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 4.2vw, 56px);
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.stats-title em { font-style: italic; color: #d8b88e; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.1);
}
.stat {
    background: var(--navy-deep);
    padding: 40px 30px;
    text-align: center;
}
.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(56px, 6vw, 80px);
    color: #fff;
    line-height: 1;
    font-weight: 300;
    letter-spacing: -0.03em;
}
.stat-num .plus { color: var(--rust); }
.stat-label {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-top: 14px;
}

/* ========== CTA / CONTACT ========== */
.cta {
    padding: 130px 40px;
    background: var(--bg);
}
.cta-inner {
    max-width: 1380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}
.cta-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 5.2vw, 72px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin-bottom: 28px;
}
.cta-left h2 em { font-style: italic; color: var(--rust); }
.cta-left p {
    font-size: 17px;
    color: var(--ink-dim);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}
.cta-info {
    border-top: 1px solid var(--rule-2);
}
.cta-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--rule-2);
    align-items: baseline;
}
.cta-label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 500;
}
.cta-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    color: var(--ink);
}
.cta-val a {
    color: var(--ink);
    text-decoration: none;
    transition: color 0.2s;
}
.cta-val a:hover { color: var(--rust); }

.cta-form {
    background: var(--ink);
    padding: 50px 44px;
    color: var(--bg);
    border-radius: 4px;
}
.cta-form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #fff;
}
.cta-form-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 32px;
}
.fg { margin-bottom: 22px; }
.fg label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
    font-weight: 500;
}
.fg input,
.fg textarea,
.fg select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 10px 0;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    color: #fff;
    outline: none;
    transition: border-color 0.2s;
}
.fg input:focus,
.fg textarea:focus,
.fg select:focus { border-bottom-color: var(--rust); }
.fg textarea { resize: vertical; min-height: 80px; }
.fg select { cursor: pointer; }
.fg select option { background: var(--ink); color: #fff; }
.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--rust);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.25s;
    margin-top: 12px;
}
.btn-submit:hover { background: #a14a32; }

.fg .req {
    color: var(--rust);
    margin-left: 2px;
}
.fg-captcha {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 14px 18px 8px;
    margin-bottom: 22px;
}
.fg-captcha label strong {
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.04em;
    font-size: 14px;
    text-transform: none;
}
.fg-captcha input {
    border-bottom-color: rgba(255,255,255,0.3);
}

.form-alert {
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 24px;
    border-left: 3px solid;
}
.form-alert.success {
    background: rgba(72, 167, 122, 0.12);
    border-left-color: #48a77a;
    color: #b6e3c8;
}
.form-alert.error {
    background: rgba(216, 92, 76, 0.12);
    border-left-color: #d85c4c;
    color: #f0c0b8;
}

nav ul a.active {
    color: var(--rust);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--navy-deep);
    color: #cfd4de;
    padding: 80px 40px 26px;
}
.footer-inner {
    max-width: 1380px;
    margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}
.footer-brand .logo-mark { color: #fff; font-size: 36px; }
.footer-brand .logo-mark .dot { color: #d8b88e; }
.footer-logo-img { height: 56px; width: auto; display: block; margin-bottom: 18px; }
.footer-tag {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 320px;
}
.footer h4 {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #d8b88e;
    margin-bottom: 22px;
    font-weight: 600;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 11px; }
.footer a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.footer a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.06em;
}

/* ========== WHATSAPP FAB ========== */
.wa-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.25s;
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab svg { width: 28px; height: 28px; fill: #fff; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .header-inner { grid-template-columns: auto auto; gap: 20px; }
    nav { display: none; }
    .hero-inner { grid-template-columns: 1fr; gap: 50px; }
    .hero-right { display: none; }
    .hero-left { padding-bottom: 40px; }
    .section-head { grid-template-columns: 1fr; gap: 24px; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-inner { grid-template-columns: 1fr; gap: 50px; }
    .value-grid { grid-template-columns: 1fr; gap: 30px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-inner { grid-template-columns: 1fr; gap: 50px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
    .topbar-inner { padding: 8px 20px; flex-direction: column; gap: 4px; font-size: 11px; }
    .topbar-left { flex-wrap: wrap; gap: 12px; }
    .header-inner { padding: 18px 20px; }
    .logo-tag { display: none; }
    .logo-mark { font-size: 24px; }
    .cta-btn span { display: none; }
    .hero { padding: 50px 20px 0; }
    .section, .featured, .value, .stats, .cta { padding: 70px 20px; }
    .cat-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .footer { padding: 60px 20px 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .cta-row { grid-template-columns: 1fr; gap: 4px; }
    .cta-form { padding: 36px 26px; }
    .marquee-item { font-size: 18px; }
    .btn-search { display: none; }
}

/* ========== PAGE HERO (alt sayfalar için) ========== */
.page-hero {
    padding: 120px 40px 80px;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/store-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.07;
    filter: grayscale(0.5);
    pointer-events: none;
}
.page-hero-inner {
    max-width: 1380px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    max-width: 920px;
}
.page-hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 24px;
    font-weight: 500;
}
.page-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 32px;
}
.page-hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--rust);
}
.page-hero-lede {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-mute);
    max-width: 720px;
}

/* ========== ABOUT STORY ========== */
.about-story { padding-top: 100px; padding-bottom: 100px; }
.story-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: start;
}
.story-text .section-title { margin-bottom: 32px; }
.story-text p {
    color: var(--ink-mute);
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 16px;
}
.story-visual {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--ink);
}
.story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.05);
}
.story-visual-tag {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--bg);
    padding: 18px 24px;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.story-visual-tag-num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 42px;
    line-height: 1;
    color: var(--rust);
    font-weight: 400;
}
.story-visual-tag-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-top: 4px;
}

@media (max-width: 900px) {
    .story-grid { grid-template-columns: 1fr; gap: 50px; }
    .page-hero { padding: 90px 24px 60px; }
}

/* ========== CATEGORY DETAIL (ürün sayfaları) ========== */
.cat-detail {
    padding: 100px 40px;
}
.cat-detail-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.cat-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.cat-detail-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.cat-detail-text h2 em { font-style: italic; color: var(--rust); }
.cat-detail-text p {
    color: var(--ink-mute);
    line-height: 1.75;
    margin-bottom: 16px;
    font-size: 16px;
}
.cat-detail-tags {
    margin-top: 36px;
    margin-bottom: 36px;
}
.cat-detail-tags-label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 14px;
}
.cat-detail-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.cat-detail-tag {
    padding: 8px 16px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 999px;
    font-size: 13px;
    color: var(--ink);
}
.cat-detail-cta {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.cat-detail-cta .btn-primary,
.cat-detail-cta .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s;
}
.cat-detail-cta .btn-primary {
    background: var(--ink);
    color: var(--bg);
}
.cat-detail-cta .btn-primary:hover { background: var(--navy-deep); }
.cat-detail-cta .btn-secondary {
    background: var(--rust);
    color: #fff;
}
.cat-detail-cta .btn-secondary:hover { background: #a14a32; }

.cat-detail-visual {
    aspect-ratio: 4/5;
    background: linear-gradient(165deg, var(--navy-deep) 0%, #0f1828 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.cat-detail-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(255,255,255,0.025) 60px, rgba(255,255,255,0.025) 61px);
}
.cat-detail-visual::after {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    width: 70%; aspect-ratio: 1;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(184, 84, 58, 0.3) 0%, transparent 70%);
    filter: blur(20px);
}
.cat-detail-visual-icon {
    width: 50%;
    max-width: 200px;
    color: rgba(245, 241, 234, 0.85);
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(184, 84, 58, 0.4));
}
.cat-detail-visual-icon svg { width: 100%; height: auto; }

@media (max-width: 900px) {
    .cat-detail-grid { grid-template-columns: 1fr; gap: 50px; }
    .cat-detail { padding: 70px 24px; }
}

/* ========== ILETISIM SAYFASI ========== */
.contact-page {
    padding: 100px 40px;
    background: var(--paper);
}
.contact-page-inner {
    max-width: 1380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-info-grid {
    display: grid;
    gap: 24px;
}
.contact-info-card {
    background: #fff;
    padding: 28px;
    border-radius: 6px;
    border: 1px solid var(--rule);
}
.contact-info-card-eyebrow {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 8px;
}
.contact-info-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
}
.contact-info-card p,
.contact-info-card a {
    color: var(--ink-mute);
    line-height: 1.7;
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
}
.contact-info-card a:hover { color: var(--rust); }
.contact-map {
    margin-top: 24px;
    aspect-ratio: 16/9;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--rule);
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 900px) {
    .contact-page-inner { grid-template-columns: 1fr; }
    .contact-page { padding: 70px 24px; }
}
