:root {
    --cream: #f7f2ea;
    --soft: #fbf8f2;
    --text: #2b2118;
    --muted: #7c6f62;
    --brown: #5b4631;
    --brown-dark: #3b2c1d;
    --gold: #b08a5a;
    --border: #e8dfd4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--soft);
    color: var(--text);
    overflow-x: hidden;
}

a {
    text-decoration: none
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: rgba(251, 248, 242, .92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(232, 223, 212, .72);
}

.navbar {
    min-height: 92px;
    padding: 0
}

.brand-logo {
    width: 164px
}

.navbar-nav {
    gap: 34px
}

.navbar-nav .nav-item,
.header-dropdown {
    height: 92px;
    display: flex;
    align-items: center;
    position: relative;
}

.navbar-nav .nav-link {
    position: relative;
    padding: 0 !important;
    color: var(--text);
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color .25s ease;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .25s ease;
}

.navbar-nav .nav-link:hover,
.header-dropdown:hover .nav-link {
    color: var(--brown)
}

.navbar-nav .nav-link:hover::after,
.header-dropdown:hover .nav-link::after {
    width: 100%
}

.navbar-nav .dropdown-toggle::after {
    display: none
}

.nav-arrow {
    font-size: 10px;
    color: var(--muted);
    transition: .25s ease;
}

.header-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
    color: var(--gold);
}

.header-dropdown .dropdown-menu {
    display: block;
    top: calc(100% - 16px);
    left: 50%;
    transform: translate(-50%, 10px);
    min-width: 220px;
    margin: 0;
    padding: 12px;
    border: 1px solid rgba(232, 223, 212, .72);
    border-radius: 22px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 28px 70px rgba(43, 33, 24, .12);
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
}

.header-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.dropdown-item {
    padding: 12px 15px;
    border-radius: 15px;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    transition: background .22s ease, color .22s ease, padding-left .22s ease;
}

.dropdown-item:hover {
    background: var(--cream);
    color: var(--brown);
    padding-left: 18px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 42px;
}

.language-dropdown .dropdown-menu {
    min-width: 150px
}

.language-btn {
    height: 50px;
    padding: 0 17px;
    border: none;
    border-radius: 16px;
    background: rgba(255, 255, 255, .72);
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
    border: 1px solid rgba(232, 223, 212, .9);
    transition: .25s ease;
}

.language-btn:hover {
    background: var(--cream)
}

.language-btn img,
.language-option img,
.mobile-language-menu img {
    width: 20px;
    height: 14px;
    border-radius: 4px;
    object-fit: cover;
    flex: 0 0 auto;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
}

.online-store-btn {
    height: 50px;
    width: 216px;
    padding: 0 16px;
    border-radius: 16px;
    background: var(--brown);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(91, 70, 49, .20);
    transition: background .28s ease, box-shadow .28s ease;
    white-space: nowrap;
    overflow: hidden;
}

.online-store-btn:hover {
    color: #fff;
    background: var(--brown-dark);
    box-shadow: 0 18px 42px rgba(91, 70, 49, .26);
}

.online-store-btn .btn-icon {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .13);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex: 0 0 auto;
    transition: background .28s ease, transform .28s ease;
}

.online-store-btn .btn-arrow {
    width: 14px;
    opacity: 0;
    transform: translateX(-8px);
    font-size: 12px;
    flex: 0 0 14px;
    transition: opacity .28s ease, transform .28s ease;
}

.online-store-btn:hover .btn-arrow {
    opacity: 1;
    transform: translateX(0);
}

.online-store-btn:hover .btn-icon {
    background: rgba(255, 255, 255, .18);
    transform: rotate(-4deg);
}

.mobile-menu-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 17px;
    background: rgba(255, 255, 255, .75);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 0 14px;
    box-shadow: 0 8px 24px rgba(43, 33, 24, .06);
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background: var(--text);
}

.mobile-menu {
    width: 100% !important;
    max-width: none;
    border: none;
    background: var(--soft);
    z-index: 1300;
}

.offcanvas-backdrop {
    z-index: 1290;
    background: #1f1710;
}

