@import url('https://fonts.googleapis.com/css2?family=Spline+Sans:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Literata:ital,opsz,wght@0,7..72,200..900;1,7..72,200..900&display=swap');

html {
    scroll-behavior: smooth;
}

:root {
    --color-brown: #6F3A32;
    --color-red: #BE4C3C;
    --color-beige: #EDE4DC;
    --color-body-color: #F6F2ED;
    
    --color-green: #1E4A3A;
    --color-pink: #EC9182;

    --color-brown-7: hsla(8, 38%, 32%, 0.7);
    --color-beige-7: hsla(28, 32%, 90%, 0.7);
    --color-pink-7: hsla(8, 74%, 72%, 0.7);
    --color-grey-7 : hsla(30, 31%, 95%, 0.7);

    --theme-border-color: var(--color-brown-7);
    --theme-border-solid: var(--color-brown);
    
    --font-body: 'Literata', serif;
    --font-caslon: 'big-caslon-fb', serif;
    --font-spline: 'Spline Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    background: var(--color-body-color);
}

body.theme-dark {
    background-color: var(--color-body-color);
    --theme-border-color: var(--color-brown-7);
    --theme-border-solid: var(--color-brown);
}

body.theme-bright {
    background-color: var(--color-red);
    --theme-border-color: var(--color-beige-7);
    --theme-border-solid: var(--color-beige);
}

body.theme-pink {
    background-color: var(--color-green);
    --theme-border-color: var(--color-grey-7);
    --theme-border-solid: var(--color-pink);
}

@media(max-width:1646px) {
    section {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.theme-dark {
    color: var(--color-brown);
    border-color: var(--theme-border-color);
    
    .subhero-wrapper,
    .nav-wrapper {
        background-color: var(--color-body-color);
    }

    .info-wrapper { 
        background-color: var(--color-body-color);
    }
    
}

.theme-bright {
    color: var(--color-beige);
    border-color: var(--theme-border-color) !important;
    --theme-border-color: var(--color-beige-7);
    --theme-border-solid: var(--color-beige);

    .subhero-wrapper,
    .nav-wrapper,
    .info-wrapper {
        background-color: var(--color-red);
    }

    .menu-item a {
        color: white !important;
    }

    .reservation-button {
        background-color: var(--color-pink) !important;
    }
}

.theme-pink {
    color: #f6f2ee;
    border-color: var(--theme-border-color) !important;
    --theme-border-color: var(--color-grey-7);



    .subhero-wrapper,
    .nav-wrapper,
    .info-wrapper {
        background-color: var(--color-green);
    }

    .mobile-menu-nav .menu-item a,
    .menu-item a {
        color: white !important;
    }
}

section,
.section-border-theme,
.border-theme-border-color {
    border-color: var(--theme-border-color);
}

.info-wrapper {
    a {
        text-decoration: underline;
    }
    
}

p {
    font-weight: 300;
    line-height: 1.6;
}

/* ============================================
   RESTAURANTS LINK ITEM HOVER
   ============================================ */

.link-item-img-wrapper {
    overflow: hidden;
    border-radius: 15px;
}

.link-item .link-item-img-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease-out;
}

.link-item:hover .link-item-img-wrapper img {
    transform: scale(1.08);
}

#menu-primary-menu {

    font-family: var(--font-spline);

    .menu-item-has-children {
        position: relative;
    }

    .menu-item-has-children ul {
        display: none !important;
    }

    .menu-item-has-children ul.visible {
        display: flex !important;
        flex-direction: row;
        position: fixed;
        left: 0;
        top: 56px;
        width: 100vw;
        background-color: var(--color-body-color);
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        gap: 20px;
        padding: 40px 20px;
        list-style: none;
        margin: 0;
        z-index: 999;
    }

    .menu-item > a {
        color: var(--color-brown);
        position: relative;
        transition: color ease-in-out 300ms;
        font-size: 20px;
        text-transform: uppercase;
        font-weight: 400;
    }

    .menu-item > a::before {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 1px;
        background-color: currentColor;
        transition: width ease-in-out 300ms;
    }

    .menu-item > a:hover::before {
        width: 100%;
    }

    .menu-item-has-children ul .menu-item > a::after {
        display: none;
    }

    .menu-item-has-children ul .menu-item > a::before {
        display: none;
    }

    .menu-item-has-children ul .menu-item > a {
        text-transform: none;
        font-size: 20px;
        display: block;
        padding: 0 !important;
    }

    .menu-item-with-image > a {
        padding: 0 !important;
        background: none !important;
        display: block !important;
    }

    .menu-item-with-image > a::after {
        display: none;
    }

    .menu-item-with-image {
        width: auto;
    }

    /* Wygenerowane klasy JavaScript */
    .menu-item-link {
        display: flex;
        flex-direction: column;
        padding: 0 !important;
        background-image: none !important;
    }

    .menu-item-wrapper {
        display: flex;
        flex-direction: column;
        width: 355px;
        align-items: flex-start;
        border-left: 1px solid var(--color-brown);
        padding-left: 20px;
    }

    .menu-item-image {
        width: 355px;
        height: 194px;
        object-fit: cover;
        display: block;
    }

    .menu-item-text-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding-top: 20px;
        padding-bottom: 8px;
        box-sizing: border-box;
        position: relative;
    }

    .menu-item-text-container::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        background-color: var(--color-brown);
        transition: width 300ms ease-in-out;
    }

    .menu-item-link:hover .menu-item-text-container::before {
        width: 100%;
    }

    .menu-item-text {
        font-size: 20px;
        color: var(--color-brown);
    }

    .menu-item-arrow {
        width: 36px;
        height: 24px;
        flex-shrink: 0;
    }
}

