@font-face {
    font-family: 'Sweet Sans Pro';
    src: url('../fonts/SweetSansPro-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sweet Sans Pro';
    src: url('../fonts/SweetSansPro-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sweet Sans Pro';
    src: url('../fonts/SweetSansPro-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Sweet Sans Pro';
    src: url('../fonts/SweetSansPro-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sweet Sans Pro';
    src: url('../fonts/SweetSansPro-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sweet Sans Pro';
    src: url('../fonts/SweetSansPro-Heavy.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Commons Pro';
    src: url('../fonts/TTCommonsPro-Lt.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Commons Pro';
    src: url('../fonts/TTCommonsPro-Rg.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Commons Pro';
    src: url('../fonts/TTCommonsPro-It.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'TT Commons Pro';
    src: url('../fonts/TTCommonsPro-Md.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Commons Pro';
    src: url('../fonts/TTCommonsPro-Bd.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Commons Pro';
    src: url('../fonts/TTCommonsPro-Blk.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-1: #F8F2E5;
    --color-2: #03090D;
    --color-3: #C2644F;
    --color-4: #A17F3E;
    --color-5: #83A9D0;
    --color-6: #FFFFFF;
    --color-8: #D3CFC5;
    --color-7: #03090D60;

    --color-primary: var(--color-1);
    --color-secondary: var(--color-2);
    --color-accent: var(--color-3);
    --color-success: var(--color-4);
    --color-info: var(--color-5);
    --color-white: var(--color-6);
    --color-black: var(--color-2);

    --font-1: 'Sweet Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-2: 'TT Commons Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --font-primary: var(--font-1);
    --font-secondary: var(--font-2);

    --grid-columns: 12;
    --grid-margin: 20px;
    --grid-gap: 20px;
    
    --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    
    --size-unit: 16;
    --size-container-ideal: 1728;
    --size-container-min: 1025px;
    --size-container-max: 1920px;
    --size-container: clamp(var(--size-container-min), 100vw, var(--size-container-max));
    --size-font: calc(var(--size-container) / (var(--size-container-ideal) / var(--size-unit)));
}

html {
    scroll-behavior: auto;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

#smooth-wrapper {
    position: static;
    width: 100%;
    height: auto;
    overflow: visible;
}

#smooth-content {
    position: static;
    width: 100%;
    height: auto;
    overflow: visible;
    transform: none;
}

body {
    font-family: var(--font-primary);
    font-size: var(--size-font);
    line-height: 1.6;
    color: var(--color-secondary);
    background-color: var(--color-primary);
}
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-wrap: balance;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* HEADER START */
.block-header {
    position: fixed;
    top: 1em;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1000;
    padding: 0.1875em;
    transition: background-color 0.3s ease;
    max-width: 45em;
    backdrop-filter: blur(25px);
    height: 3.75em;
    border-radius: 0.375em;
    background-color: #03090D30;
}

.block-header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 100%;
}

.block-header__book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75em 1.5em;
    background-color: transparent;
    color: #FFFEFD;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75em;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 0.25em;
    transition: background-color 0.3s ease, color 0.3s ease;
    height: 100%;
    border: 1px solid #ffffff40;
}

.block-header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 100%;
}

.block-header__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.3125em;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 1.5em;
    z-index: 10;
}

.block-header__logo img {
    height: 2.5em;
    width: auto;
    object-fit: contain;
}

.block-header__toggle-line {
    display: block;
    width: 2.5em;
    height: 1px;
    background-color: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.block-header__menu {
    position: absolute;
    top: calc(100% + 0.375em);
    left: 0;
    right: 0;
    background-color: #FFFEFD;
    overflow: hidden;
    height: 0;
    opacity: 0;
    z-index: 5;
    border-radius: 0.375em;
    width: 100%;
}

.block-header__menu-container {
    padding: 0.6875em;
}

.block-header__menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
}

.block-header__close {
    position: absolute;
    top: 1.25em;
    right: 2.5em;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5em;
    color: var(--color-2, #03090D);
    display: none;
}

.block-header__close {
    position: absolute;
    top: 1.25em;
    right: 2.5em;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5em;
    color: var(--color-2, #03090D);
    display: none;
}

.block-header__nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75em;
}

.block-header__nav li {
    overflow: hidden;
}

.block-header__social {
    margin-top: 1em;
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75em;
    flex-direction: column;
}

.block-header__social a {
    display: inline-flex;
    align-items: center;
    gap: 0.375em;
    text-decoration: none;
    color: var(--color-2, #03090D);
    font-size: 0.875em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.block-header__social svg {
    width: 8px;
    height: 8px;
}

.header-image {
    position: relative;
    overflow: hidden;
    border-radius: 0.375em;
    width: 100%;
}

.block-header__menu-image {
    max-width: 100%;
    height: auto;
    display: block;
    width: 100%;
}

.header-image__text {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 15.9375em;
    color: var(--color-1);
    padding: 0 2.5em;
}

.header-image__mini {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* HEADER END */

.hero_section{
    background: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0.75em;
}

.hero_section_video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero_section_video::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAFElEQVR4AWJiYGD4D8QMIAYjiAEAAAD//7nL8I4AAAAGSURBVAMADj8BBRD7ez4AAAAASUVORK5CYII=);
    background-repeat: repeat;
    opacity: 0.30;
}

.hero_section_video img{
     width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.block-card-content__figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.block-hero__bg-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-hero__content {
    width: 51.5625em;
    max-width: 100%;
    z-index: 2;
    position: relative;
    color: var(--color-primary);
}

.title-xl {
    font-size: 5.125em;
    font-weight: 400;
    line-height: .9;
    letter-spacing: 0.025em;
    font-family: var(--font-primary);
    text-transform: uppercase;
    color: white;
}


.block-text-image {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100vh;
    overflow: hidden;
    justify-content: space-between;
    padding: 2.56em 2.75em 4.8em 2.75em;
    color: var(--color-primary);
}

.block-card-content__figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-text-image__top {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
}

.block-text-image__top-content {
    width: 59em;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.875em;
}

.eyebrow {
    font-size: 0.875em;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.04375em;
    font-family: var(--font-primary);
    text-transform: uppercase;
    color: inherit;
}

.block-text-image__bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}

.block-text-image__bottom-content {
    width: 23.75em;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.875em;
}

.paragraph-l {
    font-size: 1.125em;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
    font-family: var(--font-secondary);
    color: inherit;
}

.btn-secondary.button-light {
    color: var(--color-1);
    transition: all 0.3s ease-in-out;
}

.btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.43em;
    transition: all 0.3s ease-in-out;
}

.link {
    font-size: 0.875em;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    font-family: var(--font-primary);
    text-transform: uppercase;
    color: inherit;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0.70em;
}

.btn-secondary.button-light svg path
{
    fill: black;
}

.btn-secondary.button-light svg circle {
    fill: var(--color-1);
}

.block-split-content.theme-accent {
    --split-bg: var(--color-accent);
}

.block-split-content {
    display: flex;
    flex-direction: row;
    gap: 0;
    min-height: 100vh;
}

.block-split-content__left {
    overflow: hidden;
}

.block-split-content__left {
    flex: 1;
    width: 50%;
    position: relative;
    min-height: 50vh;
}

.split-gallery {
    position: relative;
    width: 100%;
    height: 100%;
}

.split-gallery__track {
    position: absolute;
    inset: 0;
}

.split-gallery__slide.is-active {
    opacity: 1;
    visibility: visible;

}

.split-gallery__slide {
    position: absolute;
    inset: 0;
    margin: 0;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.split-gallery__image, .split-gallery__video {
     width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.block-hero-simple__overlay img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.block-split-content__right {
    flex: 1;
    width: 50%;
    background-color: var(--split-bg, var(--color-accent));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--color-primary);
    position: relative;
    overflow: hidden;
    min-height: 50vh;
}

.split-content-panel.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    flex: 1;
}


.split-content-panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.125em 1.375em 4em 1.375em;
    opacity: 0;
    visibility: hidden;
    height: 100%;
    gap: 1em;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.block-split-content__top {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
}

.block-split-content__top-content {
    width: 50em;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.875em;
}

.title-m {
    font-size: 3.625em;
    font-weight: 400;
    line-height: .9;
    letter-spacing: 0.025em;
    font-family: var(--font-primary);
    text-transform: uppercase;
    color: inherit;
    margin: 0;
}

.block-split-content__bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
}

.block-split-content__bottom-content {
    width: 32em;
    max-width: 100%;
    display: flex;
    gap: 2.5em;
}

.block-split-content__bottom-col {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

.paragraph-l {
    font-size: 1.125em;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
    font-family: var(--font-secondary);
    color: inherit;
}

.block-full-image {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.block-full-image__figure {
    width: 100%;
    height: 100%;
}

.block-full-image__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-content-intro {
    display: grid;
    
    gap: 4.5em;
    background-color: var(--color-primary);
    padding: 5em 8.375em 8.75rem 9.9375em;
}

.block-content-intro__left {
    grid-column: span 4;
}

.block-content-intro__right {
    display: flex;
    flex-direction: column;
    gap: 3.5em;
    grid-column: span 7;
    min-width: 0;
}

.block-content-intro__right-description {
    max-width: 18em;
}

.btn-secondary.button-dark {
    color: var(--color-2) !important;
}

.btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.43em;
    transition: all 0.3s ease-in-out;
}

.block-slider {
    padding: 5em 0;
    background-color: var(--color-1, #F8F2E5);
    overflow: hidden;
}

.block-slider__container {
    padding: 0 1.25em;
}

.block-slider__swiper {
    overflow: visible;
}
.swiper-pointer-events {
    touch-action: pan-y;
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.block-slider__slide {
    width: auto;
    height: auto;
}
.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

.block-slider__card {
    position: relative;
    width: 100%;
    aspect-ratio: 560 / 700;
    border-radius: 0.5em;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.block-slider__figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    z-index: 1;
}

.block-slider__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.block-slider__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 1.25em;
    color: var(--color-1, #F8F2E5);
}

.block-slider__card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
    pointer-events: none;
}

.block-slider__title {
    margin: 0;
    text-align: center;
    color: var(--color-1, #F8F2E5);
}
.title-xs {
    font-size: 1.5em;
    font-weight: 400;
    line-height: .9;
    letter-spacing: 0.025em;
    font-family: var(--font-primary);
    text-transform: uppercase;
    color: inherit;
}

.block-slider__bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5625em;
}

.block-slider__description {
    margin: 0;
    text-align: center;
    max-width: 50%;
    margin: 0 auto;
}

.btn-secondary.button-light {
    color: var(--color-1);
    transition: all 0.3s ease-in-out;
}
.block-slider__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    text-decoration: none;
    color: var(--color-1, #F8F2E5);
    font-size: 0.875em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.block-slider__card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
    pointer-events: none;
}

.block-slider__navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5em;
    border: 1px solid #00000020;
    border-radius: 100px;
    width: 15em;
    margin: 2.5em auto 0;
}

.block-slider__nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5em;
    height: 2.5em;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-2, #03090D);
    transition: opacity 0.3s ease;
    padding: 0;
}

.block-slider__progress {
    width: 6em;
    height: 1px;
    background-color: rgba(3, 9, 13, 0.2);
    position: relative;
    overflow: hidden;
}

.block-media-intro {
    display: flex;
    flex-direction: row;
    gap: 2em;
    background-color: #F9FBF3;
    padding: 7.5em 2.75em;
}

.block-media-intro__left {
    width: 10em;
    flex-shrink: 0;
}

.block-media-intro__center {
    flex: 1;
    max-width: 30em;
}

.block-media-intro__image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.block-media-intro__right {
    display: flex;
    flex-direction: column;
    gap: 2em;
    flex: 1;
    max-width: 30em;
    justify-content: space-between;
}

.word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}

.block-media-intro__bottom {
    display: flex;
    flex-direction: column;
    gap: 3.125em;
}

.block-media-intro__description {
    max-width: 22em;
}


.block-card-content {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

.block-card-content__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-card-content__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-card-content-box {
    width: 45em;
    max-width: 100%;
    padding: 1.3125em 1.5625em 2em 1.5625em;
    background: var(--color-4);
    border-radius: 0.375em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2em;
    height: 21.625em;
    max-height: 100%;
    position: absolute;
    bottom: 2.5em;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    color: var(--color-1);
}

.block-card-content__title-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.875em;
    width: 50%;
}

.block-card-content__description-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 1.6875em;
}

.block-card-content__description {
    display: flex;
    flex-direction: column;
    gap: 1.6875em;
}

.block-card-content__description p:first-child {
    opacity: 0.5;
}

.footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5.25em;
    padding: 0 0 6.8125em;
    margin: 0 2.5em;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.footer, .footer * {
    box-sizing: border-box;
}

.block-footer__content {
    display:flex;
    align-items: flex-end;

    padding-top: 2.75em;
    min-width: 0;
}

.block-footer__figure {
    overflow: hidden;
    border-radius: 0.375em;
    min-width: 0;
    max-width:20em;

}

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

.block-footer__content-description {
    display: flex;
    flex-direction: column;
    gap: 1.6875em;
    min-width: 0;
    padding-left:2em;
}

.block-footer__description {
    max-width: 18.675em;
    min-width: 0;
}

.block-footer__menu-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    width: 100%;
    padding-top: 7.125em;
    column-gap: 0;
    min-width: 0;
}

.block-footer__menu {
    gap: 2em;
}
.block-footer__menu, .block-footer__form {
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.block-footer__eyebrow.eyebrow {
    color: #7D7D79;
}
.block-footer__eyebrow {
    display: inline-flex;
    width: fit-content;
    letter-spacing: 0.12em;
}

.block-footer__menu-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.125em;
    min-width: 0;
}

.block-footer__menu-content ul + ul {
    margin-top: 2.0625em;
}
.block-footer__menu-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.125em;
    min-width: 0;
}


.block-footer__menu-content ul li {
    display: flex;
    height: 14px;
}

.block-footer__form {
    width: 100%;
    max-width: 16.625em;
    justify-self: start;
    gap: 7.1875em;
    min-width: 0;
}
.block-footer__menu, .block-footer__form {
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.block-footer__form .form-footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
}

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 1.35em;
    width: 100%;
    min-width: 0;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 1px;
    height: 100%;
    background-color: rgba(0, 0, 0, .15);
}

.copyright {
    padding: 2.5em 0;
    margin: 0 2.5em;
}
.block-footer__logotype {
    margin-bottom: 1.69125em;
}

.copyright-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: var(--color-2);
    opacity: .6;
}

.terms {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 3.3125em;
    text-transform: uppercase;
}

.terms a {
    transition: all .3s ease;
}
.link-mini {
    font-size: 0.75em;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.04375em;
    font-family: var(--font-primary);
    text-transform: uppercase;
    color: inherit;
}

.block-footer__logotype img {
    width: 100%;
    height: auto;
}


/* GSAP WORD REVEAL START */
[data-split="true"] .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: inherit;
    padding-top:15px;
    padding-bottom: 0.08em;
    margin-bottom: -0.08em;
}

[data-split="true"] .word-inner {
    display: inline-block;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

/*
 * Bu sınıf Blade dosyasının en başında eklenir.
 * Böylece başlıklar ekranda önce görünüp sonra kaybolmaz.
 */
html.gsap-word-reveal [data-split="true"]:not(.is-revealed) .word-inner {
    transform: translate3d(0, 120%, 0);
    opacity: 0;
    visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
    html.gsap-word-reveal [data-split="true"]:not(.is-revealed) .word-inner {
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}
/* GSAP WORD REVEAL END */

#slider-block_23330fe936c4049d13f3a1e0e810dd03 {
    overflow: hidden;
}

#slider-block_23330fe936c4049d13f3a1e0e810dd03
.block-slider__swiper {
    overflow: visible;
    cursor: grab;
}

#slider-block_23330fe936c4049d13f3a1e0e810dd03
.block-slider__swiper:active {
    cursor: grabbing;
}

#slider-block_23330fe936c4049d13f3a1e0e810dd03
.swiper-wrapper {
    align-items: stretch;
}

#slider-block_23330fe936c4049d13f3a1e0e810dd03
.block-slider__slide {
    width: auto;
    height: auto;
}

#slider-block_23330fe936c4049d13f3a1e0e810dd03
.block-slider__card {
    height: 100%;
}

/* İlerleme çubuğu */
.block-slider__progress-bar {
    width: 0;
    height: 100%;
    background-color: var(--color-2, #03090d);
    transform-origin: left center;
    transition: width 0.3s ease;
}

/* Oklar pasif olduğunda */
.block-slider__nav-btn.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

@media (max-width: 767px) {
    #slider-block_23330fe936c4049d13f3a1e0e810dd03
    .block-slider__slide {
        width: 82vw;
    }
}

.block-hero-simple.is-text-center {
    align-items: center;
}
.block-hero-simple.is-height-small {
    min-height: 30em;
    padding: 2em;
}
.block-hero-simple {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--color-primary);
    overflow: hidden;
}

.block-hero-simple__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    padding: 2em;
    max-width: 52em;
    z-index: 3;
}

.block-editorial-section {
    padding: 14.6875rem 8.375em 8.75rem 9.9375em;
    background-color: var(--color-1);
}

.block-editorial-section__title-section {
    display: flex;
    flex-direction: column;
    gap: 4.5em;
    margin-bottom: 11.4em;
}

.block-editorial-section__title {
    max-width: 500px;
    width: 100%;
    color: var(--color-2);
}
.title-medium {
    font-size: 2.5em;
    font-weight: 400;
    line-height: .9;
    letter-spacing: 0.025em;
    font-family: var(--font-primary);
    text-transform: uppercase;
    color: inherit;
}

.block-editorial-section__description-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 3.6875em;
    max-width: 52.375em;
    width: 100%;
    margin: auto;
}
.block-editorial-section__description {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 2em;
}