.mobile-menu .offcanvas-header {
    min-height: 86px;
    padding: 8px 14px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo {
    width: 150px
}

.mobile-close {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 17px;
    background: #fff;
    color: var(--text);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(43, 33, 24, .06);
}

.mobile-menu-body {
    padding: 34px 22px 24px
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav > a {
    min-height: 58px;
    padding: 0 18px;
    border-radius: 20px;
    background: #fff;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 12px 34px rgba(43, 33, 24, .045);
    transition: background .25s ease, color .25s ease;
}

.mobile-nav > a i {
    color: var(--gold);
    font-size: 12px;
    transition: .25s ease;
}

.mobile-nav > a:active,
.mobile-nav > a[aria-expanded="true"] {
    background: var(--brown);
    color: #fff;
}

.mobile-nav > a:active i,
.mobile-nav > a[aria-expanded="true"] i {
    color: #fff;
    transform: rotate(180deg);
}

.mobile-sub-nav {
    padding: 0 0 4px 14px;
    flex-direction: column;
    gap: 8px;
    transition: none !important;
}

.mobile-sub-nav.show {
    display: flex
}

.mobile-sub-nav.collapsing {
    height: auto !important;
    transition: none !important;
}

.mobile-sub-nav a {
    min-height: 48px;
    padding: 0 16px;
    border-radius: 16px;
    background: #f1eadf;
    color: var(--brown);
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 800;
    transition: background .25s ease, color .25s ease;
}

.mobile-sub-nav a:hover,
.mobile-sub-nav a:active {
    background: var(--brown);
    color: #fff;
}

.mobile-store-btn {
    width: 100%;
    min-height: 58px;
    margin-top: 18px;
    border-radius: 20px;
    background: var(--brown);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 16px 36px rgba(91, 70, 49, .22);
}

.mobile-store-btn:hover {
    color: #fff
}

.mobile-store-btn .btn-icon {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .14);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-language-menu span {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* HERO SLIDER */

.hero-section {
    padding: 44px 0 54px;
    background: radial-gradient(circle at 12% 18%, rgba(176, 138, 90, .10), transparent 28%),
    linear-gradient(180deg, #fbf8f2 0%, #f4ede3 100%);
}

.hero-swiper {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 34px 90px rgba(43, 33, 24, .14);
    background: #eadfce;
}

.hero-slide {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 800;
    min-height: auto;
    padding: 0;
    overflow: hidden;
    background: #f3eadf;
}

.hero-slide-picture {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3eadf;
}

.hero-slide-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-controls-row {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.hero-fraction {
    min-width: 76px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: var(--brown);
    font-weight: 800;
}

.hero-fraction .current {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    line-height: 1;
}

.hero-fraction .total {
    color: var(--muted);
    font-size: 14px;
}

.hero-progress {
    flex: 1;
    height: 2px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-progress span {
    display: block;
    height: 2px;
    flex: 1;
    border-radius: 99px;
    background: rgba(91, 70, 49, .20);
    transition: .35s ease;
}

.hero-progress span.active {
    background: var(--gold);
    flex: 1.7;
}

.hero-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-nav button {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(91, 70, 49, .18);
    border-radius: 50%;
    background: rgba(255, 255, 255, .54);
    color: var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s ease;
}

.hero-nav button:hover {
    background: var(--brown);
    color: #fff;
}

@media (max-width: 1199px) {
    .navbar-nav {
        gap: 24px
    }

    .header-actions {
        margin-left: 28px
    }
}

@media (max-width: 991px) {
    .navbar {
        min-height: 86px;
        padding: 6px 0;
    }

    .brand-logo {
        width: 150px
    }

    .hero-section {
        padding: 34px 0 44px;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding: 24px 0 36px;
    }

    .hero-swiper {
        border-radius: 24px;
    }

    .hero-slide {
        aspect-ratio: 932 / 1416;
    }

    .hero-slide-picture img {
        object-fit: cover;
        object-position: center;
    }

    .hero-controls-row {
        gap: 14px;
        margin-top: 18px;
    }

    .hero-progress {
        display: none;
    }

    .hero-nav button {
        width: 40px;
        height: 40px;
    }
}

.story-video-section {
    padding: 54px 0 0;
    background: #fbf8f2;
}

.story-video-grid {
    display: grid;
    grid-template-columns:1.05fr .95fr;
    gap: 26px;
    align-items: stretch;
}

.story-card {
    display: grid;
    grid-template-columns:.92fr 1.08fr;
    overflow: hidden;
    min-height: 430px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(232, 223, 212, .86);
    box-shadow: 0 24px 70px rgba(43, 33, 24, .07);
}

.story-image {
    min-height: 100%;
    background: #e9dfd2;
}

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

.story-content {
    padding: 42px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

.section-eyebrow::after {
    content: "";
    width: 38px;
    height: 1px;
    background: var(--gold);
}

.story-content h2 {
    margin-bottom: 18px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--text);
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.6px;
}

.story-content p {
    margin-bottom: 26px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.85;
}

.story-facts {
    display: flex;
    gap: 26px;
    margin-bottom: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(232, 223, 212, .9);
}

.story-facts div {
    min-width: 90px;
}

.story-facts strong {
    display: block;
    color: var(--brown);
    font-family: 'Manrope', sans-serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
}

.story-facts span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.story-link {
    color: var(--brown);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 900;
}

.story-link i {
    transition: .25s ease;
}

.story-link:hover {
    color: var(--brown-dark);
}

.story-link:hover i {
    transform: translateX(4px);
}

.video-card {
    min-height: 430px;
}

.video-card-trigger {
    position: relative;
    display: block;
    overflow: hidden;
    height: 100%;
    min-height: 430px;
    border-radius: 30px;
    background: #e9dfd2;
    box-shadow: 0 24px 70px rgba(43, 33, 24, .10);
}

.video-card-trigger img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.video-card-trigger:hover img {
    transform: scale(1.035);
}

.video-card-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 44%, rgba(255, 255, 255, .16), transparent 18%),
    linear-gradient(180deg, rgba(43, 33, 24, .04) 0%, rgba(43, 33, 24, .56) 100%);
}

.video-play {
    position: absolute;
    left: 50%;
    top: 47%;
    transform: translate(-50%, -50%);
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    color: var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .18);
    transition: .3s ease;
    z-index: 2;
}

.video-play i {
    margin-left: 4px;
}

.video-card-trigger:hover .video-play {
    transform: translate(-50%, -50%) scale(1.06);
}

.video-card-content {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    color: #fff;
}

.video-card-content span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.8px;
}

.video-card-content strong {
    display: block;
    margin-bottom: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}

.video-card-content p {
    max-width: 420px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    line-height: 1.65;
}

.video-modal .modal-content {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 26px;
    background: #000;
}

.video-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: 18px;
}

@media (max-width: 1199px) {
    .story-card {
        grid-template-columns:1fr;
    }

    .story-image {
        min-height: 230px;
    }
}

@media (max-width: 991px) {
    .story-video-section {
        padding: 42px 0 0;
    }

    .story-video-grid {
        grid-template-columns:1fr;
    }

    .story-card,
    .video-card,
    .video-card-trigger {
        min-height: auto;
    }

    .video-card-trigger {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 575px) {
    .story-video-section {
        padding: 34px 0 0;
    }

    .story-video-grid {
        gap: 18px;
    }

    .story-card,
    .video-card-trigger {
        border-radius: 24px;
    }

    .story-content {
        padding: 28px 24px;
    }

    .story-content h2 {
        font-size: 34px;
    }

    .story-facts {
        gap: 18px;
    }

    .video-card-trigger {
        aspect-ratio: 4 / 4.6;
    }

    .video-play {
        width: 72px;
        height: 72px;
        font-size: 18px;
    }

    .video-card-content {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .video-card-content strong {
        font-size: 28px;
    }
}

/* LEZZETİN YOLCULUĞU */

.journey-section {
    padding: 38px 0;
    background: repeating-linear-gradient(
        135deg,
        rgba(91, 70, 49, .022) 0,
        rgba(91, 70, 49, .022) 1px,
        transparent 1px,
        transparent 18px
    ),
    #fbf8f2;
    border-bottom: 1px solid rgba(232, 223, 212, .72);
}

.journey-title {
    margin-bottom: 22px;
    text-align: center;
    color: var(--brown);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.6px;
}

.journey-flow {
    display: grid;
    grid-template-columns:1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 18px;
}

.journey-item {
    position: relative;
    display: grid;
    grid-template-columns:58px 1fr;
    gap: 14px;
    align-items: center;
    min-height: 86px;
    padding: 14px 10px;
    border-radius: 22px;
    transition: .35s ease;
}

.journey-item:hover {
    background: rgba(255, 255, 255, .66);
    box-shadow: 0 14px 38px rgba(43, 33, 24, .06);
}

.journey-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(91, 70, 49, .35);
    color: var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: .35s ease;
}

.journey-item:hover .journey-icon {
    color: var(--gold);
    border-color: rgba(176, 138, 90, .65);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, .72);
}

.journey-content span {
    display: block;
    margin-bottom: 2px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .7px;
}

.journey-content h3 {
    margin: 0 0 5px;
    color: var(--text);
    font-size: 15px;
    font-weight: 900;
}

.journey-content p {
    max-width: 190px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
    font-weight: 600;
}

.journey-arrow {
    color: rgba(91, 70, 49, .55);
    font-size: 17px;
    transition: .35s ease;
}

.journey-item:hover + .journey-arrow {
    color: var(--gold);
    transform: translateX(3px);
}

@media (max-width: 991px) {
    .journey-flow {
        grid-template-columns:1fr 1fr;
        gap: 14px;
    }

    .journey-arrow {
        display: none;
    }

    .journey-item {
        background: rgba(255, 255, 255, .55);
        border: 1px solid rgba(232, 223, 212, .7);
        padding: 16px;
    }
}

@media (max-width: 575px) {
    .journey-section {
        padding: 32px 0;
    }

    .journey-title {
        margin-bottom: 18px;
    }

    .journey-flow {
        grid-template-columns:1fr;
    }

    .journey-item {
        grid-template-columns:52px 1fr;
        min-height: auto;
        border-radius: 20px;
    }

    .journey-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .journey-content p {
        max-width: none;
    }
}

/* NEWS SECTION */

.news-section {
    padding: 58px 0 66px;
    background: #fbf8f2;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.section-head h2 {
    margin: 0;
    color: var(--text);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.section-all-link {
    color: var(--brown);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 900;
}

.section-all-link i {
    transition: .25s ease;
}

.section-all-link:hover {
    color: var(--brown-dark);
}

.section-all-link:hover i {
    transform: translateX(4px);
}

.news-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 18px;
}

.news-card {
    overflow: hidden;
    min-height: 190px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(232, 223, 212, .82);
    display: grid;
    grid-template-columns:1.15fr .9fr;
    color: var(--text);
    box-shadow: 0 18px 48px rgba(43, 33, 24, .045);
    transition: .32s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 64px rgba(43, 33, 24, .09);
    border-color: rgba(176, 138, 90, .32);
}

.news-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.news-date i {
    color: var(--gold);
}

.news-content h3 {
    margin: 14px 0 20px;
    color: var(--text);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 800;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brown);
    font-size: 13px;
    font-weight: 900;
}

.news-link i {
    transition: .25s ease;
}

.news-card:hover .news-link i {
    transform: translateX(4px);
}

.news-image {
    overflow: hidden;
    background: #e9dfd2;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .55s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.06);
}

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

@media (max-width: 575px) {
    .news-section {
        padding: 42px 0 50px;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 18px;
    }

    .news-grid {
        grid-template-columns:1fr;
        gap: 14px;
    }

    .news-card {
        min-height: 180px;
        grid-template-columns:1fr .82fr;
        border-radius: 16px;
    }

    .news-content {
        padding: 18px;
    }

    .news-content h3 {
        font-size: 16px;
    }
}