.reservation-button.button {
    background-image: none !important;
}

.button-custom,
.button-custom img {
    transition: all 300ms ease-in-out;
    font-family: var(--font-spline);
}

.button-csutom:hover {
    font-weight: 500 !important;
}

.link-item {
    cursor: pointer;
}

.link-item:hover .button-custom img,
.button-custom:hover img {
    transform: translateX(8px);
}

button[data-be-url],
.reservation-button {
    background-color: var(--color-red) !important;
    text-transform: uppercase;
    color: white !important;
    border-radius: 0 !important;
    padding: 16px 40px !important;
    font-weight: 400 !important;
    font-family: var(--font-spline) !important;
    border: none !important;
    cursor: pointer !important;
    font-size: 20px !important;
}

.hero-title {
    font-size: 140px;
    font-weight: 400 !important;
    color: var(--color-body-color);
    font-family: var(--font-spline);
    letter-spacing: -0.01em;
    line-height: 1.1 !important;

    * {
        font-weight: 400 !important;
        letter-spacing: -0.01em;
        line-height: 1.1 !important;
    }
}

footer h3.font-caslon {
    font-style: italic;
}

.hero-title em {
    font-family: var(--font-caslon);
    font-size: 155px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 500 !important;
    font-family: var(--font-spline);

    p {
        font-weight: 500 !important;
    }
}

.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subpage {
    height: auto;
}

.item-name p {
    font-weight: 400 !important;
}

.item-name strong {
    font-weight: 500;
}

/* Fixed Background Helpers */
.hero-parallax-bg,
.parallax-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-parallax-bg {
    z-index: 1;
}

.parallax-wrapper {
    z-index: 0;
}

@media (max-width: 1024px) {
    /* Disable fixed backgrounds on mobile to prevent pixelation */
    .hero-parallax-bg,
    .parallax-wrapper {
        background-attachment: scroll;
        background-position: center top;
    }
}

/* Parallax Images */
.parallax-img {
    will-change: transform;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 10;
}

/* Content Container */
.hero-content {
    position: relative;
    z-index: 20;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
}

/* Video Button */
.hero-video-container {
    margin-top: 2.5rem;
}

.hero-video-container a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 300ms ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hero-video-container a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero-video-container svg {
    width: 2rem;
    height: 2rem;
    color: white;
    fill: currentColor;
}

/* ============================================
   MOBILE MENU STYLES
   ============================================ */

.mobile-navbar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 48px;
    z-index: 100;
    background-color: white;
    color: var(--color-brown);
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
}

.theme-bright .mobile-navbar {
    background-color: var(--color-red);
    color: white;
}

.theme-pink .mobile-navbar {
    background-color: var(--color-green);
    color: #FFE1DD;
}