.block-editorial-section__description-text {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 1.25em;
}

.block-editorial-section__description p, h1, h2, h3, h4, h5, h6, strong {
    max-width: 26.3em;
    width: 100%;
    font-family: 'TT Commons Pro';
    font-weight: 500;
}

.block-editorial-section__description p, h1, h2, h3, h4, h5, h6, strong {
    max-width: 26.3em;
    width: 100%;
    font-family: 'TT Commons Pro';
    font-weight: 500;
}

.block-editorial-medias {
    display: flex;
    flex-direction: row;
    gap: 1.25em;
    height: 75em;
}

.block-editorial-section__video {
    width: 100%;
    height: 100%;
    max-height: 63.6875em;
    object-fit: cover;
    overflow: hidden;
    border-radius: 0.375em;
}

.video-area {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.block-editorial-section__figure {
    width: 100%;
    max-height: 61.5em;
    height: 100%;
    overflow: hidden;
    border-radius: 0.375em;
    display: flex;
    align-items: flex-start;
}

.block-editorial-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.block-content-intro__right-name {
    color: var(--color-2);
    font-family: var(--font-primary);
    text-transform: uppercase;
}


.block-content-intro__right-position {
    color: #03090D50;
    font-family: var(--font-primary);
    text-transform: uppercase;
}

.block-hero-simple.is-text-bottom {
    align-items: flex-end;
}

.block-hero-simple__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.block-hero-simple__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.block-hero-simple.has-background-media .block-hero-simple__content, .block-hero-simple.has-background-image .block-hero-simple__content, .block-hero-simple.has-background-video .block-hero-simple__content {
    color: var(--color-primary);
}

.block-menu {
    padding: 5em 2.5em;
    background-color: #f9fbf3;
}

.block-menu__container {
    max-width: 60em;
    margin: 0 auto;
}

.block-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2em;
    margin-bottom: 3em;
    padding-bottom: 2em;
}

.block-menu__intro {
    margin: 0;
    max-width: 24em;
    text-transform: uppercase;
    color: var(--color-2, #03090D);
}

.block-menu__content {
    display: flex;
    flex-direction: column;
    gap: 5em;
}

.block-menu__category {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.block-menu__category-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1em;
}

.block-menu__category-title {
    margin: 0;
    font-family: var(--font-secondary, serif);
    font-size: 2.5em;
    font-weight: 400;
    color: var(--color-2, #03090D);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.block-menu__column {
    display: flex;
    flex-direction: column;
    gap: 2.5em;
}

.block-menu__section {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.block-menu__section-title {
    margin: 0;
    padding-top: 0.75em;
    border-top: 1px solid rgba(3, 9, 13, 0.1);
    margin-bottom: 0.75em;
    color: var(--color-2, #03090D);
    text-transform: uppercase;
    font-weight: 700;
}

.block-menu__items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.block-menu__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1em;
}

.block-menu__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3em;
}

.block-menu__item-info {
    display: flex;
    flex-direction: column;
    gap: 0.25em;
    flex: 1;
    min-width: 0;
}

.block-menu__item-name {
    font-size: 0.8125em;
    font-weight: 500;
    color: var(--color-2, #03090D);
    text-transform: capitalize;
    letter-spacing: 0.02em;
}

.block-menu__item-description {
    font-size: 0.75em;
    color: rgba(3, 9, 13, 0.6);
    line-height: 1.4;
}

.block-menu__item-description ul {
    list-style: none;
    padding-left: 2.5em;
}

.block-menu__item-description ul li::before {
    content: "";
    width: 2px;
    height: 2px;
    background: currentColor;
    border-radius: 50%;
    position: absolute;
    left: -0.6em;
    top: 50%;
    transform: translateY(-50%);
}

.block-menu__item-description ul li {
    position: relative;
}

.block-hero-simple.is-height-extended {
    min-height: 105vh;
}


.block-hero-simple.is-text-bottom.is-height-extended .block-hero-simple__content, .block-hero-simple.is-text-bottom.is-height-full .block-hero-simple__content {
    padding-bottom: 8em;
}

/**
 * Gallery Block Styles
 */

.block-gallery {
    padding: 5em 2.5em;
    background-color: var(--color-1, #F8F2E5);
}

@media screen and (max-width: 1024px) {
    .block-gallery {
        padding: 3em 0.5em;
    }
}

.block-gallery__container {
    max-width: 87.75em;
    margin: 0 auto;
}

/* Header */
.block-gallery__header {
    margin-bottom: 8.75em;
}

@media screen and (max-width: 1024px) {
    .block-gallery__header {
        margin-bottom: 2em;
    }
}

.block-gallery__title {
    margin: 0;
    color: var(--color-2, #03090D);
}

/* Main Layout */

.block-gallery__main {
    display: grid;
    grid-template-columns: 16.675em auto;
    gap: 10.1875em;
}

@media screen and (max-width: 1024px) {
    .block-gallery__main {
        grid-template-columns: 8em 1fr;
        gap: 2em;
    }
}

@media screen and (max-width: 1024px) {
    .block-gallery__main {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }
}

/* Sidebar Filters */
.block-gallery__sidebar {
    position: sticky;
    top: 6em;
    height: fit-content;
}

@media screen and (max-width: 1024px) {
    .block-gallery__sidebar {
        position: static;
    }
}

.block-gallery__filter-label {
    display: block;
    margin-bottom: 1.5em;
    color: rgba(3, 9, 13, 0.5);
}

.block-gallery__filters {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

@media screen and (max-width: 1024px) {
    .block-gallery__filters {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75em 1.5em;
    }
}

.block-gallery__filter-btn {
    background: transparent;
    border: none;
    padding: 0.25em 0;
    cursor: pointer;
    font-family: var(--font-primary, sans-serif);
    font-size: 0.875em;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-2, #03090D);
    position: relative;
    transition: color 0.3s ease, background 0.3s ease, padding 0.3s ease;
    border-radius: 0.125em;
}

.block-gallery__filter-btn.is-active {
    color: #fff;
    background: #000;
    padding: 0.25em 0.375em; 
}

.block-gallery__filter-btn--all {
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px solid rgba(0, 0, 0, .15);
    width: 100%;
    text-align: left;
}

@media screen and (max-width: 1024px) {
    .block-gallery__filter-btn--all {
        margin-top: 0;
        padding-top: 0.25em;
        border-top: none;
    }
}

/* Gallery Grid */
.block-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75em;
}

@media screen and (max-width: 1024px) {
    .block-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5em;
    }
}

.block-gallery__item {
    margin: 0;
    overflow: hidden;
    border-radius: 0.25em;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.block-gallery__item:hover {
    transform: scale(1.02);
}

.block-gallery__item.is-hidden {
    display: none;
}

.block-gallery__item.is-animating-out {
    opacity: 0;
    transform: scale(0.92);
    pointer-events: none;
}

.block-gallery__item.is-animating-in {
    opacity: 0;
    transform: translateY(1.25em);
}

.block-gallery__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1.2;
    object-fit: cover;
    display: block;
}

/* Footer */
.block-gallery__footer {
    display: flex;
    justify-content: center;
    margin-top: 3em;
}

@media screen and (max-width: 1024px) {
    .block-gallery__footer {
        margin-top: 2em;
    }
}

/* =====================
   LIGHTBOX STYLES
   ===================== */

.block-gallery__lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.block-gallery__lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.block-gallery__lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-1, #F8F2E5);
}

.block-gallery__lightbox-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 1.5em 2.5em;
}

@media screen and (max-width: 1024px) {
    .block-gallery__lightbox-container {
        padding: 1em;
    }
}

/* Lightbox Header */
.block-gallery__lightbox-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5em;
    max-width: 45em;
    background: var(--color-6);
    margin: auto auto 1.5em;
    width: 100%;
    padding: 1.5rem 2em;
    border-radius: 0.375em;
    height: 3.75em;
}


.block-gallery__lightbox-label {
    font-size: 0.6875em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-2, #03090D);
}

.block-gallery__lightbox-counter {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75em;
    font-weight: 400;
    color: var(--color-2, #03090D);
}

.block-gallery__lightbox-separator {
    margin: 0 0.25em;
    opacity: 0.5;
}

.block-gallery__lightbox-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-2, #03090D);
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
}

.block-gallery__lightbox-close:hover {
    opacity: 0.6;
}

/* Lightbox Main */
.block-gallery__lightbox-main {
    flex: 1;
    display: flex;
    gap: 1.5em;
    min-height: 0;
    overflow: hidden;
}

@media screen and (max-width: 1024px) {
    .block-gallery__lightbox-main {
        flex-direction: column;
    }
}

/* Lightbox Thumbnails - Desktop (Left side) */
.block-gallery__lightbox-thumbs {
    width: 5em;
    flex-shrink: 0;
    overflow: hidden;
    position: absolute;
    right: 0.875em;
    top: 0;
    bottom: 0;
}

@media screen and (max-width: 1024px) {
    .block-gallery__lightbox-thumbs {
        width: 100%;
        right: 0;
        bottom: 35px;
        top: auto;
    }
}

.block-gallery__lightbox-thumbs-track {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    height: 100%;
}

.block-gallery__lightbox-thumbs-track::-webkit-scrollbar {
    display: none;
}

@media screen and (max-width: 1024px) {
    .block-gallery__lightbox-thumbs-track {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
    }
}

.block-gallery__lightbox-thumb {
    flex-shrink: 0;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 0.25em;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

@media screen and (max-width: 1024px) {
    .block-gallery__lightbox-thumb {
        width: 4em;
        height: 100%;
    }
}

.block-gallery__lightbox-thumb:hover,
.block-gallery__lightbox-thumb.is-active {
    opacity: 1;
}

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

/* Lightbox Main Image */
.block-gallery__lightbox-image-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
}

@media screen and (max-width: 1024px) {
    .block-gallery__lightbox-image-wrapper {
        order: 1;
        max-height: 75%;
        width: 100%;
    }
}

.block-gallery__lightbox-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0.375em;
}

@media screen and (max-width: 1024px) {
    .block-gallery__lightbox-image {
        height: 100%;
        width: 100%;
    }
}

/* Lightbox Navigation */
.block-gallery__lightbox-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5em;
    margin-top: 1.5em;
    padding-bottom: 0.5em;
}

@media screen and (max-width: 1024px) {
    .block-gallery__lightbox-nav {
        position: absolute;
        bottom: 10em;
        left: 0;
        right: 0;
        margin-top: 0;
        padding-bottom: 0;
    }
}

.block-gallery__lightbox-prev,
.block-gallery__lightbox-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5em;
    height: 2.5em;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-2, #03090D);
    transition: opacity 0.3s ease;
    padding: 0;
}

.block-gallery__lightbox-prev:hover,
.block-gallery__lightbox-next:hover {
    opacity: 0.6;
}

.block-gallery__lightbox-prev svg,
.block-gallery__lightbox-next svg {
    width: 1.25em;
    height: auto;
}

.block-gallery__lightbox-progress {
    width: 6em;
    height: 1px;
    background-color: rgba(3, 9, 13, 0.2);
    position: relative;
    overflow: hidden;
}

.block-gallery__lightbox-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: var(--color-2, #03090D);
    transition: width 0.3s ease;
}

/**
 * Split Content Block Styles
 */

.block-split-content {
  display: flex;
  flex-direction: row;
  gap: 0;
  min-height: 100vh;
}

.block-split-content__left {
    flex: 1;
    width: 50%;
    position: relative;
    min-height: 50vh;
}

.block-split-content__right {
    flex: 1;
    width: 50%;
    background-color: var(--split-bg, var(--color-accent));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--color-primary);
    position: relative;
    overflow: hidden;
    min-height: 50vh;
}

.block-split-content.theme-accent{
  --split-bg: var(--color-accent);

}

.block-split-content.theme-blue{
  --split-bg: var(--color-5);
}

.block-split-content.theme-green{
  --split-bg: var(--color-4);
}

.block-split-content__left {
    overflow: hidden;
}

.split-gallery {
    position: relative;
    width: 100%;
    height: 100%;
}

.split-gallery__track {
    position: absolute;
    inset: 0;
}

.split-gallery__slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.split-gallery__slide.is-active {
    opacity: 1;
    visibility: visible;
}

.split-gallery__image,
.split-gallery__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-gallery__video {
    object-position: center;
}

.split-gallery__dots {
    position: absolute;
    top: 2.75em;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 0.375em;
    align-items: center;
    justify-content: center;
    width: 80%;
}

@media screen and (max-width: 1024px) {
  .split-gallery__dots {
    top: 1em;
  }
}

.split-gallery__dot {
    height: 2px;
    background: rgba(255, 255, 255, 0.53);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease;
    border-radius: 1px;
}

.split-gallery__dot.is-active {
    background: #fff;
}

.split-gallery__arrows {
    position: absolute;
    bottom: 2.75em;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 0.75em;
    align-items: center;
}

@media screen and (max-width: 1024px) {
  .split-gallery__arrows {
    bottom: 1em;
  }
}

.split-gallery__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3em;
    height: 3em;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
    padding: 0;
    border-radius: 100%;
    background-color: rgba(0, 0, 0, 0.30);
    transition: background-color 0.3s ease;
    backdrop-filter: blur(16px);
}

@media screen and (max-width: 1024px) {
  .split-gallery__arrow {
    width: 2.875em;
    height: 2.875em;
  }
}

.split-gallery__arrow:hover {
    background-color: rgba(0, 0, 0, 0.70);
}

.split-gallery__arrow svg {
    width: 1em;
    height: auto;
}

.split-content-panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.125em 1.375em 4em 1.375em;
    opacity: 0;
    visibility: hidden;
    height: 100%;
    gap: 1em;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.split-content-panel.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    flex: 1;
}

.block-split-content__top {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
}

.block-split-content__top-content {
    width: 50em;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.875em;
}

.block-split-content__bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
}

.block-split-content__bottom-content {
    width: 32em;
    max-width: 100%;
    display: flex;
    gap: 2.5em;
}

