/* =============================================================
   Miae Couture — modern butik teması
   Palet: krem / siyah / sıcak bej (logo ile uyumlu)
   ============================================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --bg:        #ffffff;
    --cream:     #f7f4ef;
    --beige:     #e9e2d6;
    --ink:       #1a1a1a;
    --muted:     #8a8278;
    --line:      #e7e1d8;
    --accent:    #1a1a1a;
    --serif:  'Cormorant Garamond', Georgia, serif;
    --sans:   'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bg);
    font-weight: 300;
    letter-spacing: .2px;
    margin: 0;
}

h1, h2, h3, h4, .serif { font-family: var(--serif); font-weight: 500; }

a { color: var(--ink); text-decoration: none; transition: opacity .2s, color .2s; }
a:hover { opacity: .65; }

.container-narrow { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ---------------- Üst bilgi / announce ---------------- */
.announce {
    background: var(--ink);
    color: #fff;
    text-align: center;
    font-size: 12px;
    letter-spacing: 2px;
    padding: 9px 10px;
    text-transform: uppercase;
}

/* ---------------- Navbar ---------------- */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}
.navbar-brand .logo { height: 56px; color: var(--ink); display: block; }
.nav-link {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: var(--ink) !important;
    font-weight: 400;
}
.nav-icon { font-size: 19px; position: relative; }
.cart-badge {
    position: absolute; top: -8px; right: -10px;
    background: var(--ink); color: #fff;
    font-size: 10px; min-width: 17px; height: 17px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: var(--sans);
}

/* ---------------- Hero (split: metin + görsel) ---------------- */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 88vh;
    border-bottom: 1px solid var(--line);
}
.hero-split .hero-text {
    background: var(--cream);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 60px 48px;
}
.hero-split .logo-mark { height: 120px; color: var(--ink); margin-bottom: 22px; }
.hero-split .kicker {
    text-transform: uppercase; letter-spacing: 5px;
    font-size: 12px; color: var(--muted); margin-bottom: 26px;
}
.hero-split p.lead {
    font-family: var(--serif);
    font-size: 1.7rem; font-style: italic; color: var(--ink);
    max-width: 460px; margin: 0 auto 34px; line-height: 1.5;
}
.hero-split .hero-img {
    background: var(--cream) center/cover no-repeat;
    min-height: 60vh;
}