.mobile-navbar-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.mobile-navbar-logo img {
    height: 24px;
    width: auto;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    height: 48px;
    width: 48px;
    z-index: 101;
    color: inherit;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hamburger .line {
    width: 24px;
    height: 2px;
    background-color: currentColor;
    transition: all 0.3s ease-out;
    border-radius: 2px;
    transform-origin: center;
}

.mobile-menu-toggle.active .line-1 {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .line-3 {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 48px;
    left: 0;
    width: 100%;
    height: calc(100vh - 48px);
    height: calc(100dvh - 48px);
    background-color: white;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.3s ease-out;
    overflow-y: auto;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.mobile-menu.active {
    transform: translateX(0);
}

.theme-dark .mobile-menu {
    background-color: white;
    color: var(--color-brown);
}

.theme-bright .mobile-menu {
    background-color: var(--color-red);
    color: var(--color-beige);
}

.theme-pink .mobile-menu {
    background-color: var(--color-green);
    color: #FFE1DD;
}

.mobile-menu-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 1.5rem;
}

.mobile-menu-header {
    display: none;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
}

.mobile-menu-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu-list .menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
}

.mobile-menu-list .menu-item:last-child {
    border-bottom: none !important;
}

.theme-dark .mobile-menu-list .menu-item {
    border-bottom: 1px solid rgba(111, 58, 50, 0.1);
}

.theme-bright .mobile-menu-list .menu-item,
.theme-pink .mobile-menu-list .menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-list .menu-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: opacity 0.2s ease;
    color: inherit;
}

.mobile-menu-list .menu-item a:hover {
    opacity: 0.7;
}

.mobile-menu-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: none;
    overflow: visible;
}

.mobile-menu-list ul .menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-dark .mobile-menu-list ul .menu-item {
    border-bottom: 1px solid rgba(111, 58, 50, 0.1);
}

.theme-bright .mobile-menu-list ul .menu-item,
.theme-pink .mobile-menu-list ul .menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-list ul .menu-item a {
    padding: 1rem 0 1rem 1.5rem;
    font-size: 16px;
    font-weight: 400;
}

.mobile-menu-footer {
    padding-top: 2rem;
    margin-bottom: calc(48px + env(safe-area-inset-bottom, 0));
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.theme-dark .mobile-menu-footer {
    border-top: 1px solid rgba(111, 58, 50, 0.1);
}

.theme-bright .mobile-menu-footer,
.theme-pink .mobile-menu-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.reservation-button-mobile {
    width: 100%;
    padding: 1rem;
    font-size: 16px;
    border-radius: 8px;
}

.mobile-menu .menu-item-text-container img {
    display: none;
}

.mobile-menu-nav .menu-item-has-children a,
.mobile-menu-nav .menu-item a,
.mobile-menu-nav .menu-item-link {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    color: var(--color-brown) !important;
}

.theme-bright .mobile-menu-nav .menu-item a {
    color: white !important;
}

.mobile-menu-toggle.active .hamburger .line-2 {
    opacity: 0 !important;
} 

/* ============================================
   INTRO SECTION STYLES
   ============================================ */

.intro-section {
    position: relative;
    background-color: var(--color-body-color);
}

/* ============================================
   GALLERY SLIDER STYLES
   ============================================ */

.gallery-slider {
    position: relative;
    width: 100%;
}

.gallery-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 700px;
}

@media(max-width: 768px) {
    .gallery-slide {
        height: auto;
        aspect-ratio: 3 / 4;
    }

}

.gallery-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Swiper Carousel customization */
.swiper-slide {
    outline: none;
}

.swiper {
    border-radius: 15px;
}

.swiper-pagination {
    position: relative;
    bottom: auto;
    right: auto;
    left: auto;
    width: 100%;
    margin: 24px 0 0 0;
    list-style: none;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.swiper-pagination-bullet {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font-size: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #832C1F;
    background-color: #EDE4DC;
    cursor: pointer;
    transition: all 300ms ease;
    display: inline-block;
    opacity: 1;
}

.swiper-pagination-bullet:before,
.swiper-pagination-bullet:after {
    content: none !important;
    display: none !important;
}

.swiper-pagination-bullet-active {
    background-color: #832C1F;
    border-color: #832C1F;
}

.swiper-button-prev,
.swiper-button-next {
    display: none;
}

.title {
    font-size: 70px;
    font-family: var(--font-spline);
    margin-bottom: 30px;
    line-height: 130%;
    letter-spacing:  -0.02em;
    p {
        letter-spacing:  -0.02em;
        font-weight: 500 !important;
        line-height: 130% !important;
    }
}

.title em {
    font-size: 80px;
    font-family: var(--font-caslon);
    letter-spacing: 0.01em !important;
}

.small {
    font-size: 40px;
    letter-spacing: normal;
}

.small em {
    font-size: 40px;
    letter-spacing: normal;
}

.medium {
    font-size: 110px;
    letter-spacing: -0.02em;

    p {
        letter-spacing: -0.02em;
    }
}

.medium em {
    font-size: 125px;
    letter-spacing: normal;
}

.sbi_header_text,
#sbi_load {
    display: none !important; 
}