/* STORE THIN BANNER */

.store-banner-section {
    padding: 30px 0 52px;
    background: #fbf8f2;
}

.store-banner {
    position: relative;
    overflow: hidden;
    min-height: 170px;
    padding: 28px 34px;
    border-radius: 24px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .88) 0%, rgba(247, 242, 234, .78) 48%, rgba(232, 219, 199, .62) 100%);
    border: 1px solid rgba(232, 223, 212, .82);
    box-shadow: 0 20px 56px rgba(43, 33, 24, .055);
    display: grid;
    grid-template-columns:auto minmax(260px, 430px) auto 1fr;
    align-items: center;
    gap: 26px;
}

.store-banner-icon {
    width: 74px;
    height: 74px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(91, 70, 49, .12);
    color: var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.store-banner-content {
    position: relative;
    z-index: 2;
}

.store-banner-content span {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}

.store-banner-content h2 {
    margin: 0;
    max-width: 420px;
    color: var(--text);
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.05;
}

.store-banner-btn {
    position: relative;
    z-index: 2;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    background: var(--brown);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
    transition: .25s ease;
}

.store-banner-btn:hover {
    color: #fff;
    background: var(--brown-dark);
}

.store-banner-btn i {
    transition: .25s ease;
}

.store-banner-btn:hover i {
    transform: translateX(4px);
}

.store-banner-visual {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    width: 42%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    pointer-events: none;
}

.store-banner-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(251, 248, 242, .88), rgba(251, 248, 242, 0));
    z-index: 1;
}

.store-banner-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

@media (max-width: 991px) {
    .store-banner {
        grid-template-columns:auto 1fr;
        gap: 18px 20px;
    }

    .store-banner-btn {
        grid-column: 2;
        width: max-content;
    }

    .store-banner-visual {
        opacity: .28;
        width: 58%;
    }
}

@media (max-width: 575px) {
    .store-banner-section {
        padding: 24px 0 42px;
    }

    .store-banner {
        min-height: auto;
        padding: 24px;
        grid-template-columns:1fr;
        gap: 16px;
    }

    .store-banner-icon {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        font-size: 23px;
    }

    .store-banner-content h2 {
        font-size: 29px;
    }

    .store-banner-btn {
        grid-column: auto;
        width: 100%;
    }

    .store-banner-visual {
        display: none;
    }
}

/* FOOTER */

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 72px 0 26px;
    background: radial-gradient(circle at 12% 0%, rgba(176, 138, 90, .16), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, .05), transparent 24%),
    linear-gradient(180deg, #322516 0%, #21170f 100%);
    color: #fff;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        135deg,
        rgba(255, 255, 255, .025) 0,
        rgba(255, 255, 255, .025) 1px,
        transparent 1px,
        transparent 18px
    );
    pointer-events: none;
}

.footer-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:1.35fr .75fr .9fr 1.05fr;
    gap: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.footer-logo {
    width: 160px;
    margin-bottom: 22px;
    padding: 10px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .92);
}

.footer-brand p {
    max-width: 390px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, .66);
    font-size: 14px;
    line-height: 1.8;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s ease;
}

.footer-socials a:hover {
    background: var(--gold);
    color: #21170f;
}

.footer-col h3,
.footer-contact h3 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.footer-col a,
.footer-contact a {
    display: flex;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, .64);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    transition: .25s ease;
}

.footer-col a:hover,
.footer-contact a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-contact a {
    gap: 11px;
}

.footer-contact i {
    width: 17px;
    margin-top: 4px;
    color: var(--gold);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
    font-weight: 700;
}

.footer-agency-logo {
    display: flex;
    align-items: center;
    opacity: .86;
    transition: .25s ease;
}

.footer-agency-logo:hover {
    opacity: 1;
}

.footer-agency-logo img {
    height: 28px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 991px) {
    .site-footer {
        padding: 58px 0 24px;
    }

    .footer-main {
        grid-template-columns:1fr 1fr;
        gap: 34px;
    }
}

@media (max-width: 575px) {
    .site-footer {
        padding: 46px 0 22px;
    }

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

    .footer-logo {
        width: 145px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Press & Media Page */
.press-page-head {
    position: relative;
    overflow: hidden;
    padding: 118px 0 38px;
    background: linear-gradient(135deg, rgba(111, 84, 56, .14) 0%, rgba(111, 84, 56, .045) 46%, rgba(255, 255, 255, .96) 100%),
    #f8f4ee;
    border-bottom: 1px solid rgba(111, 84, 56, .10);
}

.press-page-head::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(111, 84, 56, .07);
    pointer-events: none;
}

.press-page-head .container {
    position: relative;
    z-index: 1;
}

.press-page-head h1 {
    margin: 0 0 12px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -.035em;
    color: #191716;
}

.press-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 600;
    color: #9a9189;
}

.press-breadcrumb a {
    color: #9a9189;
    text-decoration: none;
    transition: color .25s ease;
}

.press-breadcrumb a:hover {
    color: #6f5438;
}

.press-breadcrumb span {
    color: #c7bdb3;
}

.press-breadcrumb strong {
    color: #6f5438;
    font-weight: 700;
}

.press-list-section {
    padding: 44px 0 86px;
    background: linear-gradient(180deg, #f8f4ee 0%, #f6f1ea 100%);
}

.press-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.press-filter a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 19px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(111, 84, 56, .12);
    color: #5f5650;
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(35, 29, 24, .035);
    transition: all .25s ease;
}

.press-filter a:hover,
.press-filter a.active {
    background: #6f5438;
    border-color: #6f5438;
    color: #fff;
    box-shadow: 0 12px 30px rgba(111, 84, 56, .18);
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.press-card {
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(111, 84, 56, .08);
    box-shadow: 0 22px 58px rgba(35, 29, 24, .075);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.press-card:hover {
    transform: translateY(-5px);
    border-color: rgba(111, 84, 56, .16);
    box-shadow: 0 28px 72px rgba(35, 29, 24, .11);
}

.press-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e9e1d8;
}

.press-card-image.press-card-clickable {
    display: block;
    text-decoration: none;
    color: inherit;
}

.press-card-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color .25s ease;
}

.press-card-content h3 a:hover {
    color: #6f5438;
}

.press-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

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

.press-card-content {
    padding: 23px 24px 25px;
}

.press-badge {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(111, 84, 56, .09);
    color: #6f5438;
    font-size: 12px;
    font-weight: 800;
}

.press-card h3 {
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: -.015em;
    color: #191716;
}

.press-card p {
    margin: 0 0 20px;
    color: #756b64;
    line-height: 1.65;
}

.press-card-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #191716;
    font-weight: 800;
    text-decoration: none;
}

.press-card-link i {
    font-size: 13px;
    transition: transform .25s ease;
}

.press-card-link:hover {
    color: #6f5438;
}

.press-card-link:hover i {
    transform: translateX(4px);
}

.press-play {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 64px;
    height: 64px;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    color: #6f5438;
    box-shadow: 0 18px 46px rgba(0, 0, 0, .18);
}

.press-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 44px;
}

.press-pagination a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(111, 84, 56, .10);
    color: #5f5650;
    font-weight: 800;
    text-decoration: none;
    transition: all .25s ease;
}

.press-pagination a.active,
.press-pagination a:hover {
    background: #6f5438;
    border-color: #6f5438;
    color: #fff;
}

.press-empty {
    min-height: 400px;
}

@media (max-width: 991px) {
    .press-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .press-page-head {
        padding: 104px 0 30px;
    }

    .press-page-head h1 {
        font-size: 34px;
    }

    .press-list-section {
        padding: 34px 0 68px;
    }

    .press-grid {
        grid-template-columns: 1fr;
    }

    .press-filter {
        gap: 9px;
    }

    .press-filter a {
        min-height: 39px;
        padding: 0 14px;
        font-size: 13px;
    }

    .press-empty {
        min-height: auto;
    }
}

.press-detail-modal .modal-content {
    border: 0;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
}