.block-split-content__bottom-col {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

@media screen and (max-width: 1024px) {
    .block-split-content {
        flex-direction: column-reverse;
    }

    .block-split-content__bottom-content {
      flex-direction: column;
      gap: 1em;
    }

    .block-split-content__left {
        width: 100%;
        aspect-ratio: 360/430;
    }

    .block-split-content__right {
        width: 100%;
        gap: 9em;
        justify-content: flex-start;
    }

    .split-content-panel {
        padding: 1.5em 0.75em 2.125em 0.75em;
    }

}

.block-split-content__bottom-content .button-light {
    color: var(--color-1);
}

.block-split-content.split-content-hero .split-content-panel{
  padding: 8.6875em 1.375em 4em 1.375em;
}

@media screen and (max-width: 1024px){
  .block-split-content__content p:not(:first-child) {
    display: none;
  }

  .block-split-content.split-content-hero .split-content-panel{
    padding: 7em 2.875em 2.875em 0.75em;
  }
}


/**
 * Map Block Styles
 */

.block-map {
    padding: 5em 2.5em;
    background-color: var(--color-1, #F8F2E5);
}

@media screen and (max-width: 1024px) {
    .block-map {
        padding: 3em 0.5em;
    }
}

.block-map__container {
    max-width: 75em;
    margin: 0 auto;
}

/* Title */
.block-map-title {
    max-width: 26em;
    width: 100%;
    margin-bottom: 3.375em;
}

.block-map__title {
    color: var(--color-2, #03090D);
    text-transform: uppercase;
}

@media screen and (max-width: 1024px) {
    .block-map__title {
        margin-bottom: 1.5em;
    }
}

.block-map__wrapper {
    position: relative;
    width: 100%;
    border-radius: 0.375em;
    overflow: hidden;
    background-color: #e8e4dc;
    border: 1px solid var(--color-4);
    height: auto; /* remove altura fixa */
}

/* se tiver iframe ainda em algum lugar, esconda ou remova o CSS do iframe */
.block-map__wrapper iframe {
  display: none;
}

.block-map__link {
  display: block;
}

.block-map__image {
  width: 100%;
  height: auto;     /* altura natural */
  display: block;
}


/**
 * Contact Block Styles
 */

.block-contact {
    position: relative;
    background: #fff; /* fundo padrÃ£o quando nÃ£o tiver mÃ­dia */
    overflow: hidden;
}

/* =====================
   BACKGROUND (IMG / VIDEO)
   ===================== */

.block-contact__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.block-contact__bg-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* overlay opcional pra legibilidade (ajuste se quiser) */
/*
.block-contact__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.35);
}
*/

/* =====================
   INNER CONTENT
   ===================== */

.block-contact__inner {
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;

    padding: 7em 9.9375em 6.625em;
}

@media screen and (max-width: 1024px) {
    .block-contact__inner {
        flex-direction: column;
        gap: 3.3125em;
        padding: 2.8125em 0.75em;
        align-items: flex-start;
    }
}

/* =====================
   TITLE / IMAGE
   ===================== */

.block-contact__title {
    max-width: 26.5em;
}

@media screen and (max-width: 1024px) {
    .block-contact__title {
        max-width: 100%;
    }
}

.block-contact__figure {
    max-width: 14.625em;
    width: 100%;
    overflow: hidden;
    border-radius: 0.375em;
    margin-top: 6.5625em;
}

@media screen and (max-width: 1024px) {
    .block-contact__figure {
        display: none;
    }
}

.block-contact__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =====================
   FORM LAYOUT
   ===================== */

.form-contact {
    max-width: 34.5em;
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .form-contact {
        max-width: 100%;
    }
}

.form-contact form {
    display: flex;
    flex-direction: column;
    gap: 2.625em;
    width: 100%;
}

/* =====================
   FLOATING LABEL FIELDS
   ===================== */

form .field {
  position: relative;
   padding-bottom: 4px;
}


form .field input,
form .field textarea {
  width: 100%;
  background: transparent;
  outline: none;
  border: 0;
  border-bottom: 1px solid var(--color-7);
  border-radius: 0;
  padding: 1.2em 0.5em 0;
  font-size: 0.875em;
  font-weight: 500;
  letter-spacing: 0.04375em;
  font-family: var(--font-primary);
  text-transform: uppercase;
  color: var(--color-2);
  resize: none;
}


form .field input::placeholder,
form .field textarea::placeholder {
  opacity: 0;
}


form .field label {
  position: absolute;
  left: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: top 220ms ease, transform 220ms ease, font-size 220ms ease, opacity 220ms ease;
  font-size: 0.875em;
  font-weight: 500;
  letter-spacing: 0.04375em;
  font-family: var(--font-primary);
  text-transform: uppercase;
  color: var(--color-2);
  opacity: 0.9;
}


form .field .description-label {
  top: 1.05em;
  transform: translateY(0);
}


form .field input:focus + label,
form .field textarea:focus + label,
form .field input:not(:placeholder-shown) + label,
form .field textarea:not(:placeholder-shown) + label,
form .field:has(input:focus) label,
form .field:has(textarea:focus) label,
form .field:has(input:not(:placeholder-shown)) label,
form .field:has(textarea:not(:placeholder-shown)) label {
  top: -6px;             
  transform: translateY(0);
  font-size: 0.7em;
  opacity: 1;
}

form .field .wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: .6em;
  font-weight: normal;
  display: block;
  position: absolute;
  top: 200%;
}


form .field input:focus,
form .field textarea:focus {
  border-bottom-color: var(--color-7);
  outline: none;
  box-shadow: none;
}

.form-contact__button input {
  font-family: var(--font-primary) !important;
}

.form-contact__button input {
  padding: 0 !important;
  font-size: 0.875em !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  color: var(--color-2) !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  transition: all .25s ease !important;
  text-align: right !important;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='10' fill='%2303090D'/%3E%3Cpath d='M5.96159 9.12923L7.52061 9.1595L12.3944 9.17464L12.8561 9.19734L12.8636 9.1595L12.2355 8.68271L9.87427 6.32149L10.4343 5.76145L14.1048 9.43195L14.1048 9.67413L10.4267 13.3522L9.87427 12.7997L12.2506 10.4234L12.8636 9.96171L12.8561 9.90874L12.3793 9.93144L7.70224 9.94658L5.96916 9.96928L5.96159 9.12923Z' fill='%23F8F2E5'/%3E%3C/svg%3E") no-repeat center right !important;
  padding-right: 2em !important;
}

.form__button {
  margin-top: 0.625em;
}

@media screen and (max-width: 1024px) {
  .form__button {
    margin-top: 1.63375em;
    display: flex;
    justify-content: flex-end;
    padding: 0 0.25em;
    margin-bottom: 4.375em;
  }
}



form .field input,
form .field textarea {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  padding: 1.2em 0.5em 0.45em;
  font-size: 0.875em;
  font-weight: 500;
  letter-spacing: 0.04375em;
  font-family: var(--font-primary);
  text-transform: uppercase;
  color: var(--color-2);
}

form .field::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;                
  width: 100%;
  height: 11px;                 
  border: 1px solid var(--color-7);
  border-top: none;
  border-radius: 0 0 0.375em 0.375em;
  pointer-events: none;
}

/* NORMAL */
form .field::after { border-color: var(--color-7); }
form .field label { color: var(--color-2); }

/* ERRO */
form .field.is-invalid::after { border-color: #e10600; }
form .field.is-invalid label { color: #e10600; }

.button-special-form {
    border: 1px solid transparent;
    padding: 0 1.9375em;
    height: 3.125em;
    line-height: 3.125em;
    border-radius: 0.375em;
    background-color: var(--color-secondary);
    color: var(--color-primary);
    font-size: 0.875em;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.button-special-form svg {
    transition: all 0.3s ease-in-out;
}

.button-special-form:hover {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.button-special-form:hover svg circle {
    fill: var(--color-secondary);
}

.button-special-form:hover svg path {
    fill: var(--color-primary);
}

/**
 * Image CTA Block Styles
 */

.block-image-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .block-image-cta {
        height: 31.4375em;
        min-height: 100% !important;
    }
}

.block-image-cta__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.block-image-cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
}

.block-image-cta__eyebrow {
    margin-bottom: 2.125em;
}

.block-image-cta__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2em;
    z-index: 3;
    color: var(--color-primary);
}

.block-image-cta__icon {
    width: auto;
    height: 3em;
    margin-bottom: 1.5em;
    object-fit: contain;
}

.block-image-cta__title {
    max-width: 14em;
    margin-bottom: 1.5em;
}

.block-image-cta__button {
    color: var(--color-primary);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    height: 3.125em;
    padding: 0px 2.5em;
    border-radius: 0.375em;
    background: transparent;
    transition:
    backdrop-filter 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.block-image-cta__button:hover {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

.block-image-cta__button svg circle {
    fill: var(--color-primary);
}

.block-image-cta__button svg path {
    fill: var(--color-secondary);
}

/* Tablet */
@media screen and (max-width: 1024px) {
    .block-image-cta__title {
        max-width: 100%;
    }
}

/* Mobile */
@media screen and (max-width: 1024px) {
    .block-image-cta {
        min-height: 100vh;
    }

    .block-image-cta__content {
        padding: 1.5em;
    }

    .block-image-cta__icon {
        height: 2.5em;
    }
}

.title-sm {
    font-size: 2em;
    font-weight: 400;
    line-height: .9;
    letter-spacing: 0.025em;
    font-family: var(--font-primary);
    text-transform: uppercase;
    color: inherit;
}

.block-slider--container .block-slider__container {
    max-width: 83.125em;
    margin: 0 auto;
}


.block-slider--container .block-slider-title {
    max-width: 91.125em;
    margin-left: auto;
    margin-right: auto;
}

.block-slider-title {
    display: flex;
    flex-direction: column;
    gap: 3.9375em;
    padding: 0 1.25em;
    margin-bottom: 1.5625em;
    max-width: 420px;
    width: 100%;
}


.block-menu__tabs {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 30px;

    margin-bottom: 50px;

    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.block-menu__tab {
    position: relative;

    padding: 14px 0;

    border: 0;
    background: transparent;

    color: inherit;

    font: inherit;
    font-size: 14px;

    text-transform: uppercase;
    letter-spacing: 0.08em;

    opacity: 0.5;

    cursor: pointer;

    transition:
        opacity 0.25s ease,
        color 0.25s ease;
}

.block-menu__tab::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -1px;

    height: 2px;

    background: currentColor;

    transform: scaleX(0);

    transform-origin: center;

    transition: transform 0.3s ease;
}

.block-menu__tab:hover {
    opacity: 0.8;
}

.block-menu__tab.is-active {
    opacity: 1;
}

.block-menu__tab.is-active::after {
    transform: scaleX(1);
}


/*
 * Menü panelleri
 */

.block-menu__menu-panel {
    display: none;
}

.block-menu__menu-panel.is-active {
    display: block;
}


/*
 * Mobilde sekmeler taşarsa
 * yatay kaydırılabilir.
 */

@media (max-width: 767px) {

    .block-menu__tabs {
        justify-content: flex-start;

        gap: 9px;

        overflow-x: auto;
        overflow-y: clip;
        margin-bottom: 35px;

        scrollbar-width: none;
    }

    .block-menu__tabs::-webkit-scrollbar {
        display: none;
    }

    .block-menu__tab {
        flex: 0 0 auto;

        white-space: nowrap;
    }
}

@media (max-width: 1024px) {
    .hero_section{
        min-height: 40vh;
    }

    .title-xl{
        font-size:3em;
    }

    .block-text-image{
        height:30vh;
    }

    .title-m{
        font-size:2em;
    }

    .block-full-image{
        height:30vh;
    }

    .block-content-intro{
        display:block;
    }

    .block-media-intro{
        display:block;
    }

    .block-media-intro__image {
        margin-top:1em;
        width:50%;
    }

    .block-card-content{
        height:50vh;
    }

    .block-card-content-box{
        width:35em;
    }

    .title-sm{
        font-size:1.5em;
    }

    .footer{
        display:block;
    }

    .footer::after{
        display:none;
    }
    .block-footer__menu-form {
        padding-top:3em;
    }

    .block-footer__menu {
        gap:2em;
    }

    .footer{
        margin:0px;
        padding:0 2.5em;
    }

    .copyright{
        margin:0px;
        padding:2.5em;
    }

    .block-split-content__right{
        min-height:30vh;
    }
    .block-split-content{
        min-height:30vh;
    }

    .block-split-content__left {
        min-height:30vh !important;
    }
    .block-header{
        max-width:35em;
        height:4.74em;
    }

    .block-hero__content{
        text-align:center;
    }
    .block-hero-simple.is-height-extended{
        min-height:30vh;
    }

    .form-contact__button input {
        padding-right:3em !important;
    }

    .block-menu__item-name{
        font-size:1.3em;
    }
    .eyebrow{
        font-size:1.4em;
    }
    .block-menu__item-price{
        font-size:1.5em;
    }
    .block-menu__grid{
        display:block;
    }
    .border-ust{
        display:none;
    }
    .sag-column{
        padding-top:1.002em;
    }
    .block-menu__item-description{
        font-size:1em;
    }
    .block-editorial-section {
        padding: 4.6875rem 1.375em 1.75rem 2.9375em;
    }

    .block-editorial-medias {
        height:30em;
    }

    .block-editorial-section__video{
        max-height:23em;
    }

    .block-editorial-section__figure{
        max-height:23em;
    }

    .block-content-intro {
        padding:2.5em;
    }
    .word{
        padding-top:5px;
    }
    .block-content-intro__right{
        padding-top:20px;
    }
    .block-content-intro__right {
        gap:1.5em;
    }
}
/* ============================================================
   EPIKA HOME RESPONSIVE V1
   Gorgoli homepage responsive stabilisation
   ============================================================ */


/* ============================================================
   TABLET / DAR MASAUSTU
   768px - 1024px
   ============================================================ */
@media (min-width: 768px) and (max-width: 1024px) {

    /* HEADER */
    .block-header {
        width: calc(100% - 2rem);
        max-width: 42rem;
        height: 3.75rem;
        top: 1rem;
    }

    .block-header__book-btn {
        font-size: 0.7rem;
        padding: 0.65rem 1rem;
    }

    .block-header__logo img {
        height: 2.25rem;
    }

    .block-header__toggle {
        padding: 1rem;
    }

    .block-header__toggle-line {
        width: 2rem;
    }


    /* HERO */
    #hero-block_5af3fa4cf2be2b0753e379d1695a0479 {
        min-height: clamp(32rem, 65svh, 42rem);
        padding: 1rem;
    }

    #hero-block_5af3fa4cf2be2b0753e379d1695a0479
    .block-hero__content {
        width: min(44rem, 90%);
        text-align: center;
    }

    #hero-block_5af3fa4cf2be2b0753e379d1695a0479
    .title-xl {
        font-size: clamp(2.8rem, 5vw, 3.6rem);
        line-height: 0.92;
    }


    /* HAKKIMIZDA */
    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5 {
        display: grid;
        grid-template-columns:
            6rem
            minmax(13rem, 19rem)
            minmax(0, 1fr);
        gap: 1.75rem;
        align-items: start;
        padding: 4rem 2rem;
    }

    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5
    .block-media-intro__left {
        width: auto;
    }

    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5
    .block-media-intro__center {
        width: 100%;
        max-width: none;
    }

    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5
    .block-media-intro__image {
        width: 100%;
        margin-top: 0;
    }

    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5
    .block-media-intro__right {
        width: 100%;
        max-width: none;
        gap: 2rem;
    }

    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5
    .title-m {
        font-size: clamp(1.8rem, 3vw, 2.3rem);
    }

    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5
    .paragraph-l {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5
    .block-media-intro__description {
        max-width: 25rem;
    }


    /* TARLADA BASLAR */
    #text-image-block_936ba8f40d184bc6099cb94950d82b72 {
        height: auto;
        min-height: clamp(30rem, 58svh, 40rem);
        padding: 2rem;
    }

    #text-image-block_936ba8f40d184bc6099cb94950d82b72
    .title-xl {
        font-size: clamp(2.6rem, 5vw, 3.5rem);
    }

    #text-image-block_936ba8f40d184bc6099cb94950d82b72
    .block-text-image__bottom-content {
        width: 22rem;
    }

    #text-image-block_936ba8f40d184bc6099cb94950d82b72
    .paragraph-l {
        font-size: 0.95rem;
        line-height: 1.4;
    }


    /* MENU: TABLETTE YAN YANA */
    #split-content-block_0f128fdfdc6fd89200c8dabee23336c4 {
        flex-direction: row;
        min-height: 34rem;
    }

    #split-content-block_0f128fdfdc6fd89200c8dabee23336c4
    .block-split-content__left {
        width: 50%;
        min-height: 34rem !important;
        aspect-ratio: auto;
    }

    #split-content-block_0f128fdfdc6fd89200c8dabee23336c4
    .block-split-content__right {
        width: 50%;
        min-height: 34rem;
        gap: 0;
    }

    #split-content-block_0f128fdfdc6fd89200c8dabee23336c4
    .split-content-panel {
        padding: 2rem 1.5rem;
    }

    #split-content-block_0f128fdfdc6fd89200c8dabee23336c4
    .title-m {
        font-size: clamp(1.7rem, 3vw, 2.2rem);
    }

    #split-content-block_0f128fdfdc6fd89200c8dabee23336c4
    .paragraph-l {
        font-size: 0.9rem;
        line-height: 1.4;
    }


    /* RESTORAN BUYUK GORSEL */
    #full-image-block_0b3b04b803701c926cd458ba9f654546 {
        height: auto;
        min-height: 30rem;
        aspect-ratio: 16 / 9;
    }


    /* GORGOLI'NIN KARELERI GIRIS */
    #content-intro-block_b0d243145757fbd552833f6897821bc2 {
        display: grid;
        grid-template-columns: minmax(8rem, 0.5fr) minmax(0, 1.5fr);
        gap: 2rem;
        padding: 4rem 2rem;
    }

    #content-intro-block_b0d243145757fbd552833f6897821bc2
    .block-content-intro__left,
    #content-intro-block_b0d243145757fbd552833f6897821bc2
    .block-content-intro__right {
        grid-column: auto;
    }

    #content-intro-block_b0d243145757fbd552833f6897821bc2
    .block-content-intro__right {
        padding-top: 0;
        gap: 2rem;
    }

    #content-intro-block_b0d243145757fbd552833f6897821bc2
    .title-m {
        font-size: clamp(1.9rem, 3.2vw, 2.4rem);
    }

    #content-intro-block_b0d243145757fbd552833f6897821bc2
    .paragraph-l {
        font-size: 0.95rem;
        line-height: 1.4;
    }


    /* ILETISIM */
    #card-content-block_283e5b29341e24fc751fe0b8451f23be {
        height: auto;
        min-height: 36rem;
    }

    #card-content-block_283e5b29341e24fc751fe0b8451f23be
    > .block-card-content {
        height: 36rem;
    }

    #card-content-block_283e5b29341e24fc751fe0b8451f23be
    .block-card-content-box {
        width: min(34rem, calc(100% - 3rem));
        height: auto;
        min-height: 15rem;
        bottom: 2rem;
        padding: 1.5rem;
    }

    #card-content-block_283e5b29341e24fc751fe0b8451f23be
    .title-sm {
        font-size: 1.4rem;
    }

    #card-content-block_283e5b29341e24fc751fe0b8451f23be
    .eyebrow {
        font-size: 0.75rem;
        line-height: 1.3;
    }


    /* FOOTER */
    .footer {
        margin: 0;
        padding: 0 2rem 3rem;
    }

    .block-footer__content {
        padding-top: 3rem;
    }

    .block-footer__figure {
        max-width: 18rem;
    }

    .block-footer__description {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}


/* ============================================================
   TELEFON
   0px - 767px
   ============================================================ */