.sbi_photo {
    width: 298px !important;
    height: 298px !important;
    margin-right: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.sbi_photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease-out;
}

.sbi_photo:hover img {
    transform: scale(1.08);
}


/* ============================================
   SCROLL TO OBJECT STYLES
   ============================================ */
.scroll-to-object {
  position: relative;
  display: inline-block;
}

.scroll-to-object::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.scroll-to-object:hover::after {
  width: 54px;
}

.scroll-to-object.active::after {
  width: 54px !important;
}

/* Linie oddzielające kolumny w środku gapa */
.object-item:nth-child(3n+2)::after,
.object-item:nth-child(3n)::after,
.object-item:last-child::after {
  content: '';
  left: -20px;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
    background-color: var(--theme-border-color);
  position: absolute;
}

@media (max-width: 1535px) {
    .other-objects-grid .object-item:nth-child(2n)::after {
        content: '';
        left: -20px;
        transform: translateX(-50%);
        width: 1px;
        height: 100%;
        background-color: var(--theme-border-color);
        position: absolute;
    }
}

.objects-sticky-buttons {
    transition: padding-top 0.3s ease;
}

.objects-sticky-buttons--padded {
    padding-top: 5rem !important;
}

.contact-cta-text {
    font-size: 40px;
    font-family: var(--font-spline);
    font-weight: 500;

    p {
        font-weight: 500;
    }

    em {
        font-size: 45px;
        font-family: var(--font-caslon);
    }
}

.content-text {
    h2 {
        font-size: 80px;
        font-family: var(--font-caslon);
    }
    h3 {
        font-size: 28px;
        font-weight: 500;
        font-weight: 400;
    }
    h4 {
        font-size: 28px;
        font-weight: 400;
        margin-bottom: 32px;
    }
    p {
        font-size: 20px;
        font-weight: 300;
        line-height: 32px;
    }
    strong {
        font-size: 30px;
        font-weight: 500;
    }

}

.float_bg2 {
    position: static !important;
}

.vertical-widget  {
    display: flex;
}

.pika-lendar {
    background-color: #BE4C3C;
}

/* ============================================
   MAP STYLES
   ============================================ */

.map-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.map-container .title {
    position: relative;
    z-index: 10;
    display: block;
}

.title-mobile {
    display: none;
}

.map-interaction-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 8, 6, 0.6);
    color: var(--color-beige);
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px;
    z-index: 20;
    transition: opacity 200ms ease-in-out;
}