.press-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #191716;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .15);
}

.press-modal-media img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
}

.press-modal-body {
    padding: 34px 40px 40px;
}

.press-modal-body h2 {
    margin: 0 0 18px;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    letter-spacing: -.035em;
    color: #191716;
}

.press-modal-body p {
    color: #5f5650;
    line-height: 1.75;
}

@media (max-width: 575px) {
    .press-detail-modal {
        padding: 0 !important;
    }

    .press-detail-modal .modal-dialog {
        margin: 0;
        min-height: 100dvh;
        display: flex;
        align-items: flex-start;
    }

    .press-detail-modal .modal-content {
        border-radius: 0;
        min-height: 100dvh;
        width: 100%;
    }

    .press-modal-body {
        padding: 26px 22px 36px;
    }

    .press-modal-media {
        flex: 0 0 auto;
    }

    .press-modal-media img {
        max-height: 330px;
    }
}

/* Contact Page */
.contact-page-section {
    padding: 54px 0 96px;
    background: linear-gradient(180deg, #f8f4ee 0%, #f6f1ea 100%);
}

.contact-map-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(360px, .55fr);
    gap: 26px;
    align-items: stretch;
}

.contact-map {
    min-height: 430px;
    overflow: hidden;
    border-radius: 28px;
    background: #e9e1d8;
    border: 1px solid rgba(111, 84, 56, .10);
    box-shadow: 0 24px 70px rgba(35, 29, 24, .08);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 430px;
    display: block;
    border: 0;
}

.contact-info-card,
.contact-form-card {
    border-radius: 28px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(111, 84, 56, .10);
    box-shadow: 0 24px 70px rgba(35, 29, 24, .075);
}

.contact-info-card {
    padding: 34px;
}

.contact-card-eyebrow,
.contact-form-head span {
    display: inline-flex;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    color: #6f5438;
}

.contact-info-card h2,
.contact-form-head h2 {
    margin: 0 0 24px;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -.03em;
    color: #191716;
}

.contact-info-list {
    display: grid;
    gap: 12px;
}

.contact-info-item {
    display: flex;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
    background: #f8f4ee;
    color: #191716;
    text-decoration: none;
}

.contact-info-item i {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(111, 84, 56, .10);
    color: #6f5438;
}

.contact-info-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
}

.contact-info-item p {
    margin: 0;
    color: #6b625c;
    line-height: 1.55;
}

.contact-map-link {
    margin-top: 20px;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    border-radius: 999px;
    background: #6f5438;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.contact-map-link i {
    font-size: 13px;
    transition: transform .25s ease;
}

.contact-map-link:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(111, 84, 56, .22);
}

.contact-map-link:hover i {
    transform: translateX(5px);
}

.contact-form-card {
    margin: 34px auto 0;
    padding: 38px;
}

.contact-form-head {
    margin-bottom: 26px;
}

.contact-form-head h2 {
    margin-bottom: 8px;
}

.contact-form-head p {
    margin: 0;
    color: #756b64;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 800;
    color: #191716;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(111, 84, 56, .14);
    border-radius: 16px;
    background: #fff;
    padding: 15px 16px;
    color: #191716;
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(111, 84, 56, .45);
}

.contact-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
    color: #6b625c;
    font-size: 14px;
    line-height: 1.55;
}

.contact-check input {
    margin-top: 4px;
}

.contact-check a {
    color: #6f5438;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

.contact-form-actions button {
    min-width: 170px;
    min-height: 52px;
    border: 0;
    border-radius: 999px;
    background: #6f5438;
    color: #fff;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.contact-form-actions button i {
    font-size: 13px;
    transition: transform .25s ease;
}

.contact-form-actions button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(111, 84, 56, .22);
}

.contact-form-actions button:hover i {
    transform: translateX(5px);
}

.contact-alert {
    margin-bottom: 20px;
    padding: 15px 18px;
    border-radius: 16px;
    font-weight: 700;
}

.contact-alert.success {
    background: rgba(34, 197, 94, .10);
    color: #166534;
}

.contact-alert.error {
    background: rgba(185, 28, 28, .10);
    color: #991b1b;
}

@media (max-width: 991px) {
    .contact-map-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .contact-page-section {
        padding: 34px 0 72px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 24px;
        border-radius: 22px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-map,
    .contact-map iframe {
        min-height: 340px;
    }

    .contact-form-actions {
        justify-content: stretch;
    }

    .contact-form-actions button {
        width: 100%;
    }
}

.legal-page-section {
    padding: 54px 0 96px;
    background: linear-gradient(
        180deg,
        #f8f4ee 0%,
        #f6f1ea 100%
    );
}

.legal-content-card {
    width: 100%;
    padding: 52px 64px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(111, 84, 56, .10);
    box-shadow: 0 24px 70px rgba(35, 29, 24, .075);
}

.legal-content-card h1,
.legal-content-card h2,
.legal-content-card h3,
.legal-content-card h4,
.legal-content-card h5,
.legal-content-card h6 {
    margin: 32px 0 16px;
    color: #191716;
    font-weight: 800;
    line-height: 1.35;
}

.legal-content-card h1:first-child,
.legal-content-card h2:first-child,
.legal-content-card h3:first-child,
.legal-content-card h4:first-child,
.legal-content-card h5:first-child,
.legal-content-card h6:first-child {
    margin-top: 0;
}

.legal-content-card p,
.legal-content-card li {
    color: #5f5954;
    line-height: 1.95;
}

.legal-content-card p {
    margin-bottom: 18px;
}

.legal-content-card strong {
    color: #191716;
    font-weight: 700;
}

.legal-content-card a {
    color: #6f5438;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(111, 84, 56, .30);
    transition: .25s ease;
}

.legal-content-card a:hover {
    color: #4e3926;
    border-bottom-color: #4e3926;
}

.legal-content-card ul,
.legal-content-card ol {
    padding-left: 24px;
    margin: 18px 0;
}

.legal-content-card li {
    margin-bottom: 10px;
}

.legal-content-card table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    border-spacing: 0;
}

.legal-content-card table th,
.legal-content-card table td {
    padding: 14px 16px;
    border: 1px solid rgba(111, 84, 56, .15);
    text-align: left;
    vertical-align: top;
    color: #5f5954;
    line-height: 1.7;
}

.legal-content-card table th {
    background: #f8f4ee;
    color: #191716;
    font-weight: 700;
}

.legal-content-card table tr:nth-child(even) td {
    background: rgba(248, 244, 238, .35);
}

@media (max-width: 768px) {
    .legal-content-card {
        padding: 28px 24px;
        border-radius: 22px;
    }

    .legal-content-card table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

.about-page-section {
    padding: 54px 0 96px;
    background: radial-gradient(circle at top left, rgba(111, 84, 56, .08), transparent 34%),
    linear-gradient(180deg, #f8f4ee 0%, #f6f1ea 100%);
}

.about-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.about-sidebar-card {
    position: sticky;
    top: 120px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(111, 84, 56, .10);
    box-shadow: 0 24px 70px rgba(35, 29, 24, .075);
}

.about-sidebar-card span {
    display: block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    color: #6f5438;
}

.about-sidebar-card a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 15px 0;
    color: #191716;
    text-decoration: none;
    border-bottom: 1px solid rgba(111, 84, 56, .08);
    transition: .25s ease;
}

.about-sidebar-card a:last-child {
    border-bottom: 0;
}

.about-sidebar-card a.active,
.about-sidebar-card a:hover {
    color: #6f5438;
    font-weight: 800;
}

.about-sidebar-card a i {
    font-size: 12px;
    transition: transform .25s ease;
}

.about-sidebar-card a:hover i {
    transform: translateX(4px);
}

.about-showcase {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    padding: 38px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .82)),
    #fff;
    border: 1px solid rgba(111, 84, 56, .10);
    box-shadow: 0 28px 86px rgba(35, 29, 24, .085);
}

.about-showcase::before {
    content: "";
    position: absolute;
    right: -120px;
    top: -130px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(111, 84, 56, .07);
    pointer-events: none;
}