@media (max-width: 767px) {

    /* HEADER */
    .block-header {
        width: calc(100% - 1rem);
        max-width: none;
        height: 3.35rem;
        top: 0.5rem;
    }

    .block-header__book-btn {
        font-size: 0.6rem;
        padding: 0.45rem 0.65rem;
    }

    .block-header__logo img {
        height: 1.9rem;
    }

    .block-header__toggle {
        padding: 0.7rem;
    }

    .block-header__toggle-line {
        width: 1.6rem;
    }


    /* HERO */
    #hero-block_5af3fa4cf2be2b0753e379d1695a0479 {
        min-height: clamp(21rem, 46svh, 28rem);
        padding: 0.75rem;
    }

    #hero-block_5af3fa4cf2be2b0753e379d1695a0479
    .block-hero__content {
        width: 100%;
        padding: 0 1rem;
        text-align: center;
    }

    #hero-block_5af3fa4cf2be2b0753e379d1695a0479
    .title-xl {
        font-size: clamp(1.9rem, 8vw, 2.35rem);
        line-height: 0.94;
    }


    /* HAKKIMIZDA */
    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5 {
        display: block;
        padding: 3rem 1rem 3.5rem;
    }

    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5
    .block-media-intro__left {
        width: auto;
        margin-bottom: 1.25rem;
    }

    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5
    .block-media-intro__center {
        width: min(10rem, 48vw);
        max-width: none;
    }

    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5
    .block-media-intro__image {
        width: 100%;
        margin-top: 0;
    }

    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5
    .block-media-intro__right {
        width: 100%;
        max-width: none;
        margin-top: 1.35rem;
        gap: 1.5rem;
    }

    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5
    .title-m {
        font-size: 1.55rem;
        line-height: 0.96;
    }

    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5
    .block-media-intro__bottom {
        gap: 1.5rem;
    }

    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5
    .paragraph-l {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5
    .block-media-intro__description {
        max-width: 24rem;
    }


    /* TARLADA BASLAR */
    #text-image-block_936ba8f40d184bc6099cb94950d82b72 {
        height: auto;
        min-height: 27rem;
        padding: 1.5rem 1rem 1.75rem;
    }

    #text-image-block_936ba8f40d184bc6099cb94950d82b72
    .title-xl {
        font-size: clamp(1.9rem, 8vw, 2.3rem);
        line-height: 0.94;
    }

    #text-image-block_936ba8f40d184bc6099cb94950d82b72
    .block-text-image__bottom-content {
        width: min(19rem, 88vw);
        gap: 1.2rem;
    }

    #text-image-block_936ba8f40d184bc6099cb94950d82b72
    .paragraph-l {
        font-size: 0.85rem;
        line-height: 1.4;
    }


    /* MENU */
    #split-content-block_0f128fdfdc6fd89200c8dabee23336c4 {
        flex-direction: column-reverse;
        min-height: 0;
    }

    #split-content-block_0f128fdfdc6fd89200c8dabee23336c4
    .block-split-content__left {
        width: 100%;
        min-height: 0 !important;
        aspect-ratio: 4 / 5;
    }

    #split-content-block_0f128fdfdc6fd89200c8dabee23336c4
    .block-split-content__right {
        width: 100%;
        min-height: 22rem;
        gap: 0;
    }

    #split-content-block_0f128fdfdc6fd89200c8dabee23336c4
    .split-content-panel {
        padding: 1.5rem 1rem 1.75rem;
        gap: 2rem;
    }

    #split-content-block_0f128fdfdc6fd89200c8dabee23336c4
    .title-m {
        font-size: 1.55rem;
        line-height: 0.96;
    }

    #split-content-block_0f128fdfdc6fd89200c8dabee23336c4
    .paragraph-l {
        font-size: 0.85rem;
        line-height: 1.4;
    }


    /* RESTORAN BUYUK GORSEL */
    #full-image-block_0b3b04b803701c926cd458ba9f654546 {
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
    }


    /* GORGOLI'NIN KARELERI */
    #content-intro-block_b0d243145757fbd552833f6897821bc2 {
        display: block;
        padding: 3rem 1rem;
    }

    #content-intro-block_b0d243145757fbd552833f6897821bc2
    .block-content-intro__right {
        padding-top: 1.5rem;
        gap: 1.5rem;
    }

    #content-intro-block_b0d243145757fbd552833f6897821bc2
    .title-m {
        font-size: 1.7rem;
        line-height: 0.98;
    }

    #content-intro-block_b0d243145757fbd552833f6897821bc2
    .paragraph-l {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    #content-intro-block_b0d243145757fbd552833f6897821bc2
    .block-content-intro__right-description {
        max-width: 22rem;
    }


    /* SLIDER */
    #slider-block_23330fe936c4049d13f3a1e0e810dd03 {
        padding: 3rem 0;
    }

    #slider-block_23330fe936c4049d13f3a1e0e810dd03
    .block-slider__container {
        padding: 0 1rem;
    }

    #slider-block_23330fe936c4049d13f3a1e0e810dd03
    .block-slider__slide {
        width: auto;
    }

    #slider-block_23330fe936c4049d13f3a1e0e810dd03
    .block-slider__description {
        max-width: 85%;
        font-size: 0.8rem;
        line-height: 1.35;
    }

    #slider-block_23330fe936c4049d13f3a1e0e810dd03
    .block-slider__navigation {
        margin-top: 1.75rem;
    }


    /* ILETISIM */
    #card-content-block_283e5b29341e24fc751fe0b8451f23be {
        height: auto;
        min-height: 31rem;
    }

    #card-content-block_283e5b29341e24fc751fe0b8451f23be
    > .block-card-content {
        height: 31rem;
    }

    #card-content-block_283e5b29341e24fc751fe0b8451f23be
    .block-card-content-box {
        width: calc(100% - 2rem);
        height: auto;
        min-height: 12rem;
        bottom: 1rem;
        padding: 1.15rem;
        gap: 1rem;
    }

    #card-content-block_283e5b29341e24fc751fe0b8451f23be
    .block-card-content__title-content {
        width: 46%;
    }

    #card-content-block_283e5b29341e24fc751fe0b8451f23be
    .block-card-content__description-content {
        flex: 1;
    }

    #card-content-block_283e5b29341e24fc751fe0b8451f23be
    .title-sm {
        font-size: 1.2rem;
        line-height: 1;
    }

    #card-content-block_283e5b29341e24fc751fe0b8451f23be
    .eyebrow {
        font-size: 0.68rem;
        line-height: 1.3;
    }


    /* FOOTER */
    .footer {
        display: block;
        margin: 0;
        padding: 0 1rem 2rem;
    }

    .footer::after {
        display: none;
    }

    .block-footer__content {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding-top: 2.5rem;
    }

    .block-footer__figure {
        width: 42%;
        flex: 0 0 42%;
        max-width: none;
    }

    .block-footer__figure img {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
        object-fit: cover;
    }

    .block-footer__content-description {
        flex: 1;
        padding-left: 0;
        gap: 1.25rem;
    }

    .block-footer__description {
        max-width: none;
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .block-footer__menu-form {
        display: block;
        padding-top: 3rem;
    }

    .block-footer__menu {
        width: 100%;
        gap: 1.5rem;
    }

    .copyright {
        margin: 0;
        padding: 1.5rem 1rem;
    }
}

/* ============================================================
   END EPIKA HOME RESPONSIVE V1
   ============================================================ */


/* ============================================================
   EPIKA BALLENA MOBILE V2
   Mobilde Ballena benzeri daha buyuk / immersive gorsel oranlari
   ============================================================ */

@media (max-width: 767px) {


    /* ========================================================
       1. HERO / SLIDE VIDEO
       Ballena mobil gibi neredeyse tam ekran
       ======================================================== */

    #hero-block_5af3fa4cf2be2b0753e379d1695a0479 {
        width: 100%;
        height: 100vh;
        height: 100svh;
        min-height: 100vh;
        min-height: 100svh;
        padding: 0.65rem;
    }

    #hero-block_5af3fa4cf2be2b0753e379d1695a0479
    .hero_section_video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    #hero-block_5af3fa4cf2be2b0753e379d1695a0479
    .block-hero__bg-media {
        width: 100%;
        height: 100%;
        object-fit: cover;

        /*
         * Mobilde yatay videonun merkezini koruyoruz.
         * Gerekirse daha sonra 45% / 55% gibi oynariz.
         */
        object-position: 50% 50%;

        /*
         * Blade icindeki inline scale(1.15) mobilde fazla zoom
         * yapiyor. Ballena gibi daha fazla sahne gorelim.
         */
        transform: scale(1.02) !important;
    }

    #hero-block_5af3fa4cf2be2b0753e379d1695a0479
    .block-hero__content {
        width: 100%;
        max-width: 28rem;
        padding: 0 1rem;
        text-align: center;
    }

    #hero-block_5af3fa4cf2be2b0753e379d1695a0479
    .title-xl {
        font-size: clamp(2.05rem, 8.5vw, 2.6rem);
        line-height: 0.92;
    }



    /* ========================================================
       2. HAKKIMIZDA
       Sef fotografini mevcut 160px civarindan
       Ballena benzeri daha guclu bir boyuta cikartiyoruz.
       ======================================================== */

    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5 {
        padding: 3.5rem 1rem 4.25rem;
    }

    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5
    .block-media-intro__left {
        margin-bottom: 1.5rem;
    }

    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5
    .block-media-intro__center {
        width: min(64vw, 16rem);
        max-width: none;
    }

    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5
    .block-media-intro__image {
        display: block;
        width: 100%;
        height: auto;
        margin-top: 0;
    }

    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5
    .block-media-intro__right {
        margin-top: 1.8rem;
        gap: 1.8rem;
    }

    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5
    .title-m {
        font-size: clamp(1.7rem, 6vw, 2rem);
        line-height: 0.95;
    }

    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5
    .paragraph-l {
        font-size: 0.92rem;
        line-height: 1.42;
    }



    /* ========================================================
       3. HER SEY TARLADA BASLAR
       Eski kisa banner yerine daha buyuk fotograf yuzeyi
       ======================================================== */

    #text-image-block_936ba8f40d184bc6099cb94950d82b72 {
        width: 100%;
        height: 72svh;
        min-height: 34rem;
        max-height: 46rem;

        padding:
            1.5rem
            1rem
            2rem;
    }

    #text-image-block_936ba8f40d184bc6099cb94950d82b72
    .block-card-content__figure {
        width: 100%;
        height: 100%;
    }

    #text-image-block_936ba8f40d184bc6099cb94950d82b72
    .block-card-content__figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    #text-image-block_936ba8f40d184bc6099cb94950d82b72
    .block-text-image__bottom-content {
        width: min(20rem, 90vw);
    }



    /* ========================================================
       4. MENU KIRMIZI ALAN
       ======================================================== */

    #split-content-block_0f128fdfdc6fd89200c8dabee23336c4 {
        min-height: 0;
    }

    #split-content-block_0f128fdfdc6fd89200c8dabee23336c4
    .block-split-content__right {
        width: 100%;
        min-height: 56svh;
    }

    #split-content-block_0f128fdfdc6fd89200c8dabee23336c4
    .split-content-panel {
        min-height: 56svh;
        padding: 1.5rem 1rem 2rem;
    }



    /* ========================================================
       5. MENU YEMEK FOTOGRAFI
       Ballena'daki gibi uzun fotograf
       ======================================================== */

    #split-content-block_0f128fdfdc6fd89200c8dabee23336c4
    .block-split-content__left {
        width: 100%;

        height: 72svh;
        min-height: 72svh !important;

        flex: 0 0 72svh;

        aspect-ratio: auto;
    }

    #split-content-block_0f128fdfdc6fd89200c8dabee23336c4
    .split-gallery {
        width: 100%;
        height: 100%;
    }

    #split-content-block_0f128fdfdc6fd89200c8dabee23336c4
    .split-gallery__image,
    #split-content-block_0f128fdfdc6fd89200c8dabee23336c4
    .split-gallery__video {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }



    /* ========================================================
       6. RESTORAN IC MEKAN BUYUK FOTOGRAF
       Mevcut 4:3 gorunumu kaldiriyoruz
       ======================================================== */

    #full-image-block_0b3b04b803701c926cd458ba9f654546 {
        width: 100%;

        height: 72svh;
        min-height: 32rem;
        max-height: 46rem;

        aspect-ratio: auto;
    }

    #full-image-block_0b3b04b803701c926cd458ba9f654546
    .block-full-image__figure {
        width: 100%;
        height: 100%;
    }

    #full-image-block_0b3b04b803701c926cd458ba9f654546
    .block-full-image__image {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }



    /* ========================================================
       7. GORGOLI'DEN KARELER METIN ALANI
       Buyuk fotograflar arasinda daha rahat nefes
       ======================================================== */

    #content-intro-block_b0d243145757fbd552833f6897821bc2 {
        padding: 4rem 1rem 4.5rem;
    }

    #content-intro-block_b0d243145757fbd552833f6897821bc2
    .block-content-intro__right {
        padding-top: 1.75rem;
        gap: 1.75rem;
    }



    /* ========================================================
       8. ILETISIM ARKA PLAN GORSELI
       Ballena gibi daha fotograf agirlikli
       ======================================================== */

    #card-content-block_283e5b29341e24fc751fe0b8451f23be {
        width: 100%;
        height: 76svh;
        min-height: 38rem;
        max-height: 48rem;
    }

    #card-content-block_283e5b29341e24fc751fe0b8451f23be
    > .block-card-content {
        width: 100%;
        height: 100%;
        min-height: 100%;
    }

    #card-content-block_283e5b29341e24fc751fe0b8451f23be
    .block-card-content__video {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }

    #card-content-block_283e5b29341e24fc751fe0b8451f23be
    .block-card-content-box {
        bottom: 1.25rem;
    }

}


/* Biraz daha dar telefonlar */
@media (max-width: 430px) {

    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5
    .block-media-intro__center {
        width: min(66vw, 16rem);
    }

}


/* ============================================================
   END EPIKA BALLENA MOBILE V2
   ============================================================ */



/* ============================================================
   EPIKA MOBILE CONTENT V3
   Hakkimizda ve footer/about gorsellerini tam genis mobil akisa al
   ============================================================ */

@media (max-width: 767px) {

    /* ========================================================
       HAKKIMIZDA - SEF GORSELI
       ======================================================== */

    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5 {
        display: block;
        padding: 3rem 1rem 4rem;
    }

    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5
    .block-media-intro__center {
        width: 100%;
        max-width: none;
        margin: 0;
    }

    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5
    .block-media-intro__image {
        display: block;
        width: 100%;
        height: auto;
        margin: 0;
    }

    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5
    .block-media-intro__right {
        width: 100%;
        margin-top: 3rem;
        padding: 0;
    }

    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5
    .block-media-intro__title {
        width: 100%;
        text-align: left;
        font-size: clamp(2rem, 8vw, 2.7rem);
        line-height: 0.95;
    }

    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5
    .block-media-intro__description {
        width: 100%;
        max-width: none;
    }

    #media-intro-block_c0c545923c8eb317f368b85a60cc60c5
    .paragraph-l {
        width: 100%;
        max-width: none;
        font-size: 1rem;
        line-height: 1.45;
    }


    /* ========================================================
       ALT ABOUT / GORGOLI HAKKINDA BLOGU
       FOTO YUKARIDA - METIN ALTTA
       ======================================================== */

    .block-footer__content {
        display: block;
        width: 100%;
        padding-top: 3rem;
    }

    .block-footer__figure {
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .block-footer__figure img {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: auto;
        object-fit: cover;
    }

    .block-footer__content-description {
        width: 100%;
        padding: 2rem 0 0;
        margin: 0;
    }

    .block-footer__description {
        width: 100%;
        max-width: none;
        font-size: 1rem;
        line-height: 1.45;
    }

    .block-footer__content-description .link,
    .block-footer__content-description .link-arrow {
        margin-top: 1.5rem;
    }

}


/* ============================================================
   END EPIKA MOBILE CONTENT V3
   ============================================================ */



/* ============================================================
   EPIKA MOBILE FOOTER NAV V4
   Ballena benzeri 3 kolon mobil navigation
   ============================================================ */

@media (max-width: 767px) {

    /* Footer menu bolumu */
    .block-footer__menu-form {
        display: block;
        width: 100%;
        padding-top: 3.5rem;
    }

    .block-footer__menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 2.5rem;
    }


    /* SAYFALAR basligi */
    .block-footer__eyebrow {
        display: block;
        width: 100%;
        margin: 0;
        font-size: 1rem;
        letter-spacing: 0.16em;
    }


    /* ========================================================
       3 KOLON NAVIGATION
       ======================================================== */

    .block-footer__menu-content {
        display: grid;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 0.85fr)
            minmax(0, 1.15fr);

        column-gap: 0.8rem;
        row-gap: 1.4rem;

        width: 100%;
        align-items: start;
    }


    /*
     * UL elemanlarini layouttan kaldiriyoruz.
     * LI'lar direkt grid item gibi davranacak.
     */
    .block-footer__menu-content > ul {
        display: contents !important;
        margin: 0 !important;
        padding: 0 !important;
    }


    /* Tum menu itemlari */
    .block-footer__menu-content ul li {
        display: block;
        width: auto;
        height: auto;
        margin: 0;
        padding: 0;
    }


    .block-footer__menu-content ul li a {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;

        width: max-content;
        max-width: 100%;

        font-size: 0.76rem;
        line-height: 1.1;

        letter-spacing: 0.04em;

        white-space: nowrap;
    }


    /* ========================================================
       1. KOLON
       Bezirhane
       Galeri
       Hakkimizda
       ======================================================== */

    .block-footer__menu-content > ul:first-child > li:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .block-footer__menu-content > ul:first-child > li:nth-child(3) {
        grid-column: 1;
        grid-row: 2;
    }

    .block-footer__menu-content > ul:first-child > li:nth-child(5) {
        grid-column: 1;
        grid-row: 3;
    }


    /* ========================================================
       2. KOLON
       Menu
       Iletisim
       ======================================================== */

    .block-footer__menu-content > ul:first-child > li:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .block-footer__menu-content > ul:first-child > li:nth-child(4) {
        grid-column: 2;
        grid-row: 2;
    }


    /* ========================================================
       3. KOLON
       Instagram
       Twitter
       ======================================================== */

    .block-footer__menu-content > ul:nth-child(2) > li:nth-child(1) {
        grid-column: 3;
        grid-row: 1;
    }

    .block-footer__menu-content > ul:nth-child(2) > li:nth-child(2) {
        grid-column: 3;
        grid-row: 2;
    }


    /* Sosyal medya oklarini biraz buyutelim */
    .block-footer__menu-content > ul:nth-child(2) svg {
        width: 0.65rem;
        height: 0.65rem;
        flex: 0 0 auto;
    }


    /* Footer alt copyright */
    .copyright {
        margin-top: 3.5rem;
    }

}


