@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@300;400;500;600;700;800&display=swap");

:root {
    --sea-950: #0d2230;
    --sea-900: #143346;
    --sea-700: #1f5f77;
    --sea-500: #2f8ba2;
    --foam-100: #f4fbfc;
    --foam-200: #e6f3f3;
    --sand-100: #f8f2e8;
    --sand-300: #e2c89c;
    --sun-400: #d79e52;
    --sun-500: #c9822f;
    --white: #ffffff;
    --ink: #243845;
    --muted: #60717b;
    --border-soft: rgba(19, 51, 70, 0.12);
    --shadow-soft: 0 24px 80px rgba(15, 39, 55, 0.12);
    --shadow-strong: 0 30px 90px rgba(9, 28, 41, 0.28);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --nav-height: 86px;
}

html {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100%;
    margin: 0;
    position: relative;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(215, 158, 82, 0.2), transparent 28%),
        radial-gradient(circle at top right, rgba(47, 139, 162, 0.2), transparent 24%),
        linear-gradient(180deg, #f9fcfc 0%, #eef7f6 35%, #f8f2e8 100%);
}

body::before,
body::after {
    content: "";
    position: fixed;
    z-index: -2;
    pointer-events: none;
    filter: blur(10px);
}

body::before {
    top: -140px;
    left: -100px;
    width: 340px;
    height: 340px;
    background: rgba(47, 139, 162, 0.12);
    border-radius: 50%;
}

body::after {
    right: -120px;
    bottom: 10%;
    width: 360px;
    height: 360px;
    background: rgba(201, 130, 47, 0.12);
    border-radius: 50%;
}

.page-atmosphere {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
    background-size: 120px 120px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0));
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 18px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--sea-950);
}

h2 {
    font-size: clamp(42px, 6vw, 78px);
    line-height: 0.95;
}

h3 {
    font-size: clamp(28px, 4vw, 44px);
}

h4 {
    font-size: clamp(18px, 2vw, 26px);
    line-height: 1.5;
}

h5 {
    font-size: 34px;
    line-height: 1;
}

p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
}

a {
    color: var(--sea-700);
    transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

a:hover,
a:focus {
    color: var(--sun-500);
    text-decoration: none;
}

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

.marginbot-30 {
    margin-bottom: 30px !important;
}

.marginbot-50 {
    margin-bottom: 50px !important;
}

#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background:
        radial-gradient(circle at center, rgba(47, 139, 162, 0.18), transparent 42%),
        linear-gradient(135deg, #f9fcfc 0%, #ecf8f7 46%, #f5ecdf 100%);
}

#load {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    margin: -32px 0 0 -32px;
    border-radius: 50%;
    border: 3px solid rgba(47, 139, 162, 0.18);
    border-top-color: var(--sea-700);
    border-right-color: var(--sun-500);
    animation: spinLoader 0.9s linear infinite;
}

@keyframes spinLoader {
    to {
        transform: rotate(360deg);
    }
}