.about-showcase-head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 132px;
    gap: 24px;
    align-items: end;
    margin-bottom: 30px;
}

.about-showcase-head span {
    display: inline-flex;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    color: #6f5438;
}

.about-showcase-head h2 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -.045em;
    color: #191716;
}

.about-year-badge {
    width: 132px;
    height: 132px;
    display: grid;
    place-items: center;
    align-content: center;
    border-radius: 50%;
    background: #6f5438;
    color: #fff;
    box-shadow: 0 22px 54px rgba(111, 84, 56, .26);
}

.about-year-badge strong {
    display: block;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
}

.about-year-badge small {
    margin-top: 7px;
    font-size: 12px;
    font-weight: 700;
    opacity: .86;
}

.about-visual-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
    align-items: stretch;
}

.about-main-visual,
.about-video-visual {
    overflow: hidden;
    border-radius: 28px;
    background: #e9e1d8;
}

.about-main-visual {
    min-height: 430px;
    box-shadow: 0 20px 60px rgba(35, 29, 24, .08);
}

.about-main-visual img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    display: block;
}

.about-video-visual {
    position: relative;
    min-height: 430px;
    display: block;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 20px 60px rgba(35, 29, 24, .08);
}

.about-video-visual img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.about-video-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .06) 0%, rgba(0, 0, 0, .58) 100%);
}

.about-video-visual span {
    position: absolute;
    inset: 0;
    z-index: 2;
    margin: auto;
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: #6f5438;
    font-size: 22px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
    transition: transform .3s ease;
}

.about-video-visual strong {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    font-size: 20px;
    font-weight: 900;
}

.about-video-visual:hover img {
    transform: scale(1.045);
}

.about-video-visual:hover span {
    transform: scale(1.08);
}

.about-body-card {
    position: relative;
    z-index: 1;
    margin-top: 26px;
    padding: 34px;
    border-radius: 28px;
    background: #f8f4ee;
    border: 1px solid rgba(111, 84, 56, .10);
}

.about-text {
    max-width: 920px;
    color: #5f5954;
    line-height: 1.9;
}

.about-text h1,
.about-text h2,
.about-text h3,
.about-text h4 {
    margin: 0 0 18px;
    color: #191716;
    font-weight: 900;
    letter-spacing: -.025em;
}

.about-text p {
    margin-bottom: 18px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.about-stat {
    position: relative;
    overflow: hidden;
    padding: 26px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(111, 84, 56, .10);
}

.about-stat::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    width: 44px;
    height: 3px;
    background: #6f5438;
    border-radius: 999px;
}

.about-stat strong {
    display: block;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1;
    font-weight: 900;
    color: #6f5438;
}

.about-stat span {
    display: block;
    margin-top: 10px;
    color: #756b64;
    font-weight: 700;
}

@media (max-width: 1199px) {
    .about-visual-grid {
        grid-template-columns: 1fr;
    }

    .about-video-visual,
    .about-video-visual img {
        min-height: 320px;
    }
}

@media (max-width: 991px) {
    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-sidebar-card {
        position: static;
    }

    .about-showcase {
        padding: 26px;
    }

    .about-showcase-head {
        grid-template-columns: 1fr;
    }

    .about-year-badge {
        width: 112px;
        height: 112px;
    }

    .about-main-visual,
    .about-main-visual img {
        min-height: 320px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .about-page-section {
        padding: 34px 0 72px;
    }

    .about-showcase,
    .about-sidebar-card {
        border-radius: 24px;
    }

    .about-showcase {
        padding: 20px;
    }

    .about-body-card {
        padding: 24px;
        border-radius: 22px;
    }

    .about-main-visual,
    .about-main-visual img,
    .about-video-visual,
    .about-video-visual img {
        min-height: 260px;
    }
}

.story-page-section {
    padding: 54px 0 150px;
    background: radial-gradient(circle at top left, rgba(111, 84, 56, .08), transparent 34%),
    linear-gradient(180deg, #f8f4ee 0%, #f6f1ea 100%);
}

.story-premium-card {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(111, 84, 56, .10);
    box-shadow: 0 28px 86px rgba(35, 29, 24, .085);
}

.story-premium-image {
    position: relative;
    margin: 32px 32px 0;
    overflow: hidden;
    height: 460px;
    border-radius: 30px;
    background: #e9e1d8;
}

.story-premium-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-premium-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(25, 23, 22, .62) 0%, rgba(25, 23, 22, .22) 45%, rgba(25, 23, 22, .04) 100%),
    linear-gradient(180deg, transparent 45%, rgba(25, 23, 22, .38) 100%);
}

.story-premium-title {
    position: absolute;
    left: 48px;
    bottom: 44px;
    z-index: 2;
    max-width: 680px;
    color: #fff;
}

.story-premium-title span {
    display: inline-flex;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .78);
}