/* Dar telefonlarda biraz daha kompakt */
@media (max-width: 390px) {

    .block-footer__menu-content {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 0.8fr)
            minmax(0, 1.2fr);

        column-gap: 0.5rem;
    }

    .block-footer__menu-content ul li a {
        font-size: 0.7rem;
    }

}


/* ============================================================
   END EPIKA MOBILE FOOTER NAV V4
   ============================================================ */



/* ============================================================
   EPIKA MOBILE FOOTER DETAIL V5
   Footer description button + Michelin / Slow Food logos
   ============================================================ */

@media (max-width: 767px) {

    /* ========================================================
       GORGOLI HAKKINDA
       Aciklamaya daha yakin ve daha buyuk
       ======================================================== */

    .block-footer__content-description {
        gap: 0.9rem;
    }

    .block-footer__content-description
    .block-footer__button {
        margin-top: 0.35rem !important;

        font-size: 0.95rem;
        line-height: 1;

        gap: 0.65rem;

        width: fit-content;
    }

    .block-footer__content-description
    .block-footer__button svg {
        width: 1.25rem;
        height: 1.25rem;
        flex: 0 0 auto;
    }


    /* ========================================================
       MICHELIN GUIDE + SLOW FOOD
       Blade'deki inline yuzdeleri override ediyoruz
       ======================================================== */

    .block-footer__menu
    > div:first-child {
        display: flex !important;

        align-items: flex-end !important;
        justify-content: flex-start !important;

        gap: 2rem !important;

        width: 100% !important;

        margin: 0 0 0.5rem !important;
    }


    /* Michelin */
    .block-footer__menu
    > div:first-child
    > div:first-child {
        width: 31% !important;

        max-width: 9rem;

        display: flex;
        align-items: flex-end;
    }


    /* Slow Food */
    .block-footer__menu
    > div:first-child
    > div:nth-child(2) {
        width: 27% !important;

        max-width: 8rem;

        display: flex;
        align-items: flex-end;
    }


    .block-footer__menu
    > div:first-child
    > div img {
        display: block;

        width: 100% !important;
        height: auto !important;

        max-width: none !important;

        object-fit: contain;
    }


    /* Logolar ile SAYFALAR basligi arasindaki mesafe */
    .block-footer__eyebrow {
        margin-top: 0.75rem;
    }

}


/* Biraz daha dar telefon */
@media (max-width: 390px) {

    .block-footer__content-description
    .block-footer__button {
        font-size: 0.9rem;
    }

    .block-footer__menu
    > div:first-child {
        gap: 1.5rem !important;
    }

    .block-footer__menu
    > div:first-child
    > div:first-child {
        width: 34% !important;
    }

    .block-footer__menu
    > div:first-child
    > div:nth-child(2) {
        width: 29% !important;
    }

}


/* ============================================================
   END EPIKA MOBILE FOOTER DETAIL V5
   ============================================================ */



/* ============================================================
   EPIKA MOBILE CTA V6
   Galeriye Goz At + Gorgoli Hakkinda
   ============================================================ */

@media (max-width: 767px) {


    /* ========================================================
       GALERIYE GOZ AT
       ======================================================== */

    #content-intro-block_b0d243145757fbd552833f6897821bc2
    .block-content-intro__right {
        gap: 0;
    }

    #content-intro-block_b0d243145757fbd552833f6897821bc2
    .block-content-intro__right-title {
        margin-bottom: 1.75rem;
    }

    #content-intro-block_b0d243145757fbd552833f6897821bc2
    .block-content-intro__right-description {
        margin-bottom: 0.8rem;
    }

    #content-intro-block_b0d243145757fbd552833f6897821bc2
    .block-content-intro__button {
        display: inline-flex;
        width: fit-content;

        margin: 0;

        font-size: 1rem !important;
        font-weight: 600;

        gap: 0.65rem;
        align-items: center;
    }

    #content-intro-block_b0d243145757fbd552833f6897821bc2
    .block-content-intro__button svg {
        width: 1.3rem;
        height: 1.3rem;
        flex: 0 0 1.3rem;
    }


    /* ========================================================
       GORGOLI HAKKINDA
       Logolara DOKUNMUYORUZ.
       ======================================================== */

    .block-footer__content-description {
        gap: 0;
    }

    .block-footer__description {
        margin-bottom: 0.8rem;
    }

    .block-footer__content-description
    .block-footer__button {
        display: inline-flex;
        width: fit-content;

        margin: 0 !important;

        font-size: 1rem !important;
        font-weight: 600;
        line-height: 1;

        gap: 0.65rem;
        align-items: center;
    }

    .block-footer__content-description
    .block-footer__button svg {
        width: 1.3rem;
        height: 1.3rem;
        flex: 0 0 1.3rem;
    }

}


/* Dar telefonlarda da okunabilir boyutta kalsin */
@media (max-width: 390px) {

    #content-intro-block_b0d243145757fbd552833f6897821bc2
    .block-content-intro__button,

    .block-footer__content-description
    .block-footer__button {
        font-size: 0.95rem !important;
    }

}


/* ============================================================
   END EPIKA MOBILE CTA V6
   ============================================================ */



/* ============================================================
   EPIKA BALLENA MOBILE MENU V7
   Ballena referansina yakin mobil fullscreen menu
   ============================================================ */

@media (max-width: 767px) {


    /* ========================================================
       HEADER
       ======================================================== */

    .block-header {
        width: calc(100% - 1.5rem);
        max-width: none;

        top: 0.5rem;

        height: 3.25rem;

        padding: 0.18rem;

        border-radius: 0.5rem;
    }


    /* Menu acilinca header beyaz */
    .block-header.is-menu-open {
        background-color: #FFFEFD;

        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }


    /* ========================================================
       REZERVASYON
       ======================================================== */

    .block-header.is-menu-open
    .block-header__book-btn {
        height: calc(100% - 0.4rem);

        margin-left: 0.2rem;

        padding: 0 0.7rem;

        color: #03090D;
        background: transparent;

        border: 1px solid #03090D;
        border-radius: 0.25rem;

        font-size: 0.82rem;
        font-weight: 500;
        letter-spacing: 0.05em;
    }


    /* ========================================================
       LOGO
       Menu acikken beyaz logoyu siyaha ceviriyoruz
       ======================================================== */

    .block-header.is-menu-open
    .block-header__logo img {
        height: 2rem;

        filter: brightness(0);
    }


    /* ========================================================
       MENU / X BUTONU
       ======================================================== */

    .block-header.is-menu-open
    .block-header__toggle {
        width: 3rem;
        height: calc(100% - 0.35rem);

        margin-right: 0.15rem;

        padding: 0.55rem;

        border: 1px solid #03090D;
        border-radius: 0.35rem;

        background: transparent;

        outline: none;
    }


    .block-header.is-menu-open
    .block-header__toggle-line {
        width: 1.9rem;

        background-color: #03090D;
    }


    .block-header.is-menu-open
    .block-header__toggle:focus-visible {
        outline: 2px solid #03090D;
        outline-offset: 2px;
    }


    /* ========================================================
       BEYAZ MENU PANELI
       ======================================================== */

    .block-header__menu {
        top: calc(100% + 0.4rem);

        width: 100%;

        background-color: #FFFEFD;

        border-radius: 0.55rem;

        overflow: hidden;
    }


    .block-header.is-menu-open
    .block-header__menu {
        overflow-x: hidden;
        overflow-y: auto;
    }


    .block-header__menu-container {
        width: 100%;

        padding: 0.7rem;
    }


    /*
     * Bu min-height kritik.
     *
     * GSAP menu height'ini "auto" olarak aciyor.
     * Inner alanini ekran yuksekligine yaklastirinca
     * menu otomatik olarak Ballena gibi neredeyse
     * tum viewport'u kapliyor.
     */
    .block-header__menu-inner {
        position: relative;

        width: 100%;

        min-height: calc(100svh - 6.45rem);

        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;

        padding:
            6.15rem
            1rem
            1.25rem;

        gap: 0;
    }


    /* ========================================================
       MOBIL MENUDE GORSEL YOK
       Ballena referansindaki gibi.
       Desktop'ta etkilenmez.
       ======================================================== */

    .block-header__menu
    .header-image {
        display: none !important;
    }


    /* ========================================================
       ANA MENU LINKLERI
       ======================================================== */

    .block-header__nav {
        display: flex;
        flex-direction: column;

        align-items: center;
        justify-content: flex-start;

        gap: 1.75rem;

        width: 100%;

        margin: 0;
        padding: 0;
    }


    .block-header__nav > li {
        overflow: visible;

        margin: 0;
        padding: 0;
    }


    /*
     * Son LI = TR | EN.
     * Onu asagida ayri konumlandiracagiz.
     */
    .block-header__nav
    > li:not(:last-child)
    > a {
        display: inline-flex;

        align-items: center;
        justify-content: center;

        color: #03090D;

        font-size: 1.12rem;
        font-weight: 500;

        line-height: 1.1;

        letter-spacing: 0.075em;

        text-transform: uppercase;

        text-decoration: none;
    }


    /* ========================================================
       TR | EN
       Ana navigation akisindan cikartiyoruz.
       Fonksiyon kalmaya devam ediyor.
       ======================================================== */

    .block-header__nav
    > li:last-child {
        position: absolute;

        right: 1.15rem;
        bottom: 1rem;

        display: flex;

        align-items: center;
        justify-content: center;

        gap: 0.3rem;
    }


    .block-header__nav
    > li:last-child
    > a {
        display: inline-flex;

        align-items: center;

        color: #03090D;

        font-size: 0.68rem;
        font-weight: 500;

        line-height: 1;

        letter-spacing: 0.06em;

        text-transform: uppercase;
    }


    .block-header__nav
    > li:last-child
    > a.active {
        font-weight: 700;
    }


    /* ========================================================
       INSTAGRAM / TWITTER
       ======================================================== */

    .block-header__social {
        display: flex;
        flex-direction: column;

        align-items: flex-start;
        justify-content: flex-start;

        gap: 1.1rem;

        margin-top: 3rem;
    }


    .block-header__social a {
        display: inline-flex;

        align-items: center;

        gap: 0.45rem;

        color: #03090D;

        font-size: 1rem;
        font-weight: 500;

        line-height: 1;

        letter-spacing: 0.075em;

        text-transform: uppercase;
    }


    .block-header__social svg {
        width: 0.7rem;
        height: 0.7rem;
    }

}



/* ============================================================
   390px ve daha dar telefon
   ============================================================ */

@media (max-width: 390px) {

    .block-header__menu-inner {
        padding-top: 5.5rem;
    }


    .block-header__nav {
        gap: 1.55rem;
    }


    .block-header__nav
    > li:not(:last-child)
    > a {
        font-size: 1.02rem;
    }


    .block-header__social {
        margin-top: 2.65rem;

        gap: 1rem;
    }


    .block-header__social a {
        font-size: 0.92rem;
    }


    .block-header.is-menu-open
    .block-header__book-btn {
        font-size: 0.75rem;

        padding-left: 0.55rem;
        padding-right: 0.55rem;
    }

}


/* ============================================================
   END EPIKA BALLENA MOBILE MENU V7
   ============================================================ */



/* ============================================================
   EPIKA MOBILE RESERVATION SIZE V8
   ============================================================ */

@media (max-width: 767px) {

    .block-header.is-menu-open
    .block-header__book-btn {
        font-size: 0.68rem !important;
        letter-spacing: 0.045em;
        padding-left: 0.65rem;
        padding-right: 0.65rem;
    }

}


/* ============================================================
   END EPIKA MOBILE RESERVATION SIZE V8
   ============================================================ */



/* ============================================================
   EPIKA MOBILE RESERVATION SIZE V9
   ============================================================ */

@media (max-width: 767px) {

    .block-header.is-menu-open
    .block-header__book-btn {
        font-size: 0.58rem !important;
        letter-spacing: 0.035em !important;

        padding-left: 0.48rem !important;
        padding-right: 0.48rem !important;

        white-space: nowrap;
    }

}


/* ============================================================
   END EPIKA MOBILE RESERVATION SIZE V9
   ============================================================ */



/* ============================================================
   EPIKA GALLERY MOBILE V10
   Ballena referansli mobil galeri
   ============================================================ */

@media (max-width: 767px) {


    /* ========================================================
       GALERI HERO
       Ballena gibi tam ekran / immersive
       ======================================================== */

    #hero-simple-block_45a4eae4cb481360203afdab4279d575 {
        width: 100%;

        height: 100vh;
        height: 100svh;

        min-height: 100vh;
        min-height: 100svh;

        display: flex;

        align-items: center !important;
        justify-content: center;

        text-align: center;
    }


    #hero-simple-block_45a4eae4cb481360203afdab4279d575
    .block-hero-simple__background {
        width: 100%;
        height: 100%;

        object-fit: cover;

        /*
         * Kadraji biraz asagi aliyoruz.
         * Sonra gerekirse tek tek oynariz.
         */
        object-position: center 55%;
    }


    #hero-simple-block_45a4eae4cb481360203afdab4279d575
    .block-hero-simple__overlay {
        background:
            linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.12) 0%,
                rgba(0, 0, 0, 0.18) 45%,
                rgba(0, 0, 0, 0.35) 100%
            );
    }


    #hero-simple-block_45a4eae4cb481360203afdab4279d575
    .block-hero-simple__content {
        width: 100%;
        max-width: 23rem;

        padding: 0 1.25rem !important;

        gap: 0.9rem;

        align-items: center;

        /*
         * Mevcut is-text-bottom stilini iptal ediyor.
         */
        padding-bottom: 0 !important;
    }


    /* GALERI eyebrow */
    #hero-simple-block_45a4eae4cb481360203afdab4279d575
    .block-hero-simple__eyebrow {
        font-size: 0.72rem !important;

        font-weight: 500;

        line-height: 1;

        letter-spacing: 0.08em;

        color: #fff;
    }


    /* GORGOLI'DEN KARELER */
    #hero-simple-block_45a4eae4cb481360203afdab4279d575
    .block-hero-simple__title {
        width: 100%;
        max-width: 19rem;

        margin: 0 auto;

        font-size: clamp(2rem, 8.5vw, 2.5rem) !important;

        line-height: 0.91 !important;

        letter-spacing: 0.035em;

        font-weight: 400;

        color: #fff;
    }



    /* ========================================================
       GALERI ANA ALAN
       ======================================================== */

    #gallery-block_98696e4f905d3999ed7e5261cc6fbeb5 {
        padding:
            2.75rem
            0.75rem
            3.25rem;
    }


    #gallery-block_98696e4f905d3999ed7e5261cc6fbeb5
    .block-gallery__container {
        width: 100%;

        max-width: none;
    }



    /* ========================================================
       GORGOLI'YI KESFEDIN
       ======================================================== */

    #gallery-block_98696e4f905d3999ed7e5261cc6fbeb5
    .block-gallery__header {
        margin-bottom: 1.4rem;
    }


    #gallery-block_98696e4f905d3999ed7e5261cc6fbeb5
    .block-gallery__title {
        margin: 0;

        font-size: 1.4rem !important;

        font-weight: 400;

        line-height: 1 !important;

        letter-spacing: 0.025em;

        color: #03090D;
    }



    /* ========================================================
       MAIN
       ======================================================== */

    #gallery-block_98696e4f905d3999ed7e5261cc6fbeb5
    .block-gallery__main {
        display: grid;

        grid-template-columns: 1fr;

        gap: 1.25rem;
    }



    /* ========================================================
       FILTRE BASLIGI
       ======================================================== */

    #gallery-block_98696e4f905d3999ed7e5261cc6fbeb5
    .block-gallery__sidebar {
        position: static;

        width: 100%;
    }


    #gallery-block_98696e4f905d3999ed7e5261cc6fbeb5
    .block-gallery__filter-label {
        display: block;

        margin-bottom: 0.9rem;

        font-size: 0.68rem !important;

        line-height: 1;

        letter-spacing: 0.09em;

        color: rgba(3, 9, 13, 0.55);
    }



    /* ========================================================
       FILTRE BUTTONLARI
       ======================================================== */

    #gallery-block_98696e4f905d3999ed7e5261cc6fbeb5
    .block-gallery__filters {
        display: flex;

        flex-direction: row;
        flex-wrap: wrap;

        align-items: center;

        gap:
            0.65rem
            1rem;

        margin: 0;

        padding: 0;
    }


    #gallery-block_98696e4f905d3999ed7e5261cc6fbeb5
    .block-gallery__filter-btn {
        display: inline-flex;

        align-items: center;

        width: auto;

        margin: 0;

        padding: 0.3rem 0;

        border: none;

        border-radius: 0.1rem;

        font-size: 0.68rem !important;

        font-weight: 400;

        line-height: 1;

        letter-spacing: 0.055em;

        white-space: nowrap;

        color: #03090D;

        background: transparent;
    }


    /* Aktif kategori */
    #gallery-block_98696e4f905d3999ed7e5261cc6fbeb5
    .block-gallery__filter-btn.is-active {
        padding:
            0.31rem
            0.48rem;

        color: #fff;

        background-color: #03090D;
    }


    /* Tumunu gor / view all */
    #gallery-block_98696e4f905d3999ed7e5261cc6fbeb5
    .block-gallery__filter-btn--all {
        width: auto;

        margin: 0;

        padding-top: 0.3rem;

        border-top: 0;

        text-align: left;
    }


    #gallery-block_98696e4f905d3999ed7e5261cc6fbeb5
    .block-gallery__filter-btn--all.is-active {
        padding:
            0.31rem
            0.48rem;
    }



    /* ========================================================
       GALERI GRID
       Ballena gibi 2 kolon / daha kare fotograflar
       ======================================================== */

    #gallery-block_98696e4f905d3999ed7e5261cc6fbeb5
    .block-gallery__grid {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 0.35rem;

        width: 100%;
    }


    #gallery-block_98696e4f905d3999ed7e5261cc6fbeb5
    .block-gallery__item {
        width: 100%;

        aspect-ratio: 1 / 1.05;

        margin: 0;

        border-radius: 0.2rem;

        overflow: hidden;
    }


    #gallery-block_98696e4f905d3999ed7e5261cc6fbeb5
    .block-gallery__image {
        display: block;

        width: 100%;
        height: 100%;

        aspect-ratio: auto;

        object-fit: cover;

        object-position: center;
    }


    /* Mobilde hover zoom istemiyoruz */
    #gallery-block_98696e4f905d3999ed7e5261cc6fbeb5
    .block-gallery__item:hover {
        transform: none;
    }



    /* ========================================================
       DAHA FAZLA
       ======================================================== */

    #gallery-block_98696e4f905d3999ed7e5261cc6fbeb5
    .block-gallery__footer {
        display: flex;

        justify-content: center;

        margin-top: 2rem;
    }


    #gallery-block_98696e4f905d3999ed7e5261cc6fbeb5
    .block-gallery__view-more {
        display: inline-flex;

        align-items: center;
        justify-content: center;

        gap: 0.65rem;

        width: fit-content;

        padding: 0.35rem 0;

        font-size: 0.9rem !important;

        font-weight: 500;

        line-height: 1;

        letter-spacing: 0.035em;

        color: #03090D;
    }


    #gallery-block_98696e4f905d3999ed7e5261cc6fbeb5
    .block-gallery__view-more svg {
        width: 1.35rem;
        height: 1.35rem;

        flex: 0 0 1.35rem;
    }


    /* Ballena benzeri siyah yuvarlak ok */
    #gallery-block_98696e4f905d3999ed7e5261cc6fbeb5
    .block-gallery__view-more svg circle {
        fill: #03090D !important;
    }


    #gallery-block_98696e4f905d3999ed7e5261cc6fbeb5
    .block-gallery__view-more svg path {
        fill: #F8F2E5 !important;
    }

}