.navbar {
    min-height: var(--nav-height);
    margin-bottom: 0;
    border: 0;
    background: transparent;
    transition: background-color 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.navbar-custom {
    padding: 18px 0;
}

.navbar-custom.top-nav-collapse {
    padding: 10px 0;
    background: rgba(12, 31, 43, 0.88);
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 40px rgba(5, 20, 29, 0.24);
}

.navbar-brand {
    height: auto;
    padding: 0;
}

.navbar-brand h1 {
    margin: 0;
    font-size: 30px;
    line-height: 1;
    color: var(--white);
}

.nav.navbar-nav {
    background: transparent;
}

.navbar-custom ul.nav li a {
    position: relative;
    padding: 14px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

.navbar-custom ul.nav li a::after {
    content: "";
    position: absolute;
    left: 16px;
    bottom: 8px;
    width: calc(100% - 32px);
    height: 2px;
    background: linear-gradient(90deg, var(--sand-300), var(--sun-500));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
}

.navbar-custom .nav li a:hover,
.navbar-custom .nav li a:focus,
.navbar-custom .nav li.active a {
    background: transparent;
    color: var(--white);
}

.navbar-custom .nav li a:hover::after,
.navbar-custom .nav li a:focus::after,
.navbar-custom .nav li.active a::after {
    transform: scaleX(1);
}

.navbar-custom ul.nav ul.dropdown-menu {
    padding: 10px 0;
    border: 0;
    border-radius: 18px;
    background: rgba(14, 35, 48, 0.96);
    box-shadow: var(--shadow-soft);
}

.navbar-custom ul.nav ul.dropdown-menu li a {
    color: rgba(255, 255, 255, 0.86);
    padding: 10px 18px;
}

.navbar-custom ul.nav ul.dropdown-menu li a::after {
    display: none;
}

.navbar-custom ul.nav ul.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.navbar-toggle {
    margin-top: 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    color: var(--white);
}

.navbar-toggle:focus,
.navbar-toggle:active {
    outline: 0;
    background: rgba(255, 255, 255, 0.08);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-backdrop,
.hero-gradient {
    position: absolute;
    inset: 0;
}

.hero-backdrop {
    background: url("../img/bg1.jpg") center center / cover no-repeat;
    transform: scale(1.04);
}

.hero-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(9, 28, 41, 0.86) 0%, rgba(9, 28, 41, 0.52) 44%, rgba(9, 28, 41, 0.26) 100%),
        radial-gradient(circle at 78% 24%, rgba(215, 158, 82, 0.26), transparent 28%);
}

.hero-gradient {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0) 72%, rgba(243, 249, 248, 1) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 150px;
    padding-bottom: 60px;
}

.hero-layout {
    display: flex;
    align-items: center;
}

.hero-copy {
    max-width: 620px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    margin-bottom: 26px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
}

.intro .slogan,
.hero-copy {
    text-align: left;
}

.intro .slogan h2,
.hero-copy h2 {
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: none;
}

.text_color {
    color: inherit;
}

.intro .slogan h4,
.hero-copy h4 {
    max-width: 560px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.86);
    text-shadow: none;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.hero-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 15px 24px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
}

.hero-action-primary {
    background: linear-gradient(135deg, var(--sun-400), var(--sun-500));
    color: var(--white);
    box-shadow: 0 18px 40px rgba(201, 130, 47, 0.32);
}