.story-premium-title h2 {
    margin: 0;
    font-size: clamp(38px, 4.8vw, 68px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -.055em;
}

.story-premium-content {
    position: relative;
    padding: 62px 78px 34px;
}

.story-content-mark {
    position: absolute;
    top: 10px;
    left: 46px;
    font-size: 150px;
    line-height: 1;
    font-weight: 900;
    color: rgba(111, 84, 56, .08);
    pointer-events: none;
}

.story-rich-text {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
}

.story-rich-text p {
    margin: 0 0 24px;
    color: #5f5954;
    font-size: 18px;
    line-height: 2;
}

.story-rich-text p:first-child {
    color: #191716;
    font-size: clamp(23px, 2.1vw, 32px);
    line-height: 1.55;
    font-weight: 700;
    letter-spacing: -.025em;
}

.story-rich-text strong {
    color: #191716;
    font-weight: 800;
}

@media (max-width: 991px) {
    .story-page-section {
        padding: 34px 0 100px;
    }

    .story-premium-image {
        margin: 24px 24px 0;
        height: 340px;
    }

    .story-premium-title {
        left: 30px;
        right: 30px;
        bottom: 30px;
    }

    .story-premium-content {
        padding: 48px 34px 34px;
    }
}

@media (max-width: 575px) {
    .story-premium-card {
        border-radius: 24px;
    }

    .story-premium-image {
        margin: 18px 18px 0;
        height: 260px;
        border-radius: 20px;
    }

    .story-premium-title {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .story-premium-content {
        padding: 38px 24px 22px;
    }

    .story-rich-text p {
        font-size: 16px;
        line-height: 1.9;
    }
}

.career-page-section {
    padding: 54px 0 96px;
    background: radial-gradient(circle at top left, rgba(111, 84, 56, .08), transparent 34%),
    linear-gradient(180deg, #f8f4ee 0%, #f6f1ea 100%);
}

.career-card {
    overflow: hidden;
    border-radius: 34px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(111, 84, 56, .10);
    box-shadow: 0 28px 86px rgba(35, 29, 24, .085);
}

.career-hero {
    position: relative;
    margin: 32px 32px 0;
    height: 440px;
    overflow: hidden;
    border-radius: 30px;
    background: #e9e1d8;
}

.career-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.career-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(25, 23, 22, .68) 0%, rgba(25, 23, 22, .28) 46%, rgba(25, 23, 22, .04) 100%),
    linear-gradient(180deg, transparent 42%, rgba(25, 23, 22, .42) 100%);
}

.career-hero-content {
    position: absolute;
    left: 46px;
    bottom: 42px;
    z-index: 2;
    max-width: 680px;
    color: #fff;
}

.career-hero-content span {
    display: inline-flex;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
    color: rgba(255, 255, 255, .78);
}

.career-hero-content h2 {
    margin: 0;
    font-size: clamp(38px, 4.5vw, 68px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -.055em;
}

.career-content {
    padding: 54px 64px 68px;
}

.career-text {
    max-width: 980px;
    color: #5f5954;
    font-size: 18px;
    line-height: 2;
}

.career-text p {
    margin-bottom: 24px;
}

.career-apply-area {
    margin-top: 44px;
    padding: 34px;
    border-radius: 28px;
    background: #f8f4ee;
    border: 1px solid rgba(111, 84, 56, .10);
}

.career-apply-head {
    max-width: 720px;
    margin-bottom: 26px;
}

.career-apply-head span {
    display: inline-flex;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    color: #6f5438;
}

.career-apply-head h3 {
    margin: 0;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.16;
    font-weight: 900;
    letter-spacing: -.04em;
    color: #191716;
}

.career-apply-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.career-apply-card {
    min-height: 230px;
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(111, 84, 56, .10);
    color: #191716;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.career-apply-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 60px rgba(35, 29, 24, .10);
    border-color: rgba(111, 84, 56, .22);
}

.career-platform-logo {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-bottom: 24px;
    padding: 0 16px;
    border-radius: 14px;
    font-weight: 900;
}

.kariyer-net-logo {
    background: rgba(117, 35, 219, .08);
}

.kariyer-net-logo img {
    height: 30px;
    width: auto;
    display: block;
}

.linkedin-logo {
    gap: 8px;
    background: #0a66c2;
    color: #fff;
}

.career-apply-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 900;
    color: #191716;
}

.career-apply-card p {
    margin: 0;
    color: #6b625c;
    line-height: 1.7;
}

.career-apply-card > span {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    color: #6f5438;
}

.career-apply-card > span i {
    font-size: 13px;
    transition: transform .25s ease;
}

.career-apply-card:hover > span i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .career-hero {
        margin: 24px 24px 0;
        height: 340px;
    }

    .career-hero-content {
        left: 30px;
        right: 30px;
        bottom: 30px;
    }

    .career-content {
        padding: 42px 34px 50px;
    }

    .career-apply-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .career-page-section {
        padding: 34px 0 72px;
    }

    .career-card {
        border-radius: 24px;
    }

    .career-hero {
        margin: 18px 18px 0;
        height: 280px;
        border-radius: 20px;
    }

    .career-hero-content {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .career-content {
        padding: 34px 24px 42px;
    }

    .career-text {
        font-size: 16px;
        line-height: 1.9;
    }

    .career-apply-area {
        padding: 24px;
        border-radius: 22px;
    }

    .career-apply-card {
        padding: 24px;
    }
}

.branches-page-section {
    padding: 54px 0 96px;
    background: radial-gradient(circle at top left, rgba(111, 84, 56, .08), transparent 34%),
    linear-gradient(180deg, #f8f4ee 0%, #f6f1ea 100%);
}

.branches-shell {
    border-radius: 34px;
    padding: 38px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(111, 84, 56, .10);
    box-shadow: 0 28px 86px rgba(35, 29, 24, .085);
}

.branches-head {
    max-width: 760px;
    margin-bottom: 30px;
}

.branches-head span,
.branches-result-head span {
    display: inline-flex;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    color: #6f5438;
}

.branches-head h2 {
    margin: 0 0 14px;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: -.045em;
    color: #191716;
}

.branches-head p {
    margin: 0;
    color: #756b64;
    font-size: 17px;
    line-height: 1.75;
}

.branches-map-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.branches-city-panel,
.branches-map-card,
.branch-card {
    border-radius: 28px;
    border: 1px solid rgba(111, 84, 56, .10);
}

.branches-city-panel {
    height: 620px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    background: #f8f4ee;
}

.branches-search {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 15px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(111, 84, 56, .10);
    color: #6f5438;
}

.branches-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #191716;
}

.branches-city-list {
    display: grid;
    align-content: flex-start;
    gap: 10px;
    margin-top: 18px;
    overflow-y: auto;
    flex: 1;
    padding-right: 6px;
}

.branches-city-list a {
    min-height: 50px;
    border-radius: 16px;
    padding: 0 16px;
    background: rgba(255, 255, 255, .72);
    color: #191716;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 800;
    text-decoration: none;
    transition: .25s ease;
}

.branches-city-list a strong {
    min-width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(111, 84, 56, .10);
    color: #6f5438;
    font-size: 13px;
}

.branches-city-list a.active,
.branches-city-list a:hover {
    background: #6f5438;
    color: #fff;
}

.branches-city-list a.active strong,
.branches-city-list a:hover strong {
    background: rgba(255, 255, 255, .18);
    color: #fff;
}

.branches-map-card {
    position: relative;
    height: 620px;
    padding: 22px;
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(111, 84, 56, .10);
}

.branches-map-controls {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 10;
    display: grid;
    gap: 8px;
}

.branches-map-controls button {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 12px;
    background: #fff;
    color: #6f5438;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 28px rgba(35, 29, 24, .10);
    transition: .22s ease;
}

.branches-map-controls button:hover {
    background: #6f5438;
    color: #fff;
}

#turkeyMapContainer {
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
    cursor: grab;
    touch-action: none;
}

#turkeyMapContainer:active {
    cursor: grabbing;
}

#turkeyMapContainer svg {
    width: 100%;
    height: 100%;
    display: block;
    transform-origin: center;
    overflow: visible;
}

#turkeyMapContainer path {
    fill: #c8b8a3;
    stroke: #ffffff;
    stroke-width: 1.15;
    cursor: pointer;
    transition: fill .18s ease;
}

#turkeyMapContainer path:hover {
    fill: #3f2a19;
}

.branch-map-pin {
    cursor: pointer;
}

.branch-map-pin-tooltip {
    opacity: 0;
    pointer-events: none;
    text-anchor: middle;
    font-size: 13px;
    font-weight: 800;
    fill: #191716;
    paint-order: stroke;
    stroke: #fff;
    stroke-width: 5px;
    transition: opacity .18s ease;
}

.branch-city-tooltip {
    opacity: 0;
    pointer-events: none;
    text-anchor: middle;
    font-size: 13px;
    font-weight: 800;
    fill: #191716;
    paint-order: stroke;
    stroke: #fff;
    stroke-width: 5px;
    transition: opacity .18s ease;
}

.branch-map-pin:hover .branch-map-pin-tooltip {
    opacity: 1;
}

.branch-map-pin-pulse {
    opacity: 0;
    fill: rgba(207, 47, 47, .18);
    stroke: #cf2f2f;
    stroke-width: 2.8;
}

.branch-map-pin.is-located .branch-map-pin-pulse {
    opacity: 1;
    animation: branchPinPulse 1.6s ease-out infinite;
}

@keyframes branchPinPulse {
    0% {
        r: 6;
        opacity: .95;
    }

    35% {
        opacity: .7;
    }

    100% {
        r: 22;
        opacity: 0;
    }
}

.branch-map-pin.is-located image {
    animation: branchPinFloat .9s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 10px rgba(207, 47, 47, .55));
}

@keyframes branchPinFloat {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-3px);
    }
}

.branches-map-controls button.is-loading {
    pointer-events: none;
    opacity: .78;
}

.branches-map-controls button.is-loading i {
    animation: mapLocateSpin .8s linear infinite;
}

@keyframes mapLocateSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.branches-result-head {
    scroll-margin-top: 120px;
    margin: 36px 0 18px;
}

.branches-result-head h3 {
    margin: 0;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -.03em;
    color: #191716;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.branch-card {
    padding: 24px;
    background: #f8f4ee;
    color: #191716;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    transition: .25s ease;
}

.branch-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 46px rgba(35, 29, 24, .08);
}

.branch-card span {
    display: inline-flex;
    margin-bottom: 8px;
    color: #6f5438;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
}

.branch-card h4 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 900;
    color: #191716;
}

.branch-card p {
    margin: 0;
    color: #756b64;
    line-height: 1.65;
}

.branch-card strong {
    flex: 0 0 auto;
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #6f5438;
    font-weight: 900;
}

.branch-card strong i {
    font-size: 13px;
    transition: transform .25s ease;
}

.branch-card:hover strong i {
    transform: translateX(5px);
}

#turkeyMapContainer path.has-branch {
    fill: #6f5438;
}

#turkeyMapContainer path.has-branch:hover {
    fill: #3f2a19;
}