/* ============================================================
   DAR TELEFON
   ============================================================ */

@media (max-width: 390px) {

    #hero-simple-block_45a4eae4cb481360203afdab4279d575
    .block-hero-simple__title {
        font-size: 1.95rem !important;

        max-width: 17rem;
    }


    #gallery-block_98696e4f905d3999ed7e5261cc6fbeb5
    .block-gallery__title {
        font-size: 1.3rem !important;
    }


    #gallery-block_98696e4f905d3999ed7e5261cc6fbeb5
    .block-gallery__filter-btn {
        font-size: 0.64rem !important;
    }

}


/* ============================================================
   END EPIKA GALLERY MOBILE V10
   ============================================================ */



/* ============================================================
   EPIKA INNER PAGES MOBILE V11
   HAKKIMIZDA + ILETISIM
   ============================================================ */

@media (max-width: 767px) {


    /* ========================================================
       HAKKIMIZDA
       HERO
       ======================================================== */

    #hero-simple-block_80812f18211462e9be1c3bfc8119c719 {
        width: 100%;
        min-height: 52svh;

        padding:
            6rem
            1rem
            3rem;

        display: flex;
        align-items: center;
        justify-content: center;
    }


    #hero-simple-block_80812f18211462e9be1c3bfc8119c719
    .block-hero-simple__content {
        width: 100%;
        max-width: 24rem;

        padding: 0;

        gap: 1.35rem;
    }


    #hero-simple-block_80812f18211462e9be1c3bfc8119c719
    .block-hero-simple__eyebrow {
        font-size: 0.75rem !important;
        line-height: 1;
        letter-spacing: 0.09em;
    }


    #hero-simple-block_80812f18211462e9be1c3bfc8119c719
    .block-hero-simple__title {
        font-size: clamp(2rem, 8vw, 2.55rem) !important;

        line-height: 0.96 !important;
        letter-spacing: 0.035em;
    }



    /* ========================================================
       HAKKIMIZDA
       ILK BUYUK FOTOGRAF
       ======================================================== */

    #full-image-block_e026f429ee4837bae4dd59bc1bae17ae {
        width: 100%;

        height: 72svh;
        min-height: 34rem;
        max-height: 48rem;
    }


    #full-image-block_e026f429ee4837bae4dd59bc1bae17ae
    .block-full-image__figure {
        width: 100%;
        height: 100%;
    }


    #full-image-block_e026f429ee4837bae4dd59bc1bae17ae
    .block-full-image__image {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;

        transform: none !important;
    }



    /* ========================================================
       ILHAMIMIZ GORGOLI'DEN
       ======================================================== */

    #editorial-section-block_7a52415eaac0a08eb2e0de4287b8e074 {
        padding:
            4.5rem
            1rem
            4.75rem;
    }


    #editorial-section-block_7a52415eaac0a08eb2e0de4287b8e074
    .block-editorial-section__title-section {
        gap: 2rem;
        margin-bottom: 3.5rem;
    }


    #editorial-section-block_7a52415eaac0a08eb2e0de4287b8e074
    .block-editorial-section__title {
        width: 100%;
        max-width: 23rem;

        font-size: clamp(1.9rem, 7.2vw, 2.35rem) !important;

        line-height: 0.96 !important;
    }


    /* Iki minik kolon yerine mobilde alt alta */
    #editorial-section-block_7a52415eaac0a08eb2e0de4287b8e074
    .block-editorial-section__description-section {
        width: 100%;
        max-width: none;

        align-items: stretch;
    }


    #editorial-section-block_7a52415eaac0a08eb2e0de4287b8e074
    .block-editorial-section__description-text {
        display: flex;

        flex-direction: column;
        justify-content: flex-start;

        width: 100%;

        gap: 1.35rem;
    }


    #editorial-section-block_7a52415eaac0a08eb2e0de4287b8e074
    .block-editorial-section__description {
        width: 100%;

        justify-content: flex-start;
    }


    #editorial-section-block_7a52415eaac0a08eb2e0de4287b8e074
    .block-editorial-section__description p {
        width: 100%;
        max-width: none;

        margin: 0;

        font-size: 1rem;
        line-height: 1.45;
    }



    /* ========================================================
       HAKKIMIZDA - IKILI FOTOGRAF
       Mevcut minik fotograflari buyutuyoruz.
       ======================================================== */

    #editorial-section-block_7a52415eaac0a08eb2e0de4287b8e074
    .block-editorial-medias {
        display: grid;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 0.82fr);

        gap: 0.75rem;

        width: 100%;

        height: 64svh;
        min-height: 31rem;
        max-height: 43rem;
    }


    #editorial-section-block_7a52415eaac0a08eb2e0de4287b8e074
    .block-editorial-section__video {
        display: block;

        width: 100%;
        height: 100%;

        max-height: none;

        object-fit: cover;
        object-position: center;

        border-radius: 0.35rem;
    }


    #editorial-section-block_7a52415eaac0a08eb2e0de4287b8e074
    .video-area {
        width: 100%;
        height: 100%;

        align-items: stretch;
    }


    #editorial-section-block_7a52415eaac0a08eb2e0de4287b8e074
    .block-editorial-section__figure {
        width: 100%;
        height: 100%;

        max-height: none;
    }


    #editorial-section-block_7a52415eaac0a08eb2e0de4287b8e074
    .block-editorial-section__image {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }



    /* ========================================================
       HAKKIMIZDA
       EMEGE SAYGI / MUTFAK KULTURU / EKIP RUHU
       ======================================================== */

    #content-intro-block_2200803e57362a6d69b6e4d5c18bdb11 {
        display: block;

        width: 100%;

        padding:
            4rem
            1rem
            4.5rem;
    }


    #content-intro-block_2200803e57362a6d69b6e4d5c18bdb11
    .block-content-intro__left {
        width: 100%;
    }


    #content-intro-block_2200803e57362a6d69b6e4d5c18bdb11
    .block-content-intro__right {
        width: 100%;

        padding-top: 1.75rem;

        gap: 1.5rem;
    }


    #content-intro-block_2200803e57362a6d69b6e4d5c18bdb11
    .block-content-intro__right-title {
        width: 100%;
        max-width: 23rem;

        margin: 0;

        font-size: clamp(1.7rem, 6.5vw, 2.05rem) !important;

        line-height: 0.98 !important;
    }


    #content-intro-block_2200803e57362a6d69b6e4d5c18bdb11
    .block-editorial-section__description-section {
        width: 100%;
        max-width: none;

        align-items: stretch !important;
    }


    #content-intro-block_2200803e57362a6d69b6e4d5c18bdb11
    .block-editorial-section__description-text {
        display: flex;

        flex-direction: column;

        width: 100%;

        gap: 1.35rem;
    }


    #content-intro-block_2200803e57362a6d69b6e4d5c18bdb11
    .block-editorial-section__description {
        width: 100%;

        justify-content: flex-start;
    }


    #content-intro-block_2200803e57362a6d69b6e4d5c18bdb11
    .block-editorial-section__description p {
        width: 100%;
        max-width: none;

        margin: 0;

        font-size: 1rem;
        line-height: 1.45;
    }



    /* ========================================================
       HAKKIMIZDA
       IKINCI BUYUK FOTOGRAF
       ======================================================== */

    #full-image-block_341205516f21d9eaafe404ae1b1f0d0f {
        width: 100%;

        height: 70svh;
        min-height: 33rem;
        max-height: 47rem;
    }


    #full-image-block_341205516f21d9eaafe404ae1b1f0d0f
    .block-full-image__figure {
        width: 100%;
        height: 100%;
    }


    #full-image-block_341205516f21d9eaafe404ae1b1f0d0f
    .block-full-image__image {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;

        transform: none !important;
    }



    /* ========================================================
       ILETISIM
       UST ALTIN PANEL
       ======================================================== */

    #split-content-block_38bcc1936fa9b6e364520e2809140d70 {
        display: flex;

        flex-direction: column-reverse;

        width: 100%;

        min-height: 0;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__right {
        width: 100%;

        min-height: 30rem;

        gap: 0;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .split-content-panel {
        width: 100%;

        min-height: 30rem;

        padding:
            6rem
            1rem
            2.25rem !important;

        gap: 2rem;

        justify-content: space-between;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__top-content {
        width: 100%;

        gap: 1.25rem;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__eyebrow {
        font-size: 0.75rem !important;

        line-height: 1;
        letter-spacing: 0.08em;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__title {
        width: 100%;
        max-width: 22rem;

        font-size: clamp(1.85rem, 7vw, 2.25rem) !important;

        line-height: 0.96 !important;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__bottom-content {
        display: flex;

        flex-direction: column;

        width: 100%;
        max-width: none;

        gap: 1.4rem;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__bottom-col {
        width: 100%;

        gap: 1rem;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .paragraph-l {
        font-size: 0.95rem !important;

        line-height: 1.4;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__button {
        display: inline-flex;

        width: fit-content;

        align-items: center;

        gap: 0.65rem;

        margin-top: 0.25rem;

        font-size: 0.92rem !important;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__button svg {
        width: 1.3rem;
        height: 1.3rem;
    }



    /* ========================================================
       ILETISIM
       UST BUYUK DIS MEKAN FOTOGRAFI
       ======================================================== */

    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__left {
        width: 100%;

        height: 70svh;

        min-height: 34rem !important;
        max-height: 47rem;

        aspect-ratio: auto;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .split-gallery,
    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .split-gallery__track,
    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .split-gallery__slide {
        width: 100%;
        height: 100%;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .split-gallery__image {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }



    /* ========================================================
       ILETISIM FORM
       ======================================================== */

    #contact-block_8ce7d3490c612286498129e05124823c
    .block-contact__inner {
        display: flex;

        flex-direction: column;

        width: 100%;

        gap: 3rem;

        padding:
            4rem
            1rem
            4.5rem;

        align-items: stretch;
    }


    #contact-block_8ce7d3490c612286498129e05124823c
    .block-contact__title {
        width: 100%;
        max-width: none;
    }


    #contact-block_8ce7d3490c612286498129e05124823c
    h2.block-contact__title {
        width: 100%;
        max-width: 23rem;

        margin: 0;

        font-size: clamp(1.7rem, 6.5vw, 2.05rem) !important;

        line-height: 0.98 !important;
    }



    /*
     * Mevcut CSS mobilde bunu display:none yapiyor.
     * Ballena Location mantigina yakin olarak geri getiriyoruz.
     */
    #contact-block_8ce7d3490c612286498129e05124823c
    .block-contact__figure {
        display: block;

        width: 100%;
        max-width: none;

        height: 58svh;
        min-height: 28rem;
        max-height: 39rem;

        margin-top: 2rem;

        border-radius: 0.35rem;

        overflow: hidden;
    }


    #contact-block_8ce7d3490c612286498129e05124823c
    .block-contact__image {
        display: block;

        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }



    /* FORM GENEL */
    #contact-block_8ce7d3490c612286498129e05124823c
    .form-contact {
        width: 100%;
        max-width: none;
    }


    #contact-block_8ce7d3490c612286498129e05124823c
    .form-contact form {
        width: 100%;

        gap: 1.6rem;
    }


    #contact-block_8ce7d3490c612286498129e05124823c
    .field {
        width: 100%;

        padding: 0;
    }


    #contact-block_8ce7d3490c612286498129e05124823c
    .field p {
        position: relative;

        width: 100%;

        margin: 0;
    }


    #contact-block_8ce7d3490c612286498129e05124823c
    .field br {
        display: none;
    }


    #contact-block_8ce7d3490c612286498129e05124823c
    .field input {
        width: 100%;
        height: 3.6rem;

        padding:
            1.25rem
            0.25rem
            0.35rem;

        font-size: 0.9rem;
    }


    #contact-block_8ce7d3490c612286498129e05124823c
    .field textarea {
        width: 100%;
        height: 9rem;
        min-height: 9rem;

        padding:
            1.5rem
            0.25rem
            0.5rem;

        font-size: 0.9rem;
    }


    #contact-block_8ce7d3490c612286498129e05124823c
    .field label {
        left: 0.25rem;

        font-size: 0.76rem;

        letter-spacing: 0.045em;
    }


    #contact-block_8ce7d3490c612286498129e05124823c
    .field .description-label {
        top: 0.45rem;
    }


    #contact-block_8ce7d3490c612286498129e05124823c
    .form-contact__button {
        display: flex;

        justify-content: flex-end;

        margin-top: 0.5rem;
    }


    #contact-block_8ce7d3490c612286498129e05124823c
    .form-contact__button p {
        margin: 0;
    }


    #contact-block_8ce7d3490c612286498129e05124823c
    .form-contact__button input {
        font-size: 0.95rem !important;

        padding-right: 2rem !important;
    }



    /* ========================================================
       HARITA
       ======================================================== */

    #map-block_2bf82384eb9142c9d78ec39393c1528d {
        padding:
            4rem
            1rem
            4.5rem;
    }


    #map-block_2bf82384eb9142c9d78ec39393c1528d
    .block-map__container {
        width: 100%;
        max-width: none;
    }


    #map-block_2bf82384eb9142c9d78ec39393c1528d
    .block-map-title {
        width: 100%;
        max-width: 24rem;

        margin-bottom: 2rem;
    }


    #map-block_2bf82384eb9142c9d78ec39393c1528d
    .block-map__title {
        width: 100%;

        margin: 0;

        font-size: clamp(1.8rem, 7vw, 2.2rem) !important;

        line-height: 0.96 !important;
    }


    #map-block_2bf82384eb9142c9d78ec39393c1528d
    iframe {
        display: block;

        width: 100% !important;

        height: 64svh !important;

        min-height: 31rem;
        max-height: 42rem;

        border: 0 !important;

        border-radius: 0.35rem;
    }

}


/* ============================================================
   DAR TELEFONLAR
   ============================================================ */

@media (max-width: 390px) {

    #hero-simple-block_80812f18211462e9be1c3bfc8119c719
    .block-hero-simple__title {
        font-size: 1.9rem !important;
    }


    #editorial-section-block_7a52415eaac0a08eb2e0de4287b8e074
    .block-editorial-medias {
        height: 58svh;
        min-height: 28rem;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__title {
        font-size: 1.75rem !important;
    }

}


/* ============================================================
   END EPIKA INNER PAGES MOBILE V11
   ============================================================ */



/* ============================================================
   EPIKA ABOUT STACKED IMAGES V12
   Hakkimizda - mobilde ikili gorseller alt alta
   ============================================================ */

@media (max-width: 767px) {

    #editorial-section-block_7a52415eaac0a08eb2e0de4287b8e074
    .block-editorial-medias {
        display: flex !important;
        flex-direction: column !important;

        width: 100% !important;

        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;

        gap: 1rem !important;
    }


    /* Birinci gorsel / video alani */
    #editorial-section-block_7a52415eaac0a08eb2e0de4287b8e074
    .video-area {
        display: block !important;

        width: 100% !important;
        height: auto !important;

        min-height: 0 !important;
        max-height: none !important;
    }


    #editorial-section-block_7a52415eaac0a08eb2e0de4287b8e074
    .block-editorial-section__video {
        display: block !important;

        width: 100% !important;

        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;

        aspect-ratio: 4 / 5;

        object-fit: cover;
        object-position: center;

        border-radius: 0.35rem;
    }


    /* Ikinci gorsel */
    #editorial-section-block_7a52415eaac0a08eb2e0de4287b8e074
    .block-editorial-section__figure {
        display: block !important;

        width: 100% !important;

        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;

        margin: 0 !important;
    }


    #editorial-section-block_7a52415eaac0a08eb2e0de4287b8e074
    .block-editorial-section__image {
        display: block !important;

        width: 100% !important;

        height: auto !important;

        aspect-ratio: 4 / 5;

        object-fit: cover;
        object-position: center;

        border-radius: 0.35rem;
    }

}


/* ============================================================
   END EPIKA ABOUT STACKED IMAGES V12
   ============================================================ */



/* ============================================================
   EPIKA CONTACT HERO MOBILE V13
   Mobil iletisim: once hero, sonra bilgiler
   ============================================================ */

@media (max-width: 767px) {

    /* ========================================================
       ANA ILETISIM BOLUMU
       ======================================================== */

    #split-content-block_38bcc1936fa9b6e364520e2809140d70 {
        position: relative;

        display: flex !important;
        flex-direction: column !important;

        width: 100%;
        min-height: 0;

        overflow: visible;
    }


    /* ========================================================
       HERO FOTOGRAF
       ======================================================== */

    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__left {
        position: relative;

        order: 1;

        width: 100% !important;

        height: 78svh !important;
        min-height: 36rem !important;
        max-height: 48rem !important;

        aspect-ratio: auto !important;

        overflow: hidden;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .split-gallery,
    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .split-gallery__track,
    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .split-gallery__slide {
        width: 100%;
        height: 100%;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .split-gallery__slide {
        position: relative;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .split-gallery__slide::after {
        content: "";

        position: absolute;
        inset: 0;

        z-index: 1;

        pointer-events: none;

        background:
            linear-gradient(
                to bottom,
                rgba(0,0,0,0.12) 0%,
                rgba(0,0,0,0.08) 35%,
                rgba(0,0,0,0.38) 100%
            );
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .split-gallery__image {
        display: block;

        width: 100%;
        height: 100%;

        object-fit: cover;

        /* Binayi mobilde daha iyi kadrajlar */
        object-position: 43% center;

        transform: none !important;
    }



    /* ========================================================
       SAG PANEL / BILGILER
       Hero'nun ALTINDA
       ======================================================== */

    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__right {
        position: static;

        order: 2;

        width: 100% !important;

        min-height: 0 !important;

        background: #ad8738;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .split-content-panel {
        position: static !important;

        width: 100%;

        min-height: 0 !important;

        padding:
            3rem
            1rem
            3.5rem !important;

        display: block;

        background: #ad8738;
    }



    /* ========================================================
       HERO UZERINDEKI BASLIK
       Mevcut HTML'yi kullanarak fotografin uzerine tasiyoruz.
       ======================================================== */

    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__top {
        position: absolute;

        z-index: 4;

        top: 0;
        left: 0;

        width: 100%;

        height: 78svh;
        min-height: 36rem;
        max-height: 48rem;

        display: flex;

        align-items: center;
        justify-content: center;

        padding:
            5rem
            1.25rem
            2rem;

        pointer-events: none;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__top-content {
        display: flex;

        flex-direction: column;

        align-items: center;
        justify-content: center;

        width: 100%;
        max-width: 22rem;

        gap: 1rem;

        text-align: center;
    }


    /* ILETISIM */
    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__eyebrow {
        color: #fff !important;

        font-size: 0.75rem !important;
        font-weight: 500;

        line-height: 1;

        letter-spacing: 0.1em;

        text-transform: uppercase;
    }


    /* GORGOLI ILE ILETISIME GECIN */
    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__title {
        width: 100%;
        max-width: 21rem;

        margin: 0;

        color: #fff !important;

        font-size: clamp(2rem, 8vw, 2.55rem) !important;

        font-weight: 400;

        line-height: 0.94 !important;

        letter-spacing: 0.035em;

        text-align: center;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__title
    .word,
    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__title
    .word-inner {
        color: inherit !important;
    }



    /* ========================================================
       ILETISIM BILGILERI
       ======================================================== */

    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__bottom {
        position: relative;

        width: 100%;

        margin: 0;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__bottom-content {
        display: flex !important;

        flex-direction: column !important;

        width: 100%;
        max-width: none;

        gap: 2rem !important;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__bottom-col {
        width: 100% !important;

        margin: 0;

        gap: 1rem;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__content,
    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__second-content {
        width: 100%;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .paragraph-l,
    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .paragraph-l p {
        margin: 0;

        color: #fff !important;

        font-size: 1rem !important;

        line-height: 1.5 !important;
    }



    /* GOOGLE MAPS */
    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__button {
        display: inline-flex;

        align-items: center;

        width: fit-content;

        margin-top: 0.5rem;

        gap: 0.65rem;

        color: #fff !important;

        font-size: 0.95rem !important;

        font-weight: 500;

        letter-spacing: 0.035em;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__button svg {
        width: 1.35rem;
        height: 1.35rem;

        flex: 0 0 1.35rem;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__button svg circle {
        fill: #fff;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__button svg path {
        fill: #ad8738;
    }

}



/* ============================================================
   DAR TELEFON
   ============================================================ */

@media (max-width: 390px) {

    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__left,

    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__top {
        height: 74svh !important;
        min-height: 34rem !important;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__title {
        font-size: 2rem !important;
    }

}


/* ============================================================
   END EPIKA CONTACT HERO MOBILE V13
   ============================================================ */



/* ============================================================
   EPIKA BEZIRHANE MOBILE V14
   ============================================================ */

@media (max-width: 767px) {


    /* ========================================================
       1. BEZIRHANE HERO
       ======================================================== */

    #hero-simple-block_5e10fa8e2374cba25b9bb5eac0d37a1c {
        width: 100%;

        height: 100vh;
        height: 100svh;

        min-height: 100vh;
        min-height: 100svh;

        display: flex;

        align-items: center !important;
        justify-content: center;

        padding: 0;
    }


    #hero-simple-block_5e10fa8e2374cba25b9bb5eac0d37a1c
    .block-hero-simple__background {
        width: 100%;
        height: 100%;

        object-fit: cover;

        /*
         * Binayi mobil kadrajda merkezliyoruz.
         * Inline scale'i de iptal ediyoruz.
         */
        object-position: 50% center;

        transform: scale(1.02) !important;
    }


    #hero-simple-block_5e10fa8e2374cba25b9bb5eac0d37a1c
    .block-hero-simple__overlay {
        background:
            linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.12) 0%,
                rgba(0, 0, 0, 0.18) 40%,
                rgba(0, 0, 0, 0.48) 100%
            );
    }


    #hero-simple-block_5e10fa8e2374cba25b9bb5eac0d37a1c
    .block-hero-simple__content {
        width: 100%;
        max-width: 24rem;

        padding: 0 1.25rem !important;

        display: flex;
        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 1rem;

        text-align: center;
    }


    /* BEZIRHANE */
    #hero-simple-block_5e10fa8e2374cba25b9bb5eac0d37a1c
    .block-hero-simple__eyebrow {
        font-size: 0.75rem !important;

        font-weight: 500;

        line-height: 1;

        letter-spacing: 0.1em;
    }


    /* GORGOLI'DE HIKAYELER BASLAR */
    #hero-simple-block_5e10fa8e2374cba25b9bb5eac0d37a1c
    .block-hero-simple__title {
        width: 100%;
        max-width: 20rem;

        margin: 0;

        font-size: clamp(2.05rem, 8.5vw, 2.6rem) !important;

        line-height: 0.92 !important;

        letter-spacing: 0.025em;
    }



    /* ========================================================
       2. ETKINLIKLER MAVI ALAN
       Mobilde once yazi, sonra buyuk fotograf.
       ======================================================== */

    #split-content-block_df71c0dd2c1409bb01eda291368a2743 {
        display: flex !important;

        flex-direction: column-reverse !important;

        width: 100%;

        min-height: 0 !important;
    }


    /* MAVI PANEL */
    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .block-split-content__right {
        width: 100% !important;

        min-height: 58svh !important;

        gap: 0 !important;

        background-color: var(--color-5);
    }


    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .split-content-panel {
        width: 100%;

        min-height: 58svh;

        padding:
            3rem
            1rem
            3.25rem !important;

        gap: 3.5rem;

        justify-content: space-between;
    }


    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .block-split-content__top-content {
        width: 100%;
        max-width: 23rem;

        gap: 1.4rem;
    }


    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .block-split-content__eyebrow {
        font-size: 0.72rem !important;

        font-weight: 500;

        line-height: 1;

        letter-spacing: 0.09em;
    }


    /* KAPADOKYA'DA BULUSMA NOKTASI */
    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .block-split-content__title {
        width: 100%;
        max-width: 21rem;

        margin: 0;

        font-size: clamp(1.9rem, 7vw, 2.3rem) !important;

        line-height: 0.95 !important;

        letter-spacing: 0.025em;
    }


    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .block-split-content__bottom,
    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .block-split-content__bottom-content,
    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .block-split-content__bottom-col {
        width: 100%;

        max-width: none;
    }


    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .block-split-content__content p {
        display: block !important;

        width: 100%;
        max-width: 24rem;

        margin: 0;

        font-size: 1rem !important;

        line-height: 1.45 !important;
    }



    /* ========================================================
       3. ETKINLIKLER BUYUK MEKAN FOTOGRAFI
       ======================================================== */

    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .block-split-content__left {
        width: 100% !important;

        height: 78svh;

        min-height: 36rem !important;
        max-height: 50rem;

        aspect-ratio: auto !important;
    }


    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .split-gallery,
    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .split-gallery__track,
    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .split-gallery__slide {
        width: 100%;
        height: 100%;
    }


    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .split-gallery__image {
        width: 100%;
        height: 100%;

        object-fit: cover;

        object-position: center;

        transform: none !important;
    }


    /* Gallery üst progress */
    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .split-gallery__dots {
        top: 1.25rem;

        width: calc(100% - 3rem);
    }


    /* Gallery oklar */
    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .split-gallery__arrows {
        bottom: 1.25rem;
    }



    /* ========================================================
       4. BEZIRHANE'DE HAYAT
       ======================================================== */

    #slider-block_3e12cfe26795f42ee0b931ded10009e4 {
        padding:
            4.25rem
            0
            4rem;
    }


    #slider-block_3e12cfe26795f42ee0b931ded10009e4
    .block-slider-title {
        width: 100%;
        max-width: none;

        padding: 0 1rem;

        margin-bottom: 2rem;

        gap: 1.75rem;
    }


    /* BEZIRHANE'DE HAYAT */
    #slider-block_3e12cfe26795f42ee0b931ded10009e4
    .block-slider-title__title {
        width: 100%;
        max-width: 22rem;

        margin: 0;

        font-size: clamp(1.9rem, 7vw, 2.25rem) !important;

        line-height: 0.96 !important;

        letter-spacing: 0.025em;
    }


    /* GALERI */
    #slider-block_3e12cfe26795f42ee0b931ded10009e4
    .block-slider__eyebrow {
        font-size: 0.72rem !important;

        line-height: 1;

        letter-spacing: 0.09em;
    }


    #slider-block_3e12cfe26795f42ee0b931ded10009e4
    .block-slider__container {
        width: 100%;

        padding: 0 1rem;
    }


    #slider-block_3e12cfe26795f42ee0b931ded10009e4
    .block-slider__slide {
        width: 100%;
    }


    #slider-block_3e12cfe26795f42ee0b931ded10009e4
    .block-slider__card {
        width: 100%;

        aspect-ratio: 4 / 5;

        border-radius: 0.35rem;
    }


    #slider-block_3e12cfe26795f42ee0b931ded10009e4
    .block-slider__image {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }


    #slider-block_3e12cfe26795f42ee0b931ded10009e4
    .block-slider__navigation {
        width: 13rem;

        margin-top: 1.75rem;
    }



    /* ========================================================
       5. ETKINLIGINIZ ICIN ILK ADIMI ATIN
       ======================================================== */

    #contact-block_e488a82c2c86e3e8ed8fd37a853716e3
    .block-contact__inner {
        display: flex;

        flex-direction: column;

        width: 100%;

        align-items: stretch;

        gap: 3rem;

        padding:
            4rem
            1rem
            4.5rem;
    }


    #contact-block_e488a82c2c86e3e8ed8fd37a853716e3
    .block-contact__title {
        width: 100%;
        max-width: none;
    }


    #contact-block_e488a82c2c86e3e8ed8fd37a853716e3
    h2.block-contact__title {
        width: 100%;
        max-width: 23rem;

        margin: 0;

        font-size: clamp(1.75rem, 6.5vw, 2.1rem) !important;

        line-height: 0.97 !important;

        letter-spacing: 0.02em;
    }



    /* ========================================================
       Form bolumundeki mevcut fotografi mobilde geri getir.
       ======================================================== */

    #contact-block_e488a82c2c86e3e8ed8fd37a853716e3
    .block-contact__figure {
        display: block !important;

        width: 100%;
        max-width: none;

        height: 62svh;
        min-height: 30rem;
        max-height: 42rem;

        margin-top: 2rem;

        border-radius: 0.35rem;

        overflow: hidden;
    }


    #contact-block_e488a82c2c86e3e8ed8fd37a853716e3
    .block-contact__figure img {
        display: block;

        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }



    /* ========================================================
       FORM
       ======================================================== */

    #contact-block_e488a82c2c86e3e8ed8fd37a853716e3
    .form-contact {
        width: 100%;
        max-width: none;
    }


    #contact-block_e488a82c2c86e3e8ed8fd37a853716e3
    .form-contact form {
        display: flex;

        flex-direction: column;

        width: 100%;

        gap: 1.6rem;
    }


    #contact-block_e488a82c2c86e3e8ed8fd37a853716e3
    .field {
        width: 100%;

        padding: 0;
    }


    #contact-block_e488a82c2c86e3e8ed8fd37a853716e3
    .field p {
        position: relative;

        width: 100%;

        margin: 0;
    }


    #contact-block_e488a82c2c86e3e8ed8fd37a853716e3
    .field br {
        display: none;
    }


    #contact-block_e488a82c2c86e3e8ed8fd37a853716e3
    .field input {
        width: 100%;

        height: 3.7rem;

        padding:
            1.3rem
            0.25rem
            0.4rem;

        font-size: 0.95rem;
    }


    #contact-block_e488a82c2c86e3e8ed8fd37a853716e3
    .field textarea {
        width: 100%;

        height: 10rem;
        min-height: 10rem;

        padding:
            1.5rem
            0.25rem
            0.5rem;

        font-size: 0.95rem;
    }


    #contact-block_e488a82c2c86e3e8ed8fd37a853716e3
    .field label {
        left: 0.25rem;

        font-size: 0.76rem !important;

        letter-spacing: 0.045em;
    }


    #contact-block_e488a82c2c86e3e8ed8fd37a853716e3
    .field .description-label {
        top: 0.45rem;
    }


    #contact-block_e488a82c2c86e3e8ed8fd37a853716e3
    .form-contact__button {
        display: flex;

        justify-content: flex-end;

        margin-top: 0.5rem;
    }


    #contact-block_e488a82c2c86e3e8ed8fd37a853716e3
    .form-contact__button p {
        margin: 0;
    }


    #contact-block_e488a82c2c86e3e8ed8fd37a853716e3
    .form-contact__button input {
        width: auto;

        height: auto;

        padding:
            0.5rem
            2rem
            0.5rem
            0 !important;

        font-size: 0.95rem !important;

        font-weight: 500;
    }

}



/* ============================================================
   DAR TELEFONLAR
   ============================================================ */

@media (max-width: 390px) {

    #hero-simple-block_5e10fa8e2374cba25b9bb5eac0d37a1c
    .block-hero-simple__title {
        font-size: 2rem !important;
    }


    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .block-split-content__right,

    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .split-content-panel {
        min-height: 55svh !important;
    }


    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .block-split-content__left {
        height: 74svh;
        min-height: 34rem !important;
    }


    #slider-block_3e12cfe26795f42ee0b931ded10009e4
    .block-slider-title__title {
        font-size: 1.8rem !important;
    }

}


/* ============================================================
   END EPIKA BEZIRHANE MOBILE V14
   ============================================================ */



/* ============================================================
   EPIKA TABLET INNER PAGES V15
   768px - 1024px
   Bezirhane + Iletisim
   ============================================================ */

@media (min-width: 768px) and (max-width: 1024px) {


    /* ========================================================
       ORTAK TABLET HEADER
       ======================================================== */

    .block-header {
        width: calc(100% - 3rem);
        max-width: 46rem;

        top: 1rem;

        height: 4rem;
    }

    .block-header__book-btn {
        font-size: 0.72rem !important;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .block-header__logo img {
        height: 2.15rem;
    }

    .block-header__toggle {
        padding: 1rem;
    }



    /* ========================================================
       BEZIRHANE
       HERO
       ======================================================== */

    #hero-simple-block_5e10fa8e2374cba25b9bb5eac0d37a1c {
        width: 100%;

        height: 72svh;
        min-height: 38rem;
        max-height: 48rem;

        display: flex;

        align-items: center !important;
        justify-content: center;

        padding: 0;
    }


    #hero-simple-block_5e10fa8e2374cba25b9bb5eac0d37a1c
    .block-hero-simple__background {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;

        transform: scale(1.02) !important;
    }


    #hero-simple-block_5e10fa8e2374cba25b9bb5eac0d37a1c
    .block-hero-simple__content {
        width: 100%;
        max-width: 38rem;

        padding: 0 2rem !important;

        display: flex;
        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 1rem;

        text-align: center;
    }


    #hero-simple-block_5e10fa8e2374cba25b9bb5eac0d37a1c
    .block-hero-simple__eyebrow {
        font-size: 0.85rem !important;

        line-height: 1;

        letter-spacing: 0.09em;
    }


    #hero-simple-block_5e10fa8e2374cba25b9bb5eac0d37a1c
    .block-hero-simple__title {
        width: 100%;
        max-width: 34rem;

        margin: 0;

        font-size: clamp(2.5rem, 5vw, 3.5rem) !important;

        line-height: 0.94 !important;

        letter-spacing: 0.02em;
    }



    /* ========================================================
       BEZIRHANE
       MAVI ETKINLIK ALANI
       ======================================================== */

    #split-content-block_df71c0dd2c1409bb01eda291368a2743 {
        display: flex !important;

        flex-direction: column-reverse !important;

        width: 100%;

        min-height: 0 !important;
    }


    /* YAZI ALANI */
    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .block-split-content__right {
        width: 100% !important;

        min-height: 0 !important;

        background-color: var(--color-5);
    }


    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .split-content-panel {
        width: 100%;

        min-height: 0 !important;

        padding:
            4rem
            2.5rem
            4.5rem !important;

        gap: 3rem;
    }


    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .block-split-content__top-content {
        width: 100%;
        max-width: 40rem;

        gap: 1.4rem;
    }


    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .block-split-content__eyebrow {
        font-size: 0.8rem !important;

        line-height: 1;

        letter-spacing: 0.09em;
    }


    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .block-split-content__title {
        width: 100%;
        max-width: 38rem;

        margin: 0;

        font-size: clamp(2.1rem, 4vw, 2.75rem) !important;

        line-height: 0.96 !important;
    }


    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .block-split-content__bottom,
    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .block-split-content__bottom-content,
    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .block-split-content__bottom-col {
        width: 100%;
        max-width: 42rem;
    }


    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .block-split-content__content p {
        width: 100%;
        max-width: 42rem;

        margin: 0;

        font-size: 1rem !important;

        line-height: 1.5 !important;
    }



    /* ========================================================
       BEZIRHANE
       BUYUK MEKAN FOTOGRAFI
       ======================================================== */

    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .block-split-content__left {
        width: 100% !important;

        height: 72svh;

        min-height: 38rem !important;
        max-height: 52rem;

        aspect-ratio: auto !important;
    }


    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .split-gallery,
    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .split-gallery__track,
    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .split-gallery__slide {
        width: 100%;
        height: 100%;
    }


    #split-content-block_df71c0dd2c1409bb01eda291368a2743
    .split-gallery__image {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;

        transform: none !important;
    }



    /* ========================================================
       BEZIRHANE
       BEZIRHANE'DE HAYAT
       ======================================================== */

    #slider-block_3e12cfe26795f42ee0b931ded10009e4 {
        padding:
            5rem
            0
            4.5rem;
    }


    #slider-block_3e12cfe26795f42ee0b931ded10009e4
    .block-slider-title {
        width: 100%;

        padding: 0 2.5rem;

        margin-bottom: 2.5rem;

        gap: 1.75rem;
    }


    #slider-block_3e12cfe26795f42ee0b931ded10009e4
    .block-slider-title__title {
        width: 100%;
        max-width: 35rem;

        margin: 0;

        font-size: 2.25rem !important;

        line-height: 0.96 !important;
    }


    #slider-block_3e12cfe26795f42ee0b931ded10009e4
    .block-slider__eyebrow {
        font-size: 0.8rem !important;
    }


    #slider-block_3e12cfe26795f42ee0b931ded10009e4
    .block-slider__container {
        padding-left: 2.5rem;
        padding-right: 0;
    }


    #slider-block_3e12cfe26795f42ee0b931ded10009e4
    .block-slider__card {
        min-height: 30rem;

        border-radius: 0.35rem;
    }


    #slider-block_3e12cfe26795f42ee0b931ded10009e4
    .block-slider__image {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }



    /* ========================================================
       BEZIRHANE
       FORM
       ======================================================== */

    #contact-block_e488a82c2c86e3e8ed8fd37a853716e3
    .block-contact__inner {
        display: block !important;

        width: 100%;

        padding:
            5rem
            2.5rem
            5.5rem !important;
    }


    #contact-block_e488a82c2c86e3e8ed8fd37a853716e3
    h2.block-contact__title {
        width: 100%;
        max-width: 38rem;

        margin:
            0
            0
            3rem;

        font-size: 2.15rem !important;

        line-height: 1 !important;
    }


    #contact-block_e488a82c2c86e3e8ed8fd37a853716e3
    .form-contact {
        width: 100%;
        max-width: 46rem;

        margin: 0 auto;
    }


    #contact-block_e488a82c2c86e3e8ed8fd37a853716e3
    .form-contact form {
        width: 100%;

        gap: 1.75rem;
    }


    #contact-block_e488a82c2c86e3e8ed8fd37a853716e3
    .field input {
        height: 4rem;

        font-size: 0.95rem;
    }


    #contact-block_e488a82c2c86e3e8ed8fd37a853716e3
    .field textarea {
        height: 11rem;
        min-height: 11rem;

        font-size: 0.95rem;
    }


    #contact-block_e488a82c2c86e3e8ed8fd37a853716e3
    .field label {
        font-size: 0.78rem !important;
    }



    /* ========================================================
       ILETISIM SAYFASI
       TABLETTE DE MOBILDEKI HERO MANTIGI
       ======================================================== */

    #split-content-block_38bcc1936fa9b6e364520e2809140d70 {
        position: relative;

        display: flex !important;

        flex-direction: column !important;

        width: 100%;

        min-height: 0 !important;

        overflow: visible;
    }



    /* ========================================================
       ILETISIM HERO FOTOGRAF
       ======================================================== */

    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__left {
        position: relative;

        order: 1;

        width: 100% !important;

        height: 72svh !important;

        min-height: 38rem !important;
        max-height: 50rem !important;

        aspect-ratio: auto !important;

        overflow: hidden;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .split-gallery,
    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .split-gallery__track,
    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .split-gallery__slide {
        width: 100%;
        height: 100%;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .split-gallery__slide {
        position: relative;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .split-gallery__slide::after {
        content: "";

        position: absolute;
        inset: 0;

        z-index: 1;

        pointer-events: none;

        background:
            linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.10) 0%,
                rgba(0, 0, 0, 0.08) 35%,
                rgba(0, 0, 0, 0.42) 100%
            );
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .split-gallery__image {
        width: 100%;
        height: 100%;

        object-fit: cover;

        object-position: 45% center;

        transform: none !important;
    }



    /* ========================================================
       ILETISIM HERO USTU BASLIK
       ======================================================== */

    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__top {
        position: absolute;

        z-index: 5;

        top: 0;
        left: 0;

        width: 100%;

        height: 72svh;

        min-height: 38rem;
        max-height: 50rem;

        display: flex;

        align-items: center;
        justify-content: center;

        padding:
            6rem
            2rem
            3rem;

        pointer-events: none;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__top-content {
        width: 100%;
        max-width: 38rem;

        display: flex;

        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 1rem;

        text-align: center;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__eyebrow {
        color: #fff !important;

        font-size: 0.85rem !important;

        line-height: 1;

        letter-spacing: 0.1em;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__title {
        width: 100%;
        max-width: 36rem;

        margin: 0;

        color: #fff !important;

        font-size: clamp(2.5rem, 5vw, 3.25rem) !important;

        line-height: 0.94 !important;

        text-align: center;
    }



    /* ========================================================
       ILETISIM BILGI ALANI
       HERO ALTINDA
       ======================================================== */

    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__right {
        position: static;

        order: 2;

        width: 100% !important;

        min-height: 0 !important;

        background: #ad8738;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .split-content-panel {
        position: static !important;

        width: 100%;

        min-height: 0 !important;

        padding:
            4rem
            2.5rem
            4.5rem !important;

        background: #ad8738;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__bottom {
        width: 100%;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__bottom-content {
        display: grid !important;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        gap: 2.5rem;

        width: 100%;
        max-width: 46rem;

        margin: 0 auto;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__bottom-col {
        width: 100% !important;

        gap: 1.25rem;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .paragraph-l,
    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .paragraph-l p {
        color: #fff !important;

        font-size: 1rem !important;

        line-height: 1.5 !important;
    }


    #split-content-block_38bcc1936fa9b6e364520e2809140d70
    .block-split-content__button {
        margin-top: 1rem;

        color: #fff !important;

        font-size: 0.95rem !important;
    }



    /* ========================================================
       ILETISIM FORM
       ======================================================== */

    #contact-block_8ce7d3490c612286498129e05124823c
    .block-contact__inner {
        display: block !important;

        width: 100%;

        padding:
            5rem
            2.5rem
            5.5rem !important;
    }


    #contact-block_8ce7d3490c612286498129e05124823c
    h2.block-contact__title {
        width: 100%;
        max-width: 42rem;

        margin:
            0
            auto
            3rem;

        font-size: 2.15rem !important;

        line-height: 1 !important;
    }


    #contact-block_8ce7d3490c612286498129e05124823c
    .form-contact {
        width: 100%;
        max-width: 46rem;

        margin: 0 auto;
    }


    #contact-block_8ce7d3490c612286498129e05124823c
    .form-contact form {
        width: 100%;

        gap: 1.75rem;
    }


    #contact-block_8ce7d3490c612286498129e05124823c
    .field input {
        width: 100%;

        height: 4rem;

        font-size: 0.95rem;
    }


    #contact-block_8ce7d3490c612286498129e05124823c
    .field textarea {
        width: 100%;

        height: 11rem;
        min-height: 11rem;

        font-size: 0.95rem;
    }


    #contact-block_8ce7d3490c612286498129e05124823c
    .field label {
        font-size: 0.78rem !important;
    }



    /* ========================================================
       ILETISIM HARITA
       ======================================================== */

    #map-block_2bf82384eb9142c9d78ec39393c1528d {
        padding:
            5rem
            2.5rem
            5.5rem !important;
    }


    #map-block_2bf82384eb9142c9d78ec39393c1528d
    .block-map__container {
        width: 100%;
        max-width: 54rem;

        margin: 0 auto;
    }


    #map-block_2bf82384eb9142c9d78ec39393c1528d
    .block-map-title {
        width: 100%;
        max-width: 40rem;

        margin-bottom: 2.5rem;
    }


    #map-block_2bf82384eb9142c9d78ec39393c1528d
    .block-map__title {
        margin: 0;

        font-size: 2.4rem !important;

        line-height: 0.96 !important;
    }


    #map-block_2bf82384eb9142c9d78ec39393c1528d
    iframe {
        display: block;

        width: 100% !important;

        height: 58svh !important;

        min-height: 32rem;
        max-height: 40rem;

        margin: 0 auto;

        border-radius: 0.35rem;
    }



    /* ========================================================
       TABLET FOOTER
       YAZILARIN ASIRI KUCUK KALMASINI ENGELLE
       ======================================================== */

    .footer {
        padding:
            4.5rem
            2.5rem
            3rem;
    }


    .block-footer__content {
        display: grid;

        grid-template-columns:
            minmax(16rem, 20rem)
            minmax(0, 1fr);

        gap: 3rem;

        align-items: start;

        padding-top: 0;
    }


    .block-footer__figure {
        width: 100%;
        max-width: none;
    }


    .block-footer__content-description {
        width: 100%;

        padding: 0;

        gap: 1.4rem;
    }


    .block-footer__description {
        width: 100%;
        max-width: 32rem;

        font-size: 0.95rem !important;

        line-height: 1.45 !important;
    }


    .block-footer__button {
        font-size: 0.82rem !important;
    }


    .block-footer__menu-form {
        width: 100%;

        padding-top: 3.5rem;
    }


    .block-footer__eyebrow {
        font-size: 0.85rem !important;
    }


    .block-footer__menu-content a {
        font-size: 0.75rem !important;
    }


    .copyright {
        padding:
            1.75rem
            2.5rem;
    }

}


/* ============================================================
   END EPIKA TABLET INNER PAGES V15
   ============================================================ */



/* ============================================================
   EPIKA TABLET MOBILE MENU V16
   768px - 1024px
   Tablet/iPad menu = mobil menu mantigi
   ============================================================ */

@media (min-width: 768px) and (max-width: 1024px) {


    /* ========================================================
       HEADER
       ======================================================== */

    .block-header {
        width: calc(100% - 2rem) !important;
        max-width: none !important;

        height: 4rem;

        top: 1rem;
        left: 1rem;
        right: 1rem;

        margin: 0;

        border-radius: 0.5rem;
    }


    /* Menü açıldığında beyaz header */
    .block-header.is-menu-open {
        background-color: #fffefd !important;

        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
    }



    /* ========================================================
       REZERVASYON
       ======================================================== */

    .block-header.is-menu-open
    .block-header__book-btn {
        height: calc(100% - 0.5rem);

        margin-left: 0.25rem;

        padding:
            0
            0.8rem !important;

        color: #03090d !important;

        background: transparent !important;

        border: 1px solid #03090d !important;
        border-radius: 0.3rem;

        font-size: 0.68rem !important;

        line-height: 1;

        letter-spacing: 0.04em !important;

        white-space: nowrap;
    }



    /* ========================================================
       LOGO
       ======================================================== */

    .block-header.is-menu-open
    .block-header__logo img {
        height: 2.25rem !important;

        filter: brightness(0);
    }



    /* ========================================================
       X BUTONU
       ======================================================== */

    .block-header.is-menu-open
    .block-header__toggle {
        width: 3.3rem;
        height: calc(100% - 0.4rem);

        margin-right: 0.2rem;

        padding: 0.65rem;

        background: transparent !important;

        border: 1px solid #03090d;
        border-radius: 0.35rem;
    }


    .block-header.is-menu-open
    .block-header__toggle-line {
        width: 2rem;

        background-color: #03090d !important;
    }



    /* ========================================================
       BEYAZ MENU PANELI
       ======================================================== */

    .block-header__menu {
        top: calc(100% + 0.55rem);

        width: 100%;

        background: #fffefd;

        border-radius: 0.6rem;

        overflow: hidden;
    }


    .block-header.is-menu-open
    .block-header__menu {
        overflow-x: hidden;
        overflow-y: auto;
    }


    .block-header__menu-container {
        width: 100%;

        padding: 0.75rem;
    }



    /* ========================================================
       PANEL YUKSEKLIGI
       Neredeyse tum iPad ekranini kaplar
       ======================================================== */

    .block-header__menu-inner {
        position: relative;

        width: 100%;

        min-height: calc(100svh - 7rem);

        display: flex;
        flex-direction: column;

        align-items: center;
        justify-content: flex-start;

        padding:
            6.5rem
            2rem
            2rem;

        gap: 0;
    }



    /* ========================================================
       MOBILDEKI GIBI MENU GORSELINI KALDIR
       ======================================================== */

    .block-header__menu
    .header-image {
        display: none !important;
    }



    /* ========================================================
       ANA NAVIGATION
       ======================================================== */

    .block-header__nav {
        display: flex;

        flex-direction: column;

        align-items: center;
        justify-content: flex-start;

        width: 100%;

        gap: 2rem;

        margin: 0;
        padding: 0;
    }


    .block-header__nav > li {
        margin: 0;
        padding: 0;

        overflow: visible;
    }


    .block-header__nav
    > li:not(:last-child)
    > a {
        display: inline-flex;

        align-items: center;
        justify-content: center;

        color: #03090d !important;

        font-size: 1.35rem !important;
        font-weight: 500;

        line-height: 1;

        letter-spacing: 0.075em;

        text-transform: uppercase;

        white-space: nowrap;
    }



    /* ========================================================
       SOSYAL MEDYA
       ======================================================== */

    .block-header__social {
        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 1.25rem;

        margin-top: 3.5rem;
    }


    .block-header__social a {
        display: inline-flex;

        align-items: center;

        gap: 0.5rem;

        color: #03090d !important;

        font-size: 1.15rem !important;
        font-weight: 500;

        line-height: 1;

        letter-spacing: 0.075em;

        text-transform: uppercase;
    }


    .block-header__social svg {
        width: 0.8rem;
        height: 0.8rem;
    }



    /* ========================================================
       TR | EN
       Mobildeki gibi sag alta
       ======================================================== */

    .block-header__nav
    > li:last-child {
        position: absolute;

        right: 1.5rem;
        bottom: 1.4rem;

        display: flex;

        align-items: center;

        gap: 0.4rem;
    }


    .block-header__nav
    > li:last-child
    > a {
        color: #03090d !important;

        font-size: 0.75rem !important;
        font-weight: 500;

        letter-spacing: 0.06em;
    }


    .block-header__nav
    > li:last-child
    > a.active {
        font-weight: 700;
    }

}


/* ============================================================
   768 - 850px civari daha kompakt iPad
   ============================================================ */

@media (min-width: 768px) and (max-width: 850px) {

    .block-header__menu-inner {
        padding-top: 5.75rem;
    }


    .block-header__nav {
        gap: 1.7rem;
    }


    .block-header__nav
    > li:not(:last-child)
    > a {
        font-size: 1.2rem !important;
    }


    .block-header__social {
        margin-top: 3rem;
    }


    .block-header__social a {
        font-size: 1rem !important;
    }

}


/* ============================================================
   END EPIKA TABLET MOBILE MENU V16
   ============================================================ */