.hero-action-secondary {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.hero-action:hover,
.hero-action:focus {
    transform: translateY(-2px);
    color: var(--white);
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-highlight {
    padding: 12px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}

.hero-media {
    position: relative;
    min-height: 520px;
}

.hero-media-main,
.hero-media-stack,
.hero-media-caption {
    position: absolute;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.hero-media-main {
    inset: 0 52px 72px 0;
}

.hero-media-main img,
.hero-media-stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-media-stack {
    width: 190px;
    height: 180px;
    border: 6px solid rgba(255, 255, 255, 0.82);
}

.hero-media-stack-top {
    top: 26px;
    right: 0;
}

.hero-media-stack-bottom {
    right: 30px;
    bottom: 0;
}

.hero-media-caption {
    left: 26px;
    bottom: 20px;
    max-width: 240px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
}

.hero-media-caption h5 {
    margin-bottom: 10px;
    font-size: 28px;
    color: var(--sea-950);
}

.hero-media-caption p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: var(--sea-900);
}

.hero-scroll {
    margin-top: 36px;
    text-align: center;
}

.btn {
    border-radius: 0;
    text-transform: uppercase;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    letter-spacing: 0.16em;
    transition: all 0.3s ease-in-out;
}

.btn-circle {
    width: 72px;
    height: 72px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 34px;
    line-height: 70px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.btn-circle:hover,
.btn-circle:focus {
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.page-scroll .btn-circle i.animated {
    transition: transform 0.35s ease;
}

.page-scroll .btn-circle:hover i.animated {
    transform: translateY(4px);
}

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

.home-section {
    position: relative;
    padding-top: 110px;
    padding-bottom: 110px;
}

.section-shell {
    padding-top: 100px;
}

.section-topline {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(92%, 1260px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(20, 51, 70, 0.1), transparent);
}

.section-heading {
    margin-bottom: 56px;
}

.section-heading h2 {
    margin-bottom: 14px;
    color: var(--sea-950);
}

.section-heading i {
    color: rgba(20, 51, 70, 0.35);
}

.stay-grid,
.explore-grid,
.contact-grid {
    display: flex;
    flex-wrap: wrap;
}

.stay-card,
.gallery-panel,
.explore-card,
.contact-panel,
.booking-widget {
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.stay-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.stay-card-large,
.stay-card-tall {
    min-height: calc(100% - 30px);
}

.stay-card-media {
    position: relative;
    overflow: hidden;
}

.stay-card-media img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.stay-card-large .stay-card-media img,
.stay-card-tall .stay-card-media img {
    height: 340px;
}

.stay-card:hover .stay-card-media img,
.explore-card:hover .carousel-media {
    transform: scale(1.04);
}

.stay-card-body,
.explore-card-body,
.contact-panel,
.gallery-panel {
    padding: 28px;
}

.stay-card-body h5,
.explore-card-body h5 {
    margin-bottom: 14px;
}

.subtitle,
.explore-card-body p {
    margin-bottom: 0;
}

.gallery-panel {
    margin-top: 20px;
    overflow: hidden;
}

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

.gallery-title {
    margin-bottom: 0;
}

.gallery-note,
.form-note {
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
    color: var(--muted);
}

.form-note {
    margin-bottom: 14px;
}

.local-carousel {
    overflow: hidden;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(240, 248, 247, 0.6), rgba(228, 239, 237, 0.88));
}

.local-carousel .carousel-inner {
    border-radius: 26px;
}

.local-carousel .carousel-media {
    width: 100%;
    transition: transform 0.5s ease;
}

.local-carousel-wide .carousel-media {
    height: 520px;
    object-fit: cover;
}

.local-carousel-compact .carousel-media {
    height: 260px;
    object-fit: cover;
}

.local-carousel .carousel-indicators {
    bottom: 18px;
}

.local-carousel .carousel-indicators li,
.local-carousel .carousel-indicators .active {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border: 0;
}

.local-carousel .carousel-indicators li {
    background: rgba(255, 255, 255, 0.45);
}

.local-carousel .carousel-indicators .active {
    background: var(--sun-500);
}

.local-carousel .carousel-control {
    width: 14%;
    background-image: none !important;
    color: var(--white);
    opacity: 0;
    text-shadow: none;
    transition: opacity 0.25s ease;
}

.local-carousel:hover .carousel-control,
.local-carousel:focus-within .carousel-control {
    opacity: 0.88;
}

.explore-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 30px;
}

.explore-card-slider {
    padding: 18px 18px 0;
}

.section-about .container,
.section-service .container,
.section-contact .container {
    position: relative;
}

.booking-widget {
    margin-bottom: 34px;
    padding: 18px;
}

.booking-widget-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    padding: 28px 30px;
}

.booking-widget-title {
    margin-bottom: 6px;
    font-size: 34px;
}

.booking-widget-note {
    margin: 0;
    color: var(--muted);
}

.booking-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 16px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--sun-400), var(--sun-500));
    box-shadow: 0 18px 34px rgba(201, 130, 47, 0.24);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.booking-cta:hover,
.booking-cta:focus {
    color: var(--white);
    transform: translateY(-2px);
}

.contact-panel {
    height: 100%;
}

.contact-panel-form {
    padding: 34px;
}

.contact-panel-info {
    padding: 26px;
}

.contact-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    margin-bottom: 20px;
    padding: 14px 18px;
    border: 1px solid transparent;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.7;
}

.form-status[hidden] {
    display: none !important;
}

.form-status.is-success {
    border-color: rgba(59, 140, 94, 0.22);
    background: rgba(236, 248, 239, 0.96);
    color: #24603c;
}

.form-status.is-error {
    border-color: rgba(173, 67, 67, 0.22);
    background: rgba(252, 240, 239, 0.96);
    color: #8d2f2f;
}

form#contact-form .form-group label {
    display: block;
    margin-bottom: 10px;
    text-align: left !important;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sea-900);
}

form#contact-form input,
form#contact-form select,
form#contact-form textarea {
    height: auto;
    padding: 14px 16px;
    border: 1px solid rgba(20, 51, 70, 0.12);
    border-radius: 18px;
    background: rgba(244, 251, 252, 0.8);
    box-shadow: none;
    color: var(--ink);
}

form#contact-form textarea {
    resize: vertical;
}

form#contact-form input:focus,
form#contact-form select:focus,
form#contact-form textarea:focus {
    border-color: rgba(47, 139, 162, 0.42);
    box-shadow: 0 0 0 4px rgba(47, 139, 162, 0.08);
}

.input-group-addon {
    border: 1px solid rgba(20, 51, 70, 0.12);
    border-right: 0;
    border-radius: 18px 0 0 18px;
    background: rgba(244, 251, 252, 0.8);
    color: var(--sea-700);
}

.input-group .form-control {
    border-radius: 0 18px 18px 0 !important;
}

.btn-skin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 22px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--sea-700), var(--sea-500));
    color: var(--white);
    box-shadow: 0 18px 34px rgba(31, 95, 119, 0.22);
}

.btn-skin:hover,
.btn-skin:focus,
.btn-skin:active,
.btn-skin.active {
    color: var(--white);
    background: linear-gradient(135deg, var(--sea-900), var(--sea-700));
    transform: translateY(-1px);
}

.widget-contact {
    text-align: left;
}

.widget-contact h5 {
    margin-bottom: 18px;
}

.contact-map {
    width: 100%;
    margin-bottom: 24px;
    border: 0;
    border-radius: 22px;
    box-shadow: 0 18px 38px rgba(17, 40, 55, 0.14);
}

.widget-contact address {
    margin-bottom: 24px;
    color: var(--muted);
}

.widget-contact address strong {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--sea-950);
}

.widget-contact address p {
    margin-bottom: 6px;
}

.company-social {
    display: flex;
    gap: 12px;
    margin: 14px 0 0;
    padding-left: 0;
    list-style: none;
}

.company-social li {
    display: inline-flex;
}

.company-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--white);
    box-shadow: 0 12px 26px rgba(15, 39, 55, 0.14);
}

.company-social .social-facebook a {
    background: linear-gradient(135deg, #235da8, #3d83e4);
}

.company-social .social-twitter a {
    background: linear-gradient(135deg, #1f9ad6, #6ad2ff);
}

.company-social a:hover,
.company-social a:focus {
    color: var(--white);
    transform: translateY(-2px);
}

footer {
    position: relative;
    padding: 54px 0 60px;
    text-align: center;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(92%, 1260px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(20, 51, 70, 0.12), transparent);
}

footer p {
    color: var(--sea-900);
}

.footer-meta {
    margin-top: 8px;
}

.footer-meta a {
    color: var(--sea-700);
    font-weight: 700;
}

.market-hero .hero-copy {
    max-width: 640px;
}

.market-hero-media {
    min-height: 540px;
}

.market-hero-media .hero-media-main {
    inset: 0;
}

.market-hero-media .hero-media-stack {
    display: none;
}

.market-hero-media .hero-media-caption {
    left: 22px;
    right: 22px;
    bottom: 22px;
    max-width: none;
}

.market-story-row,
.market-feature-grid,
.market-visit-grid {
    display: flex;
    flex-wrap: wrap;
}

.market-story-card,
.market-banner-shot,
.market-feature-card,
.market-visit-card {
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
    margin-bottom: 30px;
}

.market-story-card,
.market-visit-card {
    padding: 28px;
    height: calc(100% - 30px);
}

.market-story-card p:last-child,
.market-feature-card p:last-child,
.market-visit-card p:last-child {
    margin-bottom: 0;
}

.market-banner-shot {
    overflow: hidden;
    height: calc(100% - 30px);
}

.market-banner-shot img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.market-banner-shot figcaption {
    padding: 18px 22px 22px;
    font-size: 13px;
    line-height: 1.8;
    color: var(--muted);
}

.market-meta-list {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
    display: grid;
    gap: 14px;
}

.market-meta-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--ink);
}

.market-meta-list i,
.market-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(47, 139, 162, 0.12);
    color: var(--sea-700);
    flex-shrink: 0;
}

.market-meta-list strong {
    display: block;
    margin-bottom: 2px;
    color: var(--sea-900);
}

.market-feature-card {
    padding: 28px;
    height: calc(100% - 30px);
}

.market-feature-card h5 {
    margin: 18px 0 12px;
}

.market-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.market-links .hero-action {
    margin-right: 0;
}

.market-links .hero-action-secondary {
    color: var(--sea-900);
}

.market-note {
    margin-top: 18px;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.8;
    color: var(--muted);
}

@media (min-width: 992px) {
    .hero-layout {
        min-height: calc(100vh - 210px);
    }
}

@media (max-width: 1199px) {
    .hero-media {
        min-height: 470px;
    }

    .market-hero-media {
        min-height: 460px;
    }

    .hero-media-main {
        inset: 0 28px 78px 0;
    }

    .hero-media-stack {
        width: 160px;
        height: 150px;
    }

    .local-carousel-wide .carousel-media {
        height: 460px;
    }
}

@media (max-width: 991px) {
    .navbar-custom {
        padding: 12px 0;
        background: rgba(12, 31, 43, 0.82);
        backdrop-filter: blur(10px);
    }

    .nav.navbar-nav {
        margin-top: 16px;
        padding: 8px 0;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.06);
    }

    .navbar-custom ul.nav li a::after {
        display: none;
    }

    .hero-container {
        padding-top: 130px;
    }

    .hero-layout {
        display: block;
    }

    .hero-copy {
        max-width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }

    .hero-actions,
    .hero-highlights {
        justify-content: center;
    }

    .hero-media {
        max-width: 560px;
        min-height: 500px;
        margin: 0 auto;
    }

    .market-hero-media {
        min-height: 420px;
    }

    .gallery-head {
        display: block;
    }

    .gallery-note {
        margin-top: 8px;
    }

    .contact-grid > div {
        margin-bottom: 30px;
    }

    .booking-widget-card {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    h2 {
        font-size: 46px;
    }

    h4 {
        font-size: 18px;
    }

    h5 {
        font-size: 28px;
    }

    .home-section {
        padding-top: 82px;
        padding-bottom: 82px;
    }

    .hero-container {
        padding-top: 116px;
        padding-bottom: 40px;
    }

    .hero-pill,
    .hero-highlight,
    .hero-action {
        letter-spacing: 0.12em;
    }

    .hero-media {
        min-height: 430px;
    }

    .market-hero-media {
        min-height: 360px;
    }

    .hero-media-main {
        inset: 0 18px 76px 0;
    }

    .hero-media-stack {
        width: 132px;
        height: 126px;
        border-width: 4px;
    }

    .hero-media-caption {
        left: 14px;
        right: 14px;
        bottom: 14px;
        max-width: none;
    }

    .stay-card-media img,
    .stay-card-large .stay-card-media img,
    .stay-card-tall .stay-card-media img {
        height: 250px;
    }

    .stay-card-body,
    .explore-card-body,
    .contact-panel-form,
    .contact-panel-info,
    .gallery-panel {
        padding: 22px;
    }

    .market-story-card,
    .market-visit-card,
    .market-feature-card {
        padding: 22px;
    }

    .explore-card-slider {
        padding: 16px 16px 0;
    }

    .market-banner-shot img {
        min-height: 300px;
    }

    .local-carousel-wide .carousel-media {
        height: 320px;
    }

    .local-carousel-compact .carousel-media {
        height: 220px;
    }

    .local-carousel .carousel-control {
        opacity: 0.88;
    }

    .btn-circle {
        width: 58px;
        height: 58px;
        line-height: 56px;
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .navbar-brand h1 {
        font-size: 24px;
    }

    .hero-copy h2 {
        font-size: 40px;
    }

    .hero-copy h4 {
        font-size: 16px;
    }

    .hero-action {
        width: 100%;
    }

    .hero-media {
        min-height: 360px;
    }

    .market-hero-media {
        min-height: 320px;
    }

    .hero-media-main {
        inset: 0 0 90px 0;
    }

    .hero-media-stack {
        display: none;
    }

    .hero-media-caption {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 12px 0 0;
    }

    .booking-cta {
        width: 100%;
    }

    .local-carousel-wide .carousel-media {
        height: 240px;
    }

    .local-carousel-compact .carousel-media {
        height: 180px;
    }
}