#turkeyMapContainer path.active-city {
    fill: #3f2a19;
    stroke-width: 1.6;
}

@media (max-width: 991px) {
    .branches-map-layout {
        grid-template-columns: 1fr;
    }

    .branches-city-panel {
        height: 360px;
    }

    .branches-map-card {
        height: 360px;
    }

    .branches-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .branches-page-section {
        padding: 34px 0 72px;
    }

    .branches-shell {
        padding: 22px;
        border-radius: 24px;
    }

    .branches-head h2 {
        font-size: 36px;
    }

    .branches-city-panel {
        height: 360px;
        padding: 18px;
        border-radius: 22px;
    }

    .branches-map-card {
        height: 280px;
        padding: 14px;
        border-radius: 22px;
    }

    #turkeyMapContainer {
        padding: 0;
    }

    .branch-card {
        flex-direction: column;
        border-radius: 22px;
    }
}

.branch-detail-section {
    padding: 54px 0 96px;
    background: radial-gradient(circle at top left, rgba(111, 84, 56, .08), transparent 34%),
    linear-gradient(180deg, #f8f4ee 0%, #f6f1ea 100%);
}

.branch-detail-shell {
    padding: 38px;
    border-radius: 34px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(111, 84, 56, .10);
    box-shadow: 0 28px 86px rgba(35, 29, 24, .085);
}

.branch-detail-head {
    margin-bottom: 28px;
}

.branch-detail-head span {
    display: inline-flex;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    color: #6f5438;
}

.branch-detail-head h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: -.045em;
    color: #191716;
}

.branch-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 24px;
}

.branch-gallery-card,
.branch-info-card,
.branch-map-embed {
    border-radius: 28px;
    background: #f8f4ee;
    border: 1px solid rgba(111, 84, 56, .10);
}

.branch-gallery-card {
    overflow: hidden;
    padding: 22px;
}

.branch-gallery-main {
    overflow: hidden;
    border-radius: 24px;
    background: #e9e1d8;
}

.branch-gallery-main img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
}

.branch-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    padding: 42px;
    background: rgba(25, 23, 22, .92);
    display: none;
    align-items: center;
    justify-content: center;
}

.branch-lightbox.show {
    display: flex;
}

.branch-lightbox img {
    max-width: min(1100px, 92vw);
    max-height: 86vh;
    object-fit: contain;
    border-radius: 22px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
}

.branch-lightbox-close,
.branch-lightbox-nav {
    position: absolute;
    border: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: #191716;
    transition: .25s ease;
}

.branch-lightbox-close {
    top: 28px;
    right: 28px;
    width: 52px;
    height: 52px;
}

.branch-lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
}

.branch-lightbox-prev {
    left: 28px;
}

.branch-lightbox-next {
    right: 28px;
}

.branch-lightbox-close:hover,
.branch-lightbox-nav:hover {
    background: #6f5438;
    color: #fff;
}

.branch-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.branch-gallery-thumbs img {
    width: 100%;
    height: 96px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.branch-gallery-empty {
    min-height: 470px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    border-radius: 24px;
    background: radial-gradient(circle at center, rgba(111, 84, 56, .12), transparent 42%),
    #fff;
    color: #6f5438;
}

.branch-gallery-empty i {
    font-size: 46px;
}

.branch-gallery-empty span {
    font-size: 26px;
    font-weight: 900;
    color: #191716;
}

.branch-info-card {
    padding: 28px;
}

.branch-info-card h3 {
    margin: 0 0 20px;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -.03em;
    color: #191716;
}

.branch-info-list {
    display: grid;
    gap: 12px;
}

.branch-info-item {
    display: flex;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .72);
    color: #191716;
    text-decoration: none;
}

.branch-info-item i {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(111, 84, 56, .10);
    color: #6f5438;
}

.branch-info-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
}

.branch-info-item p {
    margin: 0;
    color: #6b625c;
    line-height: 1.6;
}

.branch-map-button {
    margin-top: 22px;
    min-height: 52px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    background: #6f5438;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    transition: .25s ease;
}

.branch-map-button:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(111, 84, 56, .22);
}

.branch-map-button i {
    font-size: 13px;
    transition: transform .25s ease;
}

.branch-map-button:hover i {
    transform: translateX(5px);
}

.branch-map-embed {
    margin-top: 24px;
    overflow: hidden;
    height: 420px;
}

.branch-map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.branch-thumb {
    cursor: pointer;
    transition: .25s ease;
}

.branch-thumb:hover {
    transform: translateY(-2px);
}

.branch-thumb.active {
    outline: 3px solid #6f5438;
    outline-offset: 2px;
}

@media (max-width: 991px) {
    .branch-detail-grid {
        grid-template-columns: 1fr;
    }

    .branch-gallery-main img,
    .branch-gallery-empty {
        height: 360px;
        min-height: 360px;
    }
}

@media (max-width: 575px) {
    .branch-detail-section {
        padding: 34px 0 72px;
    }

    .branch-detail-shell {
        padding: 22px;
        border-radius: 24px;
    }

    .branch-gallery-card,
    .branch-info-card,
    .branch-map-embed {
        border-radius: 22px;
    }

    .branch-gallery-main img,
    .branch-gallery-empty {
        height: 260px;
        min-height: 260px;
    }

    .branch-gallery-thumbs {
        grid-template-columns: repeat(2, 1fr);
    }

    .branch-map-embed {
        height: 320px;
    }

    /* Lightbox */
    .branch-lightbox {
        padding: 18px;
        background: rgba(25, 23, 22, .96);
    }

    .branch-lightbox img {
        width: 100%;
        max-width: 100%;
        max-height: 78vh;
        object-fit: contain;
        border-radius: 18px;
    }

    .branch-lightbox-close {
        width: 46px;
        height: 46px;
        top: 18px;
        right: 18px;
    }

    .branch-lightbox-nav {
        width: 44px;
        height: 44px;
        top: auto;
        bottom: 24px;
        transform: none;
    }

    .branch-lightbox-prev {
        left: calc(50% - 54px);
    }

    .branch-lightbox-next {
        right: calc(50% - 54px);
    }
}

.recipe-product-page {
    background: #f7f2eb;
}

.recipe-product-hero {
    position: relative;
    padding: 96px 0 44px;
    overflow: visible;
    background: #f7f2eb;
}

.recipe-product-hero::before {
    display: none;
}

.recipe-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: #9a9189;
    font-size: 14px;
    font-weight: 700;
}

.recipe-breadcrumb a {
    color: #9a9189;
    text-decoration: none;
}

.recipe-breadcrumb strong {
    color: #6f5438;
}

.recipe-product-card {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 36px;
    align-items: center;
    padding: 36px;
    border-radius: 34px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(111, 84, 56, .09);
    box-shadow: 0 24px 70px rgba(43, 33, 24, .06);
}

.recipe-product-kicker {
    display: inline-flex;
    margin-bottom: 16px;
    color: #b08a5a;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

.recipe-product-card h1 {
    margin: 0 0 18px;
    color: #191716;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: .95;
    font-weight: 700;
}

.recipe-product-card p {
    max-width: 660px;
    margin: 0 0 26px;
    color: #756b64;
    font-size: 16px;
    line-height: 1.85;
}

.recipe-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.recipe-store-btn,
.recipe-scroll-btn {
    min-height: 50px;
    padding: 0 20px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    transition: .25s ease;
}

.recipe-store-btn {
    background: #6f5438;
    color: #fff;
    box-shadow: 0 16px 34px rgba(111, 84, 56, .20);
}

.recipe-store-btn:hover {
    color: #fff;
    background: #3f2a19;
    transform: translateY(-2px);
}

.recipe-scroll-btn {
    background: #fff;
    color: #6f5438;
    border: 1px solid rgba(111, 84, 56, .12);
}

.recipe-scroll-btn:hover {
    color: #3f2a19;
    border-color: rgba(111, 84, 56, .24);
    transform: translateY(-2px);
}

.recipe-product-visual {
    overflow: hidden;
    border-radius: 28px;
    background: #eadfce;
    aspect-ratio: 1 / 1;
    box-shadow: inset 0 0 0 1px rgba(111, 84, 56, .08);
}

.recipe-product-visual img,
.recipe-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.recipe-list-section {
    padding: 44px 0 92px;
    background: #f7f2eb;
}

.recipe-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.recipe-section-head h2 {
    margin: 0;
    color: #191716;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -.03em;
}

.recipe-count {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(111, 84, 56, .08);
    color: #6f5438;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.recipe-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 26px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(111, 84, 56, .09);
    box-shadow: 0 20px 56px rgba(35, 29, 24, .055);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.recipe-card:hover {
    transform: translateY(-6px);
    border-color: rgba(176, 138, 90, .30);
    box-shadow: 0 28px 74px rgba(35, 29, 24, .10);
}

.recipe-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #eadfce;
}

.recipe-card-image img {
    transition: transform .5s ease;
}

.recipe-card:hover .recipe-card-image img {
    transform: scale(1.045);
}

.recipe-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 22px 24px;
}