.map-interaction-overlay__card {
    background: rgba(246, 242, 237, 0.15);
    border: 1px solid rgba(237, 228, 220, 0.4);
    padding: 20px 24px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.map-interaction-overlay__text {
    font-size: 16px;
    line-height: 1.4;
    font-family: var(--font-spline);
}

.map-interaction-overlay--hidden {
    opacity: 0;
    pointer-events: none;
}

.map-svg {
    width: 100%;
    height: auto;
    display: block;
    user-select: none;
    touch-action: auto;
    cursor: auto;
    transform-origin: center center;
    transition: transform 0.1s ease-out;
}

.map-svg.dragging {
    transition: none;
}

@media(max-width: 1024px) {
    .map-container {
        position: relative;
        aspect-ratio: 1103 / 880;
        overflow: hidden;
    }

    .map-container .title {
        display: none;
    }

    .title-mobile {
        display: block;
    }

    .map-svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .menu-item-wrapper img {
        display: none;
    }
}

.CloudBedsWidget {
    width: auto;
}

.vertical-widget {
    width: auto !important;
}

.widgetHotelsForm .vertical-widget .acessa_widget_block {
    margin-right: 12px !important;
}



/* ============================================
   RESPONSIVE MEDIA QUERIES - CONSOLIDATED
   ============================================ */

@media(max-width:1780px) {
    section,
    footer {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media(max-width:1536px) {

    .object-item:nth-child(3n+2)::after, .object-item:nth-child(3n)::after, .object-item:last-child::after {
        width: 0 !important;
    }

    .swiper-pagination {
        margin-top: 24px;
    }

    .gallery-slide {
        height: 600px;
    }
}

@media (max-width: 1024px) {

    .text-2xl {
        font-size: 18px;
        line-height: 140%;
    }

    .title {
        font-size: 54px;
        line-height: 110%;
        
        em {
            font-size: 59px;
        }
    }

    .swiper-pagination {
        margin-top: 24px;
    }

    .mobile-navbar {
        display: flex;
    }

    .desktop-navbar {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .gallery-slide {
        height: 450px;
    }

    .hero-section {
        min-height: 400px;
        padding-top: 48px;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-text-wrapper {
        max-width: 100%;
    }

    .hero-title {
        font-size: 72px;
        line-height: 110%;
        margin-bottom: 24px;
        p {
            line-height: 110% !important;
        }
        em {
            font-size: 72px !important;
        }
    }

    #menu-footer-menu {
        align-items: center;
        .menu-item {
            margin-right: 0;
        }
    }
    .contact-cta-text {
        font-size: 32px;
        em {
            font-size: 35px;
        }
    }
}

@media(max-width:768px) {

    .other-objects-grid .object-item:nth-child(2n)::after {
        width: 0;
    }

    .objects-sticky-buttons, .objects-sticky-buttons--padded {
        padding-top: 72px;
    }

    .footer-text {
        font-weight: 100;
    }

    .map-interaction-overlay {
        display: flex;
    }

    .map-svg:not(.map-svg--static) {
        touch-action: none;
        cursor: grab;
    }

    .map-svg:not(.map-svg--static).dragging {
        cursor: grabbing;
    }

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
}

    
.content-text {
    h2 {
        font-size: 36px;
        font-family: var(--font-caslon);

        em {
            font-size: 42px;
        }
    }
    h3 {
        font-size: 22px;
        font-weight: 500;
    }
    h4 {
        font-size: 22px;
        font-weight: 500;
        margin-bottom: 32px;
    }
    p {
        font-size: 18px;
        font-weight: 400;
        line-height: 1.6;
    }
    strong {
        font-size: 28px;
        font-weight: 600;
    }

}

    #sb_instagram {
        width: 100% !important;
        margin: 0 !important;
    }

    #sbi_images {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px !important;
        padding: 0 !important;
    }

    .sbi_photo {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 1 !important;
        margin-right: 0 !important;
        margin-bottom: 0 !important;
        object-fit: cover !important;
    }

    .swiper-pagination {
        margin-top: 16px;
    }

    .gallery-slide {
        height: auto;
        aspect-ratio: 3 / 4;
    }

    .gallery-slide img {
        height: 100%;
        object-fit: cover;
    }

    .title {
        font-size: 50px;
        line-height: 110%;
        
        em {
            font-size: 55px;
        }
    }

    .title.subtitle {
        margin-bottom: 16px;
    }

    .title.subtitle.small {
        font-size: 32px;

        em {
            font-size: 37px;
        }
    }

    .object-item:nth-child(3n+2)::after,
    .object-item:nth-child(3n)::after,
    .object-item:last-child::after {
        display: none;
    }
}

@media(max-width:480px) {
    #sb_instagram {
        width: 100% !important;
        margin: 0 !important;
    }

    #sbi_images {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        padding: 0 !important;
    }

    .sbi_photo {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 1 !important;
        margin-right: 0 !important;
        margin-bottom: 0 !important;
        object-fit: cover !important;
    }

    .gallery-slide {
        height: auto;
        aspect-ratio: 3 / 4;
    }

    .gallery-slide img {
        height: 100%;
        object-fit: cover;
    }

    .swiper-pagination {
        margin-top: 16px;
    }

    .title {
        font-size: 40px;
        line-height: 110%;
        
        em {
            font-size: 45px;
        }
    }

    .content-text {
        h2 {
            font-size: 30px;
            font-family: var(--font-caslon);
        }
        h3 {
            font-size: 20px;
            font-weight: 500;
        }
        h4 {
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 32px;
        }
        p {
            font-size: 20px;
            font-weight: 400;
            line-height: 1.5;
        }
        strong {
            font-size: 20px;
            font-weight: 600;
        }
    }
}

@media(max-width:1024px) and (min-width:769px) {
    #sb_instagram {
        width: 100% !important;
        margin: 0 !important;
    }

    #sbi_images {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 16px !important;
        padding: 0 !important;
    }

    .sbi_photo {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 1 !important;
        margin-right: 0 !important;
        margin-bottom: 0 !important;
        object-fit: cover !important;
    }
}

@media(min-width:1025px) {
    #sbi_images {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 20px !important;
        overflow-x: auto !important;
    }

    .sbi_photo {
        margin-right: 0 !important;
        margin-bottom: 0 !important;
        flex-shrink: 0 !important;
    }
}