:root {
    --primary: #4a2c18;
    --primary-dark: #301b0e;
    --coffee: #7a5230;
    --caramel: #bd966b;
    --olive: #686b43;

    --cream: #faf5ef;
    --cream-dark: #f1e4d5;
    --surface: #fffaf5;

    --text: #2b1c13;
    --text-muted: #796b61;
    --white: #ffffff;

    --heading-font: "Cormorant Garamond", serif;
    --body-font: "Poppins", sans-serif;

    --shadow:
        0 20px 60px rgba(74, 44, 24, 0.12);

    --transition: 0.3s ease;
}


/* Base */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background: var(--cream);
    font-family: var(--body-font);
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}


/* Header */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;
    padding: 12px 0;

    transition: var(--transition);
}

.site-header.scrolled {
    padding: 5px 0;
    background: rgba(250, 245, 239, 0.96);
    box-shadow: 0 8px 30px rgba(74, 44, 24, 0.08);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    width: 88px;
    height: 88px;
    object-fit: contain;
    transition: var(--transition);
}

.site-header.scrolled .brand-logo {
    width: 68px;
    height: 68px;
}

.navbar-nav {
    gap: 10px;
}

.nav-link {
    position: relative;

    padding: 10px 12px !important;

    color: var(--text) !important;
    font-size: 14px;
    font-weight: 500;

    transition: var(--transition);
}

.nav-link::after {
    content: "";

    position: absolute;
    left: 12px;
    bottom: 4px;

    width: 0;
    height: 2px;

    background: var(--caramel);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 24px);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.navbar-toggler {
    padding: 6px 9px;
    border: 1px solid rgba(74, 44, 24, 0.15);
    box-shadow: none !important;
}


/* Buttons */

.btn-primary-custom,
.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 500;

    transition: var(--transition);
}

.btn-primary-custom {
    color: var(--white);
    border: 1px solid var(--primary);
    background: var(--primary);
}

.btn-primary-custom:hover {
    color: var(--white);
    border-color: var(--primary-dark);
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-custom {
    color: var(--primary);
    border: 1px solid rgba(74, 44, 24, 0.35);
    background: transparent;
}

.btn-outline-custom:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(74, 44, 24, 0.05);
    transform: translateY(-2px);
}

.btn-lg-custom {
    min-height: 54px;
    padding: 14px 25px;
}


/* Hero */

.hero-section {
    position: relative;

    min-height: 100vh;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 35%,
            rgba(189, 150, 107, 0.22),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #fcf8f3 0%,
            var(--cream) 50%,
            var(--cream-dark) 100%
        );
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 620px;
    padding-top: 110px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 22px;

    color: var(--olive);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-label span {
    display: block;

    width: 34px;
    height: 1px;

    background: var(--olive);
}

.hero-title {
    max-width: 600px;
    margin: 0 0 22px;

    color: var(--primary);
    font-family: var(--heading-font);
    font-size: clamp(64px, 7vw, 96px);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -2px;
}

.hero-title span {
    display: block;
    color: var(--caramel);
    font-style: italic;
    font-weight: 600;
}

.hero-description {
    max-width: 540px;
    margin-bottom: 34px;

    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
}

.hero-features {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;

    margin-top: 35px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 7px;

    color: var(--text-muted);
    font-size: 12px;
    font-weight: 500;
}

.hero-feature i {
    color: var(--olive);
    font-size: 13px;
}


/* Hero Visual */

.hero-visual {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 680px;
    padding-top: 100px;
}

.hero-circle {
    position: absolute;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(74, 44, 24, 0.08);
    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            rgba(255, 250, 245, 0.82),
            rgba(223, 196, 167, 0.55)
        );

    box-shadow:
        inset 0 0 80px rgba(255, 255, 255, 0.55),
        0 40px 90px rgba(74, 44, 24, 0.11);
}