.recipe-card-top {
    margin-bottom: 14px;
}

.recipe-card-category {
    color: #b08a5a;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.recipe-card h3 {
    margin: 0 0 11px;
    color: #191716;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 900;
    letter-spacing: -.02em;
}

.recipe-card-title {
    color: inherit;
    text-decoration: none;
    transition: color .25s ease;
}

.recipe-card-title:hover {
    color: #6f5438;
}

.recipe-card-description {
    margin: 0 0 18px;
    color: #756b64;
    font-size: 14px;
    line-height: 1.75;
}

.recipe-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    color: #6f5438;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.recipe-card-link i {
    font-size: 12px;
    transition: transform .25s ease;
}

.recipe-card:hover .recipe-card-link i {
    transform: translateX(4px);
}

.recipe-empty {
    padding: 38px;
    border-radius: 26px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(111, 84, 56, .09);
    color: #756b64;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 991px) {
    .recipe-product-card {
        grid-template-columns: 1fr;
    }

    .recipe-product-visual {
        max-width: 360px;
    }

    .recipe-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .recipe-product-hero {
        padding: 72px 0 24px;
    }

    .recipe-product-card {
        padding: 24px;
        border-radius: 26px;
        gap: 24px;
    }

    .recipe-product-card h1 {
        font-size: 42px;
    }

    .recipe-product-card p {
        font-size: 15px;
    }

    .recipe-store-btn,
    .recipe-scroll-btn {
        width: 100%;
    }

    .recipe-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .recipe-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .recipe-list-section {
        padding: 30px 0 68px;
    }
}

.recipe-detail-page {
    background: #f7f2eb;
}

.recipe-detail-hero {
    padding: 96px 0 42px;
    background: #f7f2eb;
}

.recipe-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: #9a9189;
    font-size: 14px;
    font-weight: 700;
}

.recipe-breadcrumb a {
    color: #9a9189;
    text-decoration: none;
}

.recipe-breadcrumb strong {
    color: #6f5438;
}

.recipe-detail-card {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 42px;
    align-items: center;
    padding: 38px;
    border-radius: 34px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(111, 84, 56, .09);
    box-shadow: 0 24px 70px rgba(43, 33, 24, .06);
}

.recipe-detail-category {
    display: inline-flex;
    margin-bottom: 16px;
    color: #b08a5a;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.recipe-detail-card h1 {
    margin: 0 0 18px;
    color: #191716;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: .95;
    font-weight: 700;
}

.recipe-detail-card p {
    max-width: 660px;
    margin: 0;
    color: #756b64;
    font-size: 16px;
    line-height: 1.85;
}

.recipe-detail-visual {
    overflow: hidden;
    border-radius: 28px;
    background: #eadfce;
}

.recipe-detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.recipe-info-section {
    padding: 0 0 40px;
    background: #f7f2eb;
}

.recipe-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.recipe-info-box {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(111, 84, 56, .09);
    box-shadow: 0 16px 42px rgba(35, 29, 24, .045);
}

.recipe-info-box i {
    margin-bottom: 12px;
    color: #b08a5a;
    font-size: 22px;
}

.recipe-info-box span {
    display: block;
    margin-bottom: 4px;
    color: #8b7e72;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.recipe-info-box strong {
    color: #191716;
    font-size: 22px;
    font-weight: 900;
}

.recipe-content-section {
    padding: 0 0 92px;
    background: #f7f2eb;
}

.recipe-content-card {
    padding: 42px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(111, 84, 56, .09);
    box-shadow: 0 20px 56px rgba(35, 29, 24, .055);
}

.recipe-content-card h2,
.recipe-content-card h3 {
    margin: 28px 0 14px;
    color: #191716;
    font-weight: 900;
    letter-spacing: -.02em;
}

.recipe-content-card h2:first-child,
.recipe-content-card h3:first-child {
    margin-top: 0;
}

.recipe-content-card p,
.recipe-content-card li {
    color: #756b64;
    font-size: 16px;
    line-height: 1.9;
}

.recipe-content-card ul,
.recipe-content-card ol {
    padding-left: 22px;
    margin-bottom: 24px;
}

.recipe-content-card ul li p,
.recipe-content-card ol li p {
    margin: 0;
}

.recipe-content-card a {
    color: #6f5438;
    font-weight: 900;
}

@media (max-width: 991px) {
    .recipe-detail-card {
        grid-template-columns: 1fr;
    }

    .recipe-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .recipe-detail-hero {
        padding: 72px 0 30px;
    }

    .recipe-detail-card,
    .recipe-content-card {
        padding: 24px;
        border-radius: 26px;
    }

    .recipe-detail-card h1 {
        font-size: 42px;
    }

    .recipe-breadcrumb {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        gap: 10px;
        padding-bottom: 8px;
        margin-bottom: 18px;

        -webkit-overflow-scrolling: touch;
    }

    .recipe-breadcrumb a,
    .recipe-breadcrumb span,
    .recipe-breadcrumb strong {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

.recipes-search-section {
    padding: 52px 0 34px;
    background: #f7f2eb;
}

.recipes-search-card {
    max-width: 860px;
    margin: 0 auto;
    padding: 34px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(111, 84, 56, .09);
    box-shadow: 0 10px 28px rgba(43, 33, 24, .04);
}

.recipes-search-card form {
    position: relative;
}

.recipes-search-card input {
    width: 100%;
    height: 64px;
    padding: 0 74px 0 24px;
    border-radius: 20px;
    border: 1px solid rgba(111, 84, 56, .13);
    background: #fff;
    color: #191716;
    font-size: 16px;
    font-weight: 700;
    outline: none;
    box-shadow: 0 18px 46px rgba(35, 29, 24, .06);
    transition: .25s ease;
}

.recipes-search-card input:focus {
    border-color: rgba(111, 84, 56, .36);
    box-shadow: 0 20px 54px rgba(35, 29, 24, .10);
}

.recipes-search-card input::placeholder {
    color: #a79b91;
}

.recipes-search-card button {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 16px;
    background: #6f5438;
    color: #fff;
    transition: .25s ease;
}

.recipes-search-card button:hover {
    background: #3f2a19;
}

.recipes-list-section {
    padding: 24px 0 92px;
    background: #f7f2eb;
}

.recipes-search-note {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: #756b64;
    font-size: 14px;
    font-weight: 700;
}

.recipes-search-note a {
    color: #6f5438;
    font-weight: 900;
    text-decoration: none;
}

@media (max-width: 575px) {
    .recipes-search-section {
        padding: 34px 0 24px;
    }

    .recipes-search-card {
        padding: 22px;
        border-radius: 24px;
    }

    .recipes-search-card input {
        height: 58px;
        padding: 0 66px 0 18px;
        border-radius: 18px;
        font-size: 14px;
    }

    .recipes-search-card button {
        width: 44px;
        height: 44px;
        border-radius: 15px;
    }

    .recipes-list-section {
        padding: 18px 0 68px;
    }
}