/* ---------------- Editorial tam-genişlik bant ---------------- */
.editorial-band {
    position: relative;
    min-height: 80vh;
    background: var(--cream) center/cover no-repeat;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
}
@media (min-width: 992px) {
    .editorial-band { background-attachment: fixed; } /* parallax */
}
.editorial-band::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.22));
}
.editorial-band .editorial-inner { position: relative; z-index: 1; color: #fff; padding: 40px; }
.editorial-band .kicker { text-transform: uppercase; letter-spacing: 6px; font-size: 12px; opacity: .9; }
.editorial-band h2 {
    font-family: var(--serif); color: #fff;
    font-size: clamp(2rem, 5vw, 3.6rem); font-style: italic; margin: 16px 0 0;
    text-shadow: 0 2px 30px rgba(0,0,0,.25);
}

/* ---------------- İkili bant (manifesto + yeni sezon) ---------------- */
.dual-band { display: grid; grid-template-columns: 1fr 1fr; }
.dual-band .db-half {
    position: relative; min-height: 70vh;
    background: var(--cream) center/cover no-repeat;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.dual-band .db-half::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.42));
}
.dual-band .db-inner { position: relative; z-index: 1; color: #fff; padding: 40px 30px; }
.dual-band .db-inner .kicker { text-transform: uppercase; letter-spacing: 5px; font-size: 12px; opacity: .92; }
.dual-band .db-inner h2 {
    font-family: var(--serif); color: #fff; font-style: italic;
    font-size: clamp(1.6rem, 2.6vw, 2.6rem); margin: 14px 0 0; text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.btn-light-outline {
    background: transparent; color: #fff; border: 1px solid #fff; border-radius: 0;
    text-transform: uppercase; letter-spacing: 2px; font-size: 12px; padding: 13px 32px;
}
.btn-light-outline:hover { background: #fff; color: var(--ink); }
@media (max-width: 768px) {
    .dual-band { grid-template-columns: 1fr; }
    .dual-band .db-half { min-height: 56vh; }
}

/* ---------------- Story split (görsel + metin) ---------------- */
.story-split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.story-split .story-image { background: var(--cream) center/cover no-repeat; min-height: 70vh; }
.story-split .story-content {
    background: var(--cream);
    display: flex; flex-direction: column; justify-content: center;
    padding: 80px 7%;
}
.story-split .story-content p {
    font-family: var(--serif); font-size: 1.35rem; line-height: 1.75; margin-bottom: 1rem;
}

@media (max-width: 900px) {
    .hero-split, .story-split { grid-template-columns: 1fr; }
    .hero-split { min-height: auto; }
    .hero-split .hero-img, .story-split .story-image { min-height: 60vh; order: -1; }
    .story-split .story-content { padding: 55px 28px; }
    .editorial-band { min-height: 60vh; }
}

/* ---------------- Butonlar ---------------- */
.btn-ink {
    background: var(--ink); color: #fff;
    border: 1px solid var(--ink);
    border-radius: 0;
    text-transform: uppercase; letter-spacing: 2px;
    font-size: 12px; padding: 14px 34px; font-weight: 400;
}
.btn-ink:hover { background: #fff; color: var(--ink); }
.btn-outline-ink {
    background: transparent; color: var(--ink);
    border: 1px solid var(--ink); border-radius: 0;
    text-transform: uppercase; letter-spacing: 2px;
    font-size: 12px; padding: 13px 32px;
}
.btn-outline-ink:hover { background: var(--ink); color: #fff; }

/* ---------------- Bölüm başlıkları ---------------- */
.section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title .kicker {
    text-transform: uppercase; letter-spacing: 4px;
    font-size: 12px; color: var(--muted); display: block; margin-bottom: 10px;
}
.section-title h2 { font-size: 2.4rem; margin: 0; }

/* ---------------- Kategori kartları ---------------- */
.cat-card {
    position: relative; display: block; overflow: hidden;
    background: var(--beige); aspect-ratio: 3/4;
}
.cat-card .cat-inner {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.25));
    color: #fff; transition: background .3s;
}
.cat-card:hover .cat-inner { background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.45)); }
.cat-card h3 { font-size: 2rem; color: #fff; margin: 0; }
.cat-card span { text-transform: uppercase; letter-spacing: 3px; font-size: 11px; margin-top: 8px; }
/* "Daha Fazlası" kutusu — aynı kutu stili, koyu vurgu */
.cat-card-more { background: var(--ink); }
.cat-card-more .cat-inner { background: none; }
.cat-card-more h3 { font-family: var(--sans); font-weight: 300; }
.cat-card-more:hover .cat-inner { background: rgba(255,255,255,.06); }
/* Bölümler arası ekstra boşluk */
.section-spaced { padding-top: 100px; }
@media (max-width: 768px){ .section-spaced { padding-top: 60px; } }

/* ---------------- Ürün kartları ---------------- */
.product-card { display: block; }
.product-card .pimg {
    aspect-ratio: 3/4; background: var(--cream); overflow: hidden; position: relative;
}
.product-card .pimg img {
    width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease;
}
.product-card:hover .pimg img { transform: scale(1.04); }
.product-card:hover { opacity: 1; }
.product-card .pname {
    font-family: var(--serif); font-size: 1.25rem; margin: 14px 0 2px; color: var(--ink);
}
.product-card .pprice { font-size: 14px; color: var(--muted); }
/* İndirimli fiyat */
.price-old { text-decoration: line-through; color: var(--muted); opacity: .7; margin-right: 6px; }
.price-sale { color: #9a3b3b; font-weight: 500; }
.product-detail .price .price-old { font-size: 1.1rem; }
.product-detail .price .price-sale { color: #9a3b3b; }
/* Rozetler (kart üzerinde) — görsele overlay, sol üst */
.pbadges {
    position: absolute; top: 10px; left: 10px; right: 10px;
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 6px; z-index: 2; pointer-events: none;
}
.pbadge {
    font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
    padding: 5px 9px; line-height: 1; display: inline-flex; align-items: center;
    gap: 4px; width: auto;
}
.pbadge-sale { background: #9a3b3b; color: #fff; }
/* Yıldız: küçük yuvarlak ikon (sağ üstte) */
.pbadge-star {
    margin-left: auto; width: 26px; height: 26px; padding: 0; border-radius: 50%;
    justify-content: center; background: rgba(255,255,255,.92); color: #1a1a1a;
    box-shadow: 0 1px 4px rgba(0,0,0,.12); font-size: 11px;
}
.badge-soldout {
    position: absolute; top: 12px; left: 12px;
    background: #fff; color: var(--ink);
    font-size: 10px; letter-spacing: 1px; padding: 5px 10px; text-transform: uppercase;
}

/* ---------------- Hikaye bandı ---------------- */
.story-band { background: var(--cream); }
.story-band .story-text p {
    font-family: var(--serif); font-size: 1.45rem; line-height: 1.7;
    color: var(--ink); margin-bottom: 1.1rem;
}

/* ---------------- Ürün detay ---------------- */
.product-gallery img { width: 100%; margin-bottom: 12px; background: var(--cream); }
.product-detail .price { font-size: 1.6rem; font-family: var(--serif); }
.size-options { display: flex; flex-wrap: wrap; gap: 10px; }
.size-options input { display: none; }
.size-options label {
    border: 1px solid var(--ink); min-width: 52px; text-align: center;
    padding: 11px 8px; cursor: pointer; text-transform: uppercase;
    font-size: 13px; letter-spacing: 1px; transition: all .2s;
}
.size-options input:checked + label { background: var(--ink); color: #fff; }
.size-options input:disabled + label { opacity: .3; cursor: not-allowed; text-decoration: line-through; }

/* ---------------- Tablo / sepet ---------------- */
.table thead th { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }

/* ---------------- Footer ---------------- */
.site-footer {
    background: var(--ink); color: #cfc8bd;
    padding: 70px 0 30px; margin-top: 0;
}
.site-footer a { color: #cfc8bd; }
.site-footer a:hover { color: #fff; }
/* Logo bir <img> olduğu için currentColor çalışmaz; filtre ile beyaza çeviriyoruz */
.site-footer .logo { height: 64px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-paytr { height: 22px; width: auto; background: #fff; padding: 8px 12px; border-radius: 6px; box-sizing: content-box; }
.site-footer h5 {
    color: #fff; text-transform: uppercase; letter-spacing: 2px;
    font-size: 13px; font-family: var(--sans); margin-bottom: 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; line-height: 2.1; font-size: 14px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 45px; padding-top: 22px; font-size: 12px; color: #8a8278;
    text-align: center; letter-spacing: 1px;
}
.powered-by { text-align: center; font-size: 11px; color: #6f685e; margin-top: 14px; letter-spacing: .5px; }
.powered-by a { color: #9b9384; }
.powered-by a:hover { color: #fff; }

/* ---------------- WhatsApp yüzen buton ---------------- */
.whatsapp-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 1050;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; color: #fff !important;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; box-shadow: 0 6px 20px rgba(37,211,102,.45);
    transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.08); opacity: 1; color: #fff; box-shadow: 0 8px 26px rgba(37,211,102,.6); }
.header-actions .nav-icon { font-size: 19px; }

/* KDV notu */
.vat-note { font-size: 12px; color: var(--muted); letter-spacing: .5px; text-transform: uppercase; }

/* Az belirgin stok bilgisi (ürün detay) */
.stock-note { font-size: 12px; letter-spacing: .5px; min-height: 16px; color: var(--muted); }
.stock-note::before { content: '•'; margin-right: 6px; }
.stock-note.in { color: #5a8a5a; }
.stock-note.low { color: #b0823a; }
.stock-note.out { color: #9a4a4a; }

/* Dil değiştirici */
.lang-switch { font-size: 12px; letter-spacing: 1px; color: var(--muted); white-space: nowrap; }
.lang-switch a { color: var(--muted); padding: 0 2px; }
.lang-switch a.active { color: var(--ink); font-weight: 600; }
.lang-switch .sep { opacity: .4; }

/* Scroll-reveal (yumuşak bölüm geçişleri) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* Tam genişlik bantlar arası yumuşak ton geçişi */
.section + .editorial-band, .editorial-band + .story-split, .story-split + .editorial-band { margin-top: 0; }
.band-divider { height: 0; }

/* İçerik (yasal/kurumsal) sayfaları */
.content-page h3 {
    font-family: var(--serif); font-size: 1.5rem; margin: 2rem 0 .8rem;
}
.content-page h4 { font-size: 1.05rem; margin: 1.4rem 0 .5rem; font-weight: 600; }
.content-page p, .content-page li { color: #4a463f; }
.content-page ul, .content-page ol { padding-left: 1.2rem; margin-bottom: 1rem; }
.content-page li { margin-bottom: .4rem; }
.product-desc h2, .product-desc h3 { font-family: var(--serif); }

/* ---------------- Animasyonlu nav alt çizgi ---------------- */
.navbar-nav .nav-link { position: relative; }
.navbar-nav .nav-link::after {
    content: ''; position: absolute; left: 0; bottom: 4px; height: 1px; width: 0;
    background: var(--ink); transition: width .3s ease;
}
.navbar-nav .nav-link:hover::after { width: 100%; }
.products-menu { border-radius: 0; border: 1px solid var(--line); min-width: 240px; padding: 10px 0; margin-top: 0; }
.products-menu .dropdown-item { padding: 8px 18px; font-size: 14px; }
.products-menu .dropdown-item:active { background: var(--ink); }
/* Ürünler menüsü: alt çizgi yok, ok işareti yok */
.navbar-nav .dropdown > .nav-link::after { display: none !important; }
/* Masaüstünde üzerine gelince açıl */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover > .dropdown-menu { display: block; }
    /* Menü, linkin hemen altına flush açılır; fare köprüsü için görünmez üst boşluk */
    .navbar-nav .dropdown > .dropdown-menu { margin-top: 0; padding-top: 14px; border-top: 0; }
    .navbar-nav .dropdown > .dropdown-menu::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 12px; }
}
/* Ürünler bağlantısı diğerleriyle aynı hizada (dropdown-toggle ok boşluğu kaldır) */
.navbar-nav .dropdown-toggle { display: inline-flex; align-items: center; }

/* ---------------- Hamburger (mobil) ---------------- */
.menu-toggle { background: none; }
.menu-toggle .bars { display: inline-block; width: 26px; }
.menu-toggle .bars span {
    display: block; height: 2px; background: var(--ink); border-radius: 2px;
    margin: 5px 0; transition: transform .3s, opacity .3s; width: 26px;
}
.menu-toggle:hover .bars span:nth-child(1) { width: 18px; }
.menu-toggle:hover .bars span:nth-child(3) { width: 22px; }

/* ---------------- Offcanvas mobil menü ---------------- */
.mobile-menu { background: var(--cream); width: 84% !important; max-width: 360px; }
.mobile-menu .offcanvas-header { border-bottom: 1px solid var(--line); padding: 22px 24px; }
.mobile-nav { display: flex; flex-direction: column; padding: 10px 0; }
.mobile-nav a {
    padding: 13px 4px; font-size: 17px; color: var(--ink);
    border-bottom: 1px solid rgba(0,0,0,.05); font-family: var(--serif);
}
.mobile-nav .mm-group-title {
    text-transform: uppercase; letter-spacing: 2px; font-size: 11px; color: var(--muted);
    margin-top: 22px; padding: 6px 4px; font-family: var(--sans);
}
.mobile-nav .mm-cat { font-size: 16px; }
.mobile-nav .mm-sub { font-size: 14px; color: var(--muted); font-family: var(--sans); padding-left: 16px; }
.mobile-foot { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--line); }

/* ---------------- Toast ---------------- */
.toast-host { position: fixed; top: 80px; right: 20px; z-index: 1080; display: flex; flex-direction: column; gap: 10px; }
.toast-item {
    background: var(--ink); color: #fff; padding: 14px 20px; font-size: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,.25); display: flex; align-items: center;
    transform: translateX(120%); opacity: 0; transition: transform .4s cubic-bezier(.2,.8,.2,1), opacity .4s;
    max-width: 340px; border-radius: 2px;
}
.toast-item.in { transform: none; opacity: 1; }
.toast-item.toast-error { background: #8a2b2b; }
.toast-item .toast-link { color: #fff; text-decoration: underline; margin-left: 10px; white-space: nowrap; font-weight: 600; }
@media (max-width: 576px) { .toast-host { left: 14px; right: 14px; top: 70px; } .toast-item { max-width: none; } }

/* ---------------- Sepet rozeti animasyonu ---------------- */
.cart-link.bump { animation: cartBump .5s ease; }
@keyframes cartBump { 0%{transform:scale(1)} 30%{transform:scale(1.35)} 60%{transform:scale(.9)} 100%{transform:scale(1)} }

/* ---------------- Mobil sticky sepet çubuğu ---------------- */
.mobile-cart-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 1040;
    background: var(--ink); color: #fff !important;
    display: none; align-items: center; justify-content: space-between;
    padding: 14px 18px; font-size: 14px; transform: translateY(100%); transition: transform .35s ease;
}
.mobile-cart-bar.show { display: flex; transform: none; }
.mobile-cart-bar .mcb-go { text-transform: uppercase; letter-spacing: 1px; font-size: 12px; margin-left: 14px; }
.mobile-cart-bar .mcb-right { display: flex; align-items: center; font-weight: 600; }
@media (min-width: 992px) { .mobile-cart-bar { display: none !important; } }
@media (max-width: 991px) { .whatsapp-float { bottom: 76px; } } /* sepet çubuğunun üstünde */

/* ---------------- Modern sayfa başlığı (alt sayfalar) ---------------- */
/* Yatay sayfa başlığı: solda başlık, sağda breadcrumb */
.page-head {
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 26px 0;
}
.page-head-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.page-head .ph-left { text-align: left; }
.page-head .ph-kicker {
    display: block; text-transform: uppercase; letter-spacing: 4px;
    font-size: 11px; color: var(--muted); margin-bottom: 4px;
}
.page-head h1 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 0; }
.page-head .ph-desc { color: var(--muted); margin: 6px 0 0; font-size: 14px; max-width: 520px; }
.page-head .ph-crumb {
    font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--muted); white-space: nowrap; text-align: right;
}
.page-head .ph-crumb a { color: var(--muted); }
.page-head .ph-crumb a:hover { color: var(--ink); }
.page-head .ph-crumb .sep { margin: 0 7px; opacity: .5; }
.page-head .ph-crumb .current { color: var(--ink); }
@media (max-width: 600px) {
    .page-head-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
    .page-head .ph-crumb { text-align: left; }
}
.page-head .ph-kicker {
    text-transform: uppercase; letter-spacing: 4px; font-size: 11px; color: var(--muted);
    display: block; margin-bottom: 14px;
}
.page-head h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 0; }
.page-head .ph-desc { max-width: 620px; margin: 16px auto 0; color: var(--muted); line-height: 1.7; }
.page-head .ph-rule { width: 46px; height: 2px; background: var(--ink); margin: 22px auto 0; }

/* ---------------- Görsel animasyonları ---------------- */
.hero-img, .story-image {
    animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
    from { background-size: 108%; background-position: center 48%; }
    to   { background-size: 118%; background-position: center 52%; }
}
@media (prefers-reduced-motion: reduce) {
    .hero-img, .story-image { animation: none; background-size: cover; }
}
.hero-text > * { opacity: 0; transform: translateY(18px); animation: fadeUp .9s ease forwards; }
.hero-text .kicker { animation-delay: .1s; }
.hero-text .logo-mark { animation-delay: .25s; }
.hero-text .lead { animation-delay: .45s; }
.hero-text .btn { animation-delay: .65s; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* Yumuşak bant kenar geçişleri (sert kesimi yumuşatır) */
.editorial-band.feather::before {
    background:
      linear-gradient(180deg, var(--cream) 0%, rgba(247,244,239,0) 16%,
                      rgba(0,0,0,.06) 50%, rgba(0,0,0,.22) 78%, var(--cream) 100%);
}
.editorial-band.feather-dark::before {
    background:
      linear-gradient(180deg, var(--cream) 0%, rgba(247,244,239,0) 18%,
                      rgba(0,0,0,.25) 70%, var(--ink) 100%);
}
.story-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(247,244,239,0) 75%, var(--cream) 100%);
}
.story-split .story-image { position: relative; }

/* ---------------- Yardımcı ---------------- */
.breadcrumb-bar { padding: 18px 0; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.flash { border-radius: 0; }
.empty-state { text-align: center; padding: 90px 20px; }
.empty-state .serif { font-size: 2rem; }

@media (max-width: 768px) {
    .hero { padding: 70px 16px 80px; }
    .hero .logo-mark { height: 100px; }
    .section { padding: 55px 0; }
    .section-title h2 { font-size: 1.9rem; }
    .story-band .story-text p { font-size: 1.2rem; }
}