.product-placeholder {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-product-image{

    position:relative;
    z-index:3;

    width:100%;
    max-width:340px;

    height:auto;

    object-fit:contain;

    filter:drop-shadow(0 25px 35px rgba(74,44,24,.18));

    transition:.4s ease;

}

.product-placeholder:hover .hero-product-image{

    transform:translateY(-8px) scale(1.03);

}

.product-caption {
    margin-top: -5px;
    text-align: center;
}

.product-caption span {
    display: block;

    margin-bottom: 4px;

    color: var(--olive);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-caption strong {
    color: var(--primary);
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 700;
}

.floating-bean {
    position: absolute;
    z-index: 2;

    color: var(--coffee);
    opacity: 0.18;
}

.bean-one {
    top: 25%;
    left: 8%;

    font-size: 25px;
    transform: rotate(35deg);
}

.bean-two {
    right: 6%;
    bottom: 24%;

    font-size: 18px;
    transform: rotate(-25deg);
}


/* Background Shapes */

.hero-shape {
    position: absolute;
    z-index: 1;

    border-radius: 50%;
    filter: blur(2px);
}

.hero-shape-one {
    top: -180px;
    right: -160px;

    width: 440px;
    height: 440px;

    border: 1px solid rgba(74, 44, 24, 0.06);
}

.hero-shape-two {
    left: -120px;
    bottom: -180px;

    width: 420px;
    height: 420px;

    background: rgba(189, 150, 107, 0.08);
}


/* Scroll Indicator */

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 5;

    display: flex;
    align-items: center;
    gap: 8px;

    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    transform: translateX(-50%);
}

.scroll-indicator i {
    animation: scrollDown 1.5s ease-in-out infinite;
}


/* Animations */

@keyframes steam {
    0%,
    100% {
        opacity: 0.25;
        transform: translateY(12px) rotate(12deg);
    }

    50% {
        opacity: 0.8;
        transform: translateY(-8px) rotate(-8deg);
    }
}

@keyframes scrollDown {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}


/* Responsive */

@media (max-width: 991px) {

    .site-header {
        background: rgba(250, 245, 239, 0.96);
    }

    .brand-logo {
        width: 68px;
        height: 68px;
    }

    .navbar-collapse {
        margin-top: 8px;
        padding: 18px;

        border-radius: 18px;
        background: var(--surface);
        box-shadow: var(--shadow);
    }

    .navbar-nav {
        align-items: stretch !important;
    }

    .nav-link {
        padding: 11px 5px !important;
    }

    .nav-link::after {
        display: none;
    }

    .hero-content {
        max-width: 680px;
        padding-top: 150px;
        text-align: center;
    }

    .hero-label,
    .hero-buttons,
    .hero-features {
        justify-content: center;
    }

    .hero-description {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-visual {
        min-height: 570px;
        padding-top: 20px;
    }

    .hero-circle {
        width: 430px;
        height: 430px;
    }

    .scroll-indicator {
        display: none;
    }
}


@media (max-width: 575px) {

    .hero-content {
        padding-top: 135px;
    }

    .hero-title {
        font-size: 58px;
        line-height: 0.95;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.8;
    }

    .hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-features {
        gap: 12px;
    }

    .hero-feature {
        font-size: 11px;
    }

    .hero-visual {
        min-height: 500px;
    }

    .hero-circle {
        width: 340px;
        height: 340px;
    }

    .cup {
        transform: scale(0.78);
    }

    .product-caption {
        margin-top: -50px;
    }

    .product-caption strong {
        font-size: 24px;
    }

    .section-placeholder h2 {
        font-size: 45px;
    }
}

/* Menu Section */

.menu-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(189, 150, 107, 0.12),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 82%,
            rgba(104, 107, 67, 0.08),
            transparent 24%
        ),
        var(--surface);
}

.menu-section .container {
    position: relative;
    z-index: 2;
}

.menu-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.menu-decoration-one {
    top: 180px;
    left: -170px;

    width: 420px;
    height: 420px;

    border: 1px solid rgba(74, 44, 24, 0.06);
}

.menu-decoration-two {
    right: -110px;
    bottom: -150px;

    width: 330px;
    height: 330px;

    background: rgba(189, 150, 107, 0.06);
}


/* Section Heading */

.menu-section .section-heading {
    margin-bottom: 70px;
}

.menu-section .section-heading h2 {
    margin: 8px 0 12px;

    color: var(--primary);
    font-family: var(--heading-font);
    font-size: clamp(50px, 6vw, 72px);
    font-weight: 700;
    line-height: 1;
}

.menu-section .section-heading p {
    margin: 0;

    color: var(--text-muted);
    font-size: 14px;
    letter-spacing: 0.5px;
}


/* Featured Drink */

.featured-drink {
    max-width: 470px;
    margin: 0 auto;
}

.featured-image-wrap {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 520px;
}

.featured-circle {
    position: absolute;

    width: 430px;
    height: 430px;

    border: 1px solid rgba(74, 44, 24, 0.08);
    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.82),
            rgba(226, 205, 180, 0.55)
        );

    box-shadow:
        inset 0 0 70px rgba(255, 255, 255, 0.65),
        0 35px 80px rgba(74, 44, 24, 0.1);
}

.featured-image-wrap {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 520px;
}

.featured-circle {
    position: absolute;

    width: 430px;
    height: 430px;

    border: 1px solid rgba(74, 44, 24, 0.08);
    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.85),
            rgba(226, 205, 180, 0.55)
        );

    box-shadow:
        inset 0 0 70px rgba(255, 255, 255, 0.65),
        0 35px 80px rgba(74, 44, 24, 0.1);
}

.featured-image-box {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 390px;
    height: 460px;

    overflow: hidden;

    border-radius: 28px;

    background: #f2ede7;

    box-shadow:
        0 28px 55px rgba(74, 44, 24, 0.14);
}

.featured-drink-image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.45s ease;
}

.featured-image-wrap:hover .featured-drink-image {
    transform: scale(1.025);
}

.featured-tag {
    position: absolute;
    top: 35px;
    left: 20px;
    z-index: 3;

    padding: 8px 16px;

    border-radius: 50px;

    color: var(--white);
    background: var(--olive);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.featured-content {
    max-width: 400px;
    margin: 10px auto 0;
}

.featured-small-title {
    display: block;
    margin-bottom: 6px;

    color: var(--olive);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.featured-content h3 {
    margin: 0 0 10px;

    color: var(--primary);
    font-family: var(--heading-font);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1;
}

.featured-content p {
    max-width: 350px;
    margin: 0 auto;

    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.8;
}


/* Menu List */

.menu-list-wrap {
    max-width: 680px;
    margin-left: auto;
}

.menu-category + .menu-category {
    margin-top: 55px;
}

.menu-category-title {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 15px;
}

.menu-category-title span {
    flex: 1;
    height: 1px;

    background: rgba(189, 150, 107, 0.55);
}

.menu-category-title h3 {
    flex-shrink: 0;

    margin: 0;

    color: var(--coffee);
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.menu-items {
    border-top: 1px solid rgba(74, 44, 24, 0.08);
}

.menu-item {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 70px;
    padding: 12px 4px;

    border-bottom: 1px solid rgba(74, 44, 24, 0.08);

    color: var(--primary);
    cursor: default;

    transition: var(--transition);
}

.menu-item::before {
    content: "";

    position: absolute;
    left: 0;
    bottom: -1px;

    width: 0;
    height: 1px;

    background: var(--caramel);

    transition: width 0.35s ease;
}

.menu-item:hover::before {
    width: 100%;
}

.menu-item-name {
    font-family: var(--heading-font);
    font-size: 29px;
    font-weight: 600;
    line-height: 1.1;

    transition: var(--transition);
}

.menu-item i {
    color: var(--caramel);
    font-size: 17px;

    opacity: 0;
    transform: translate(-10px, 8px);

    transition: var(--transition);
}

.menu-item:hover .menu-item-name {
    color: var(--caramel);
    transform: translateX(8px);
}

.menu-item:hover i {
    opacity: 1;
    transform: translate(0, 0);
}


/* Menu Note */

.menu-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    margin-top: 55px;
    padding-top: 30px;

    border-top: 1px solid rgba(74, 44, 24, 0.1);
}

.menu-note span {
    display: block;

    margin-bottom: 5px;

    color: var(--primary);
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
}

.menu-note p {
    max-width: 390px;
    margin: 0;

    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.7;
}

.menu-note .btn {
    flex-shrink: 0;
}


/* Menu Responsive */

@media (max-width: 991px) {

    .menu-section {
        padding: 95px 0;
    }

    .menu-section .section-heading {
        margin-bottom: 45px;
    }

    .featured-drink {
        margin-bottom: 35px;
    }

    .featured-image-wrap {
        min-height: 470px;
    }

    .featured-circle {
        width: 390px;
        height: 390px;
    }

    .menu-list-wrap {
        max-width: 760px;
        margin: 0 auto;
    }
}


@media (max-width: 767px) {

    .featured-image-wrap {
        min-height: 420px;
    }

    .featured-circle {
        width: 340px;
        height: 340px;
    }

    .featured-drink-image {
        max-width: 340px;
        max-height: 400px;
    }

    .menu-item-name {
        font-size: 26px;
    }

    .menu-note {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 575px) {

    .menu-section {
        padding: 75px 0;
    }

    .menu-section .section-heading {
        margin-bottom: 30px;
    }

    .menu-section .section-heading h2 {
        font-size: 50px;
    }

    .featured-image-wrap {
        min-height: 370px;
    }

    .featured-circle {
        width: 290px;
        height: 290px;
    }

    .featured-drink-image {
        max-width: 290px;
        max-height: 345px;
    }

    .featured-tag {
        top: 20px;
        left: 5px;

        padding: 7px 12px;

        font-size: 8px;
    }

    .featured-content {
        margin-top: 0;
    }

    .featured-content h3 {
        font-size: 32px;
    }

    .menu-category + .menu-category {
        margin-top: 42px;
    }

    .menu-category-title {
        gap: 12px;
    }

    .menu-category-title h3 {
        font-size: 21px;
    }

    .menu-item {
        min-height: 62px;
    }

    .menu-item-name {
        font-size: 23px;
    }

    .menu-item i {
        opacity: 1;
        transform: none;
    }

    .menu-item:hover .menu-item-name {
        transform: none;
    }

    .menu-note {
        margin-top: 42px;
    }

    .menu-note .btn {
        width: 100%;
    }
}

.signature-menu-item {
    color: var(--caramel);
}

.signature-menu-item .menu-item-name {
    color: var(--caramel);
}

.signature-label {
    padding: 6px 11px;

    border-radius: 50px;

    color: var(--white);
    background: var(--olive);

    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

@media (max-width: 767px) {

    .featured-image-box {
        width: 330px;
        height: 395px;
    }
}

@media (max-width: 575px) {

    .featured-image-box {
        width: 280px;
        height: 350px;
        border-radius: 22px;
    }

    .featured-tag {
        top: 18px;
        left: 12px;
    }
}

/* Our Story */

.story-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: var(--cream);
}

.story-visual {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
}

.story-image-wrap {
    position: relative;
    overflow: hidden;

    min-height: 620px;

    border-radius: 220px 220px 28px 28px;

    background: var(--cream-dark);

    box-shadow:
        0 35px 80px rgba(74, 44, 24, 0.14);
}

.story-image {
    width: 100%;
    height: 100%;
    min-height: 620px;

    object-fit: cover;
    object-position: center;

    transition: transform 0.6s ease;
}

.story-image-wrap:hover .story-image {
    transform: scale(1.03);
}

.story-quote {
    position: absolute;
    right: -35px;
    bottom: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 170px;
    height: 170px;

    padding: 20px;

    border: 8px solid var(--cream);
    border-radius: 50%;

    background: var(--primary);
    box-shadow: 0 20px 45px rgba(74, 44, 24, 0.22);
}

.story-quote span {
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 25px;
    font-weight: 600;
    line-height: 1.1;
    text-align: center;
}

.story-content {
    max-width: 590px;
    margin-left: auto;
}

.story-content h2 {
    margin: 12px 0 25px;

    color: var(--primary);
    font-family: var(--heading-font);
    font-size: clamp(48px, 5vw, 68px);
    font-weight: 700;
    line-height: 0.98;
}

.story-content h2 span {
    display: block;
    color: var(--caramel);
    font-style: italic;
    font-weight: 600;
}

.story-content > p {
    margin-bottom: 18px;

    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.9;
}

.story-values {
    margin-top: 38px;
}

.story-value {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    padding: 20px 0;

    border-bottom: 1px solid rgba(74, 44, 24, 0.09);
}

.story-value:first-child {
    border-top: 1px solid rgba(74, 44, 24, 0.09);
}

.story-value i {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    color: var(--primary);
    background: rgba(189, 150, 107, 0.2);

    font-size: 20px;
}

.story-value h3 {
    margin: 0 0 4px;

    color: var(--primary);
    font-family: var(--heading-font);
    font-size: 23px;
    font-weight: 700;
}

.story-value p {
    margin: 0;

    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.7;
}


/* Story Responsive */

@media (max-width: 991px) {

    .story-section {
        padding: 95px 0;
    }

    .story-visual {
        max-width: 520px;
        margin-bottom: 30px;
    }

    .story-image-wrap,
    .story-image {
        min-height: 560px;
    }

    .story-content {
        max-width: 650px;
        margin: 0 auto;
        text-align: center;
    }

    .story-value {
        text-align: left;
    }
}


@media (max-width: 575px) {

    .story-section {
        padding: 75px 0;
    }

    .story-image-wrap {
        min-height: 440px;
        border-radius: 150px 150px 24px 24px;
    }

    .story-image {
        min-height: 440px;
    }

    .story-quote {
        right: 10px;
        bottom: 20px;

        width: 125px;
        height: 125px;

        border-width: 6px;
    }

    .story-quote span {
        font-size: 20px;
    }

    .story-content h2 {
        font-size: 46px;
    }

    .story-content > p {
        font-size: 14px;
    }

    .story-value {
        gap: 14px;
    }

    .story-value i {
        width: 44px;
        height: 44px;
    }
}

/* Visit Section */

.visit-section{
    padding:120px 0;
    background:#fff;
}

.visit-image{

    overflow:hidden;

    border-radius:32px;

    box-shadow:
    0 35px 80px rgba(74,44,24,.12);

}

.visit-image img{

    width:100%;
    display:block;

    transition:.5s;

}

.visit-image:hover img{

    transform:scale(1.04);

}

.visit-content{

    max-width:520px;
    margin-left:auto;

}

.visit-content h3{

    margin-bottom:20px;

    color:var(--primary);

    font-family:var(--heading-font);

    font-size:48px;

}

.visit-content>p{

    margin-bottom:40px;

    color:var(--text-muted);

    line-height:1.9;

}

.visit-item{

    display:flex;

    gap:20px;

    margin-bottom:28px;

}

.visit-icon{

    width:58px;
    height:58px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#f6ede2;

    color:var(--primary);

    font-size:22px;

    flex-shrink:0;

}

.visit-item span{

    color:var(--olive);

    font-size:12px;

    letter-spacing:1px;

    text-transform:uppercase;

}

.visit-item h5{

    margin-top:4px;

    color:var(--primary);

    font-family:var(--heading-font);

    font-size:28px;

    line-height:1.3;

}

.visit-buttons{

    display:flex;

    gap:15px;

    margin-top:45px;

}

@media(max-width:991px){

.visit-content{

margin:auto;
margin-top:40px;
text-align:center;

}

.visit-item{

text-align:left;

}

.visit-buttons{

justify-content:center;

}

}

@media(max-width:576px){

.visit-section{

padding:80px 0;

}

.visit-buttons{

flex-direction:column;

}

.visit-buttons .btn{

width:100%;

}

.visit-content h3{

font-size:38px;

}

.visit-item h5{

font-size:24px;

}

}

/* Closing Strip */

.closing-strip {
    position: relative;
    overflow: hidden;

    padding: 105px 0;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(255, 255, 255, 0.07),
            transparent 26%
        ),
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );
}

.closing-strip::before {
    content: "";

    position: absolute;
    top: -170px;
    right: -100px;

    width: 390px;
    height: 390px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.closing-strip-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
    margin: 0 auto;

    text-align: center;
}

.closing-strip-content > span {
    display: block;

    margin-bottom: 14px;

    color: var(--caramel);

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.closing-strip-content h2 {
    margin: 0;

    color: var(--cream);

    font-family: var(--heading-font);
    font-size: clamp(50px, 7vw, 82px);
    font-weight: 600;
    line-height: 0.95;
}

.closing-strip-content h2 em {
    display: block;

    color: var(--caramel);

    font-weight: 500;
}


/* Footer */

.site-footer {
    padding: 90px 0 25px;

    color: rgba(255, 255, 255, 0.72);
    background: #1f1713;
}

.footer-brand {
    max-width: 430px;
}

.footer-logo {
    width: 125px;
    height: 125px;

    margin-bottom: 22px;

    object-fit: contain;
}

.footer-brand p {
    max-width: 390px;
    margin: 0;

    font-size: 13px;
    line-height: 1.9;
}

.footer-socials {
    display: flex;
    gap: 11px;

    margin-top: 28px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;

    color: var(--cream);
    background: rgba(255, 255, 255, 0.04);

    transition: var(--transition);
}

.footer-socials a:hover {
    color: var(--primary-dark);
    border-color: var(--caramel);
    background: var(--caramel);

    transform: translateY(-3px);
}

.footer-column h3 {
    margin: 18px 0 22px;

    color: var(--cream);

    font-family: var(--heading-font);
    font-size: 25px;
    font-weight: 700;
}

.footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-column li {
    margin-bottom: 13px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;

    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--caramel);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    font-size: 13px;
    line-height: 1.7;
}

.footer-contact i {
    flex-shrink: 0;

    margin-top: 3px;

    color: var(--caramel);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-top: 65px;
    padding-top: 24px;

    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
}


/* Footer Responsive */

@media (max-width: 767px) {

    .closing-strip {
        padding: 80px 0;
    }

    .site-footer {
        padding-top: 70px;
    }

    .footer-column h3 {
        margin-top: 0;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;

        margin-top: 45px;
    }
}


@media (max-width: 575px) {

    .closing-strip-content h2 {
        font-size: 48px;
    }

    .footer-logo {
        width: 105px;
        height: 105px;
    }
}