/* @import "Base/settings.css";
@import "Base/headfoot.css"; */

:root {
    --forest-950: #17261c;
    --forest-900: #203526;
    --forest-800: #294633;
    --forest-700: #35583d;
    --forest-500: #6e8f73;
    --forest-200: #dce8dc;
    --wood-800: #6f5036;
    --wood-700: #8d6543;
    --wood-500: #bb9164;
    --sand-50: #fffdf8;
    --sand-100: #fbf5ec;
    --sand-200: #f3ead9;
    --sand-300: #e7d6bc;
    --text-950: #201912;
    --text-700: #625548;
    --text-500: #8d7d6b;
    --line-soft: rgba(92, 73, 49, 0.12);
    --shadow-sm: 0 12px 26px rgba(24, 37, 28, 0.08);
    --shadow-md: 0 24px 60px rgba(24, 37, 28, 0.12);
    --shadow-lg: 0 30px 80px rgba(18, 30, 22, 0.16);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --transition: 260ms ease;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    font-family: "Segoe UI", "Trebuchet MS", sans-serif;
    color: var(--text-950);
    background:
      radial-gradient(circle at top left, rgba(220, 232, 220, 0.8), transparent 24%),
      radial-gradient(circle at 85% 12%, rgba(187, 145, 100, 0.12), transparent 18%),
      linear-gradient(180deg, #fffdf9 0%, #f7efe2 55%, #f4ead9 100%);
  }
  
  img {
    display: block;
    max-width: 100%;
  }
  
  a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition), opacity var(--transition), transform var(--transition);
  }
  
  main {
    position: relative;
  }
  
  .site-header .navbar {
    background: rgba(255, 250, 242, 0.84);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(92, 73, 49, 0.08);
    box-shadow: 0 10px 32px rgba(24, 37, 28, 0.06);
  }
  .navbar.fixed-top {background: #fdf9f1;}
  .navbar-brand,
  .footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--forest-900);
  }
  
  .navbar-brand {
    font-size: 1.28rem;
  }
  
  .navbar-brand img,
  .footer-brand img {
    width: 54px;
    height: 54px;
    filter: drop-shadow(0 8px 16px rgba(32, 53, 38, 0.12));
  }
  
  .navbar-nav .nav-link {
    position: relative;
    padding: 0.95rem 1rem;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-950);
  }
  
  .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.65rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--forest-700), var(--wood-500));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
  }
  
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active,
  .navbar-nav .nav-item.active .nav-link {
    color: var(--forest-700);
  }
  
  .navbar-nav .nav-link:hover::after,
  .navbar-nav .nav-link.active::after,
  .navbar-nav .nav-item.active .nav-link::after {
    transform: scaleX(1);
  }
  
  .navbar-toggler {
    border-color: rgba(53, 88, 61, 0.18);
    border-radius: 16px;
  }
  
  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.22rem rgba(53, 88, 61, 0.14);
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(32,25,18,0.84)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  
  .language-switcher {
    display: inline-flex;
    padding: 0.28rem;
    border-radius: 999px;
    background: rgba(53, 88, 61, 0.08);
    border: 1px solid rgba(53, 88, 61, 0.12);
  }
  
  .lang-btn {
    border: 0;
    background: transparent;
    color: var(--forest-900);
    font-size: 0.88rem;
    font-weight: 800;
    padding: 0.48rem 0.86rem;
    border-radius: 999px;
    transition: background-color var(--transition), color var(--transition), transform var(--transition);
  }
  
  .lang-btn.active {
    background: linear-gradient(135deg, var(--forest-700), var(--forest-900));
    color: #fff;
    box-shadow: 0 10px 24px rgba(32, 53, 38, 0.22);
  }
  
  .hero-section,
  .page-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
  }
  
  .hero-section {
    min-height: 100vh;
    background:
      linear-gradient(120deg, rgba(16, 30, 23, 0.58), rgba(16, 30, 23, 0.26) 46%, rgba(16, 36, 48, 0.2) 100%),
      transparent center/cover no-repeat;
  }
  
  .hero-overlay,
  .page-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
      radial-gradient(circle at 20% 16%, rgba(220, 238, 255, 0.14), transparent 24%),
      radial-gradient(circle at 82% 18%, rgba(220, 232, 220, 0.08), transparent 18%),
      linear-gradient(180deg, rgba(16, 27, 20, 0.12) 0%, rgba(16, 27, 20, 0.44) 100%);
  }
  
  .hero-section::after,
  .page-hero::after {
    content: "";
    position: absolute;
    left: -4%;
    right: -4%;
    bottom: -1px;
    height: 120px;
    background: var(--sand-100);
    clip-path: polygon(0 68%, 12% 58%, 27% 70%, 42% 50%, 55% 68%, 73% 52%, 88% 66%, 100% 44%, 100% 100%, 0 100%);
  }
  
  .page-hero {
    padding: 7.5rem 0 6rem;
    background-size: cover;
    background-position: center;
  }
  
  .page-hero-about { background-image: linear-gradient(rgba(18, 33, 24, 0.62), rgba(18, 33, 24, 0.58)), url("../imgs/473320566_934348052133214_5821215409504540971_n.jpg"); }
  .page-hero-gallery { background-image: linear-gradient(rgba(18, 33, 24, 0.62), rgba(18, 33, 24, 0.58)), url("../imgs/650966608_1269275225218461_2784637943828694170_n.jpg"); }
  .page-hero-accommodation { background-image: linear-gradient(rgba(18, 33, 24, 0.62), rgba(18, 33, 24, 0.58)), url("../imgs/473153548_934347652133254_2192173987779350963_n.jpg"); }
  .page-hero-contact { background-image: linear-gradient(rgba(18, 33, 24, 0.62), rgba(18, 33, 24, 0.58)), url("../imgs/473022588_934347888799897_1448871826943224955_n.jpg"); }
  
  .eyebrow,
  .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 800;
  }
  
  .eyebrow::before,
  .section-kicker::before {
    content: "";
    width: 44px;
    height: 1px;
    background: currentColor;
    opacity: 0.72;
  }
  
  .eyebrow {
    color: rgba(255, 246, 230, 0.92);
  }
  
  .section-kicker {
    color: var(--forest-700);
  }
  
  .hero-title,
  .page-title,
  .section-title,
  .mini-feature h3,
  .value-card h3,
  .room-card h3,
  .accommodation-body h2,
  .footer-title,
  .calendar-month h3 {
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.08;
  }
  
  .hero-title {
    max-width: 10ch;
    font-size: clamp(3rem, 7vw, 5.8rem);
    letter-spacing: -0.03em;
  }
  
  .hero-text,
  .page-subtitle {
    max-width: 46rem;
    font-size: 1.12rem;
    line-height: 1.8;
    color: rgba(255, 246, 230, 0.88);
  }
  
  .page-title {
    max-width: 12ch;
    font-size: clamp(2.7rem, 6vw, 4.6rem);
    letter-spacing: -0.025em;
  }
  
  .section-title {
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
  }
  
  .lead,
  p,
  li,
  label,
  input,
  select,
  textarea {
    line-height: 1.75;
  }
  
  .section-space {
    padding: 6rem 0;
  }
  
  .section-soft {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 251, 244, 0.82), rgba(244, 234, 217, 0.72));
  }
  
  .section-soft::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 0% 0%, rgba(220, 232, 220, 0.5), transparent 16%),
      radial-gradient(circle at 100% 100%, rgba(231, 214, 188, 0.54), transparent 20%);
    pointer-events: none;
  }
  
  .btn {
    border-radius: 999px;
    padding: 0.95rem 1.65rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
  }
  
  .btn:hover,
  .btn:focus {
    transform: translateY(-3px) scale(1.01);
  }
  
  .btn-forest {
    background: linear-gradient(135deg, var(--forest-700), var(--forest-900));
    color: #fff;
    border: 1px solid transparent;
    box-shadow: 0 18px 42px rgba(32, 53, 38, 0.22);
    position: relative;
    overflow: hidden;
  }
  
  .btn-forest:hover,
  .btn-forest:focus {
    color: #fff;
    box-shadow: 0 22px 50px rgba(32, 53, 38, 0.28);
  }
  
  .btn-forest::after,
  .btn-sand::after,
  .btn-outline-forest::after {
    content: "";
    position: absolute;
    inset: 1px auto 1px -35%;
    width: 32%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transform: skewX(-25deg);
    transition: transform 500ms ease;
    pointer-events: none;
  }
  
  .btn-forest:hover::after,
  .btn-forest:focus::after,
  .btn-sand:hover::after,
  .btn-sand:focus::after,
  .btn-outline-forest:hover::after,
  .btn-outline-forest:focus::after {
    transform: translateX(430%) skewX(-25deg);
  }
  
  .btn-outline-forest {
    color: var(--forest-700);
    border: 1px solid rgba(53, 88, 61, 0.22);
    background: rgba(255, 255, 255, 0.72);
    position: relative;
    overflow: hidden;
  }
  
  .btn-outline-forest:hover,
  .btn-outline-forest:focus {
    background: var(--forest-700);
    color: #fff;
    border-color: var(--forest-700);
  }
  
  .btn-sand {
    background: linear-gradient(135deg, #f8ead0, #efe0c1);
    color: var(--forest-950);
    border: 1px solid transparent;
    box-shadow: 0 18px 42px rgba(248, 234, 208, 0.18);
    position: relative;
    overflow: hidden;
  }
  
  .info-card,
  .room-card,
  .value-card,
  .contact-card,
  .booking-card,
  .map-card,
  .accommodation-card,
  .cta-box,
  .calendar-month {
    position: relative;
    background: rgba(255, 252, 247, 0.85);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
  }
  
  .info-card::before,
  .room-card::before,
  .value-card::before,
  .accommodation-card::before,
  .cta-box::before,
  .booking-card::before,
  .contact-card::before,
  .calendar-month::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.55);
    pointer-events: none;
  }
  
  .info-card {
    padding: 1.5rem;
  }
  
  .mini-feature,
  .value-card {
    height: 100%;
    padding: 1.55rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(243, 234, 217, 0.78));
    transition: transform var(--transition), box-shadow var(--transition);
  }
  
  .mini-feature:hover,
  .value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
  }
  
  .mini-feature h3,
  .value-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.65rem;
  }
  
  .room-card {
    overflow: hidden;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
  }
  
  .room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
  }
  
  .room-card img,
  .accommodation-card img,
  .gallery-page-grid img,
  .gallery-preview-grid img {
    transition: transform 500ms ease;
  }
  
  .room-card:hover img,
  .accommodation-card:hover img,
  .gallery-preview-grid a:hover img,
  .gallery-page-grid a:hover img {
    transform: scale(1.05);
  }
  
  .room-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
  
  .room-card-body {
    padding: 1.5rem;
  }
  
  .room-price {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 0 0.75rem;
    font-weight: 800;
    color: var(--wood-800);
  }
  
  .room-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
  }
  
  .meta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(243, 234, 217, 0.95), rgba(255, 255, 255, 0.92));
    border: 1px solid rgba(92, 73, 49, 0.12);
    box-shadow: 0 8px 20px rgba(24, 37, 28, 0.08);
  }
  
  .meta-badge svg,
  .social-links a svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  
  .gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.2rem;
  }
  
  .gallery-preview-grid a,
  .gallery-page-grid a {
    display: block;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
  }
  
  .gallery-preview-grid img,
  .gallery-page-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .gallery-preview-grid a:nth-child(1) {
    grid-column: span 7;
    min-height: 370px;
  }
  
  .gallery-preview-grid a:nth-child(2),
  .gallery-preview-grid a:nth-child(3),
  .gallery-preview-grid a:nth-child(4) {
    grid-column: span 5;
    min-height: 175px;
  }
  
  .gallery-page-grid a {
    position: relative;
  }
  
  .gallery-page-grid a::after,
  .gallery-preview-grid a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(18, 33, 24, 0.18) 100%);
    opacity: 0;
    transition: opacity var(--transition);
  }
  
  .gallery-page-grid a:hover::after,
  .gallery-preview-grid a:hover::after {
    opacity: 1;
  }
  
  .calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  
  .calendar-legend span {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-700);
    font-weight: 700;
  }
  
  .calendar-legend i {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 6px;
  }
  
  .legend-free { background: #d8ead5; }
  .legend-booked { background: #c59c74; }
  .legend-past { background: #e7dcc8; }
  
  .calendar-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  }
  
  .calendar-month {
    padding: 1.35rem;
  }
  
  .calendar-month h3 {
    margin-bottom: 1rem;
    font-size: 1.28rem;
  }
  
  .calendar-weekdays,
  .calendar-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.35rem;
  }
  
  .calendar-weekdays span,
  .calendar-day {
    text-align: center;
    padding: 0.62rem 0;
    border-radius: 14px;
    font-size: 0.95rem;
  }
  
  .calendar-weekdays span {
    color: var(--text-700);
    font-weight: 800;
  }
  
  .calendar-day {
    background: rgba(239, 228, 208, 0.52);
    font-weight: 700;
  }
  
  .calendar-day.empty { background: transparent; }
  .calendar-day.free { background: #d8ead5; color: var(--forest-900); }
  .calendar-day.booked { background: #c59c74; color: #fff; }
  .calendar-day.past { background: #e7dcc8; color: #8f816f; }
  
  .accommodation-card {
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
  }
  
  .accommodation-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
  }
  
  .accommodation-body {
    padding: 2.15rem;
  }
  
  .amenities-list {
    list-style: none;
    padding: 0;
    margin: 1.3rem 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.8rem;
    color: var(--text-700);
  }
  
  .amenities-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 0.95rem;
    margin: 0;
    border-radius: 16px;
    background: rgba(243, 234, 217, 0.62);
    border: 1px solid rgba(92, 73, 49, 0.08);
  }
  
  .amenities-list li::before {
    content: "";
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    background: center/18px 18px no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2335583d' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5L20 7'/%3E%3C/svg%3E");
  }
  
  .contact-card,
  .booking-card,
  .map-card {
    padding: 2rem;
  }
  
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 1.6rem 0 0;
  }
  
  .contact-list li {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(92, 73, 49, 0.1);
  }
  
  .form-control,
  .form-select {
    min-height: 54px;
    border-radius: 16px;
    border-color: rgba(92, 73, 49, 0.14);
    background: rgba(255, 252, 247, 0.92);
  }
  
  .form-control:focus,
  .form-select:focus {
    border-color: rgba(53, 88, 61, 0.42);
    box-shadow: 0 0 0 0.22rem rgba(53, 88, 61, 0.1);
  }
  
  textarea.form-control {
    min-height: 160px;
  }
  
  .form-feedback {
    color: var(--forest-700);
    font-weight: 700;
  }
  
  .map-card {
    padding: 0;
    overflow: hidden;
  }
  
  .map-card iframe {
    display: block;
    width: 100%;
    min-height: 430px;
    border: 0;
  }
  
  .cta-section {
    padding-top: 1rem;
  }
  
  .cta-box {
    padding: 2.25rem;
    background:
      radial-gradient(circle at top right, rgba(214, 198, 167, 0.18), transparent 28%),
      linear-gradient(135deg, var(--forest-950), #26412f 52%, #6f5036 100%);
  }
  
  .site-footer {
    position: relative;
    margin-top: 2rem;
    padding: 4.5rem 0 3.5rem;
    background:
      radial-gradient(circle at top left, rgba(110, 143, 115, 0.16), transparent 22%),
      linear-gradient(180deg, #18251d 0%, #142019 100%);
    color: rgba(255, 248, 235, 0.92);
  }
  
  .site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
    pointer-events: none;
  }
  
  .footer-text,
  .footer-links a,
  .footer-links span,
  .social-links a {
    color: rgba(255, 248, 235, 0.82);
  }
  
  .footer-title {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #fff;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li + li {
    margin-top: 0.7rem;
  }
  
  .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
  }
  
  .social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 248, 235, 0.08);
    border: 1px solid rgba(255, 248, 235, 0.08);
  }
  
  .social-links a:hover {
    transform: translateY(-2px);
    background: rgba(255, 248, 235, 0.14);
  }
  
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms ease;
  }
  
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  @media (max-width: 991.98px) {
    .navbar-nav {
      padding-top: 1rem;
    }
  
    .hero-title,
    .page-title {
      max-width: none;
    }
  
    .gallery-preview-grid a:nth-child(1),
    .gallery-preview-grid a:nth-child(2),
    .gallery-preview-grid a:nth-child(3),
    .gallery-preview-grid a:nth-child(4) {
      grid-column: span 12;
      min-height: 230px;
    }
  }
  
  @media (max-width: 767.98px) {
    .section-space {
      padding: 4.5rem 0;
    }
  
    .hero-section {
      min-height: 88vh;
    }
  
    .hero-section::after,
    .page-hero::after {
      height: 84px;
    }
  
    .calendar-month,
    .contact-card,
    .booking-card {
      padding: 1.35rem;
    }
  
    .accommodation-body {
      padding: 1.5rem;
    }
  
    .amenities-list {
      grid-template-columns: 1fr;
    }
  }
  
  
  
  
  
  .hero-section .d-flex.flex-wrap.gap-3.mt-4 {
    margin-bottom: 5rem;
  }
  
  
  
  
  .intro-showcase {
    position: relative;
  }
  
  .intro-showcase::before {
    content: "";
    position: absolute;
    inset: 4rem auto auto -6rem;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(110, 143, 115, 0.18) 0%, rgba(110, 143, 115, 0) 72%);
    pointer-events: none;
  }
  
  .intro-copy {
    position: relative;
    z-index: 1;
  }
  
  .intro-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.8rem;
  }
  
  .intro-badges span {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(255, 252, 247, 0.82);
    border: 1px solid rgba(92, 73, 49, 0.1);
    box-shadow: 0 12px 26px rgba(24, 37, 28, 0.08);
    color: var(--forest-900);
    font-weight: 700;
  }
  
  .info-card {
    overflow: hidden;
  }
  
  .info-card-glow {
    position: absolute;
    top: -100px;
    right: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(187, 145, 100, 0.22) 0%, rgba(187, 145, 100, 0) 70%);
    pointer-events: none;
  }
  
  .mini-feature {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(243, 234, 217, 0.82)),
      radial-gradient(circle at top right, rgba(220, 232, 220, 0.22), transparent 38%);
    border: 1px solid rgba(92, 73, 49, 0.08);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  }
  
  .mini-feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(53, 88, 61, 0.18);
  }
  
  .mini-feature p {
    margin-bottom: 0;
    color: var(--text-700);
  }
  
  .mini-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin-bottom: 1.1rem;
    border-radius: 20px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(231, 214, 188, 0.92)),
      linear-gradient(180deg, rgba(220, 232, 220, 0.6), rgba(255, 255, 255, 0));
    border: 1px solid rgba(92, 73, 49, 0.12);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.8),
      0 14px 30px rgba(24, 37, 28, 0.1);
    color: var(--forest-700);
  }
  
  .mini-feature-icon svg {
    width: 34px;
    height: 34px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  
  .room-card,
  .gallery-preview-grid a,
  .gallery-page-grid a {
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  }
  
  .room-card:hover {
    border-color: rgba(53, 88, 61, 0.18);
  }
  
  .gallery-preview-grid a,
  .gallery-page-grid a {
    background: #fff;
    border: 1px solid rgba(92, 73, 49, 0.08);
  }
  
  .gallery-preview-grid a:hover,
  .gallery-page-grid a:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
  }
  
  @media (max-width: 991.98px) {
    .intro-badges {
      gap: 0.65rem;
    }
  
    .intro-badges span {
      font-size: 0.92rem;
    }
  }
  
  @media (max-width: 575.98px) {
    .mini-feature {
      padding: 1.3rem;
    }
  
    .mini-feature-icon {
      width: 60px;
      height: 60px;
      border-radius: 18px;
      margin-bottom: 0.95rem;
    }
  
    .mini-feature-icon svg {
      width: 30px;
      height: 30px;
    }
  
    .intro-badges span {
      width: 100%;
      justify-content: center;
    }
  }
  
  .hero-section,
  .page-hero {
    --hero-shift: 0px;
  }
  
  .hero-section,
  .page-hero,
  .info-card,
  .mini-feature,
  .room-card,
  .accommodation-card,
  .cta-box,
  .gallery-preview-grid a,
  .gallery-page-grid a {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --spotlight-x: 50%;
    --spotlight-y: 50%;
  }
  
  .hero-section {
    background-position: center calc(50% + var(--hero-shift));
    transition: background-position 120ms linear;
  }
  
  .hero-title,
  .hero-text,
  .page-title,
  .page-subtitle,
  .eyebrow,
  .page-hero .btn,
  .hero-section .btn {
    will-change: transform;
  }
  
  .info-card,
  .mini-feature,
  .room-card,
  .accommodation-card,
  .cta-box,
  .gallery-preview-grid a,
  .gallery-page-grid a {
    transform-style: preserve-3d;
  }
  
  .mini-feature,
  .room-card,
  .accommodation-card,
  .cta-box,
  .gallery-preview-grid a,
  .gallery-page-grid a {
    position: relative;
    isolation: isolate;
  }
  
  .mini-feature::after,
  .room-card::after,
  .accommodation-card::after,
  .cta-box::after,
  .gallery-preview-grid a::before,
  .gallery-page-grid a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at var(--spotlight-x) var(--spotlight-y), rgba(255,255,255,0.22), transparent 34%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
    z-index: 0;
  }
  
  .mini-feature:hover,
  .room-card:hover,
  .accommodation-card:hover,
  .cta-box:hover,
  .gallery-preview-grid a:hover,
  .gallery-page-grid a:hover {
    transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-8px);
  }
  
  .mini-feature:hover::after,
  .room-card:hover::after,
  .accommodation-card:hover::after,
  .cta-box:hover::after,
  .gallery-preview-grid a:hover::before,
  .gallery-page-grid a:hover::before {
    opacity: 1;
  }
  
  .mini-feature > *,
  .room-card > *,
  .accommodation-card > *,
  .cta-box > * {
    position: relative;
    z-index: 1;
  }
  
  .intro-badges span {
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
  }
  
  .intro-badges span:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(24, 37, 28, 0.12);
  }
  
  .social-links a,
  .meta-badge,
  .language-switcher,
  .navbar-brand img,
  .footer-brand img {
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition);
  }
  
  .social-links a:hover,
  .meta-badge:hover {
    transform: translateY(-3px) scale(1.03);
  }
  
  .navbar-brand:hover img,
  .footer-brand:hover img {
    transform: rotate(-4deg) scale(1.04);
  }
  
  .reveal {
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(0.985);
    transition: opacity 850ms ease, transform 850ms cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
  }
  
  .reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  
  @keyframes floatSoft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  
  .info-card-glow {
    animation: floatSoft 7s ease-in-out infinite;
  }
  
  @media (prefers-reduced-motion: reduce) {
    .hero-section,
    .page-hero,
    .mini-feature,
    .room-card,
    .accommodation-card,
    .cta-box,
    .gallery-preview-grid a,
    .gallery-page-grid a,
    .reveal,
    .btn,
    .social-links a,
    .meta-badge,
    .info-card-glow {
      animation: none !important;
      transition: none !important;
      transform: none !important;
    }
  }
  
  .site-header .navbar.navbar-scrolled {
    background: rgba(255, 249, 241, 0.94);
    box-shadow: 0 16px 44px rgba(24, 37, 28, 0.12);
    border-bottom-color: rgba(92, 73, 49, 0.14);
  }
  
  body.is-loaded .hero-section .eyebrow,
  body.is-loaded .hero-section .hero-title,
  body.is-loaded .hero-section .hero-text,
  body.is-loaded .hero-section .btn,
  body.is-loaded .page-hero .eyebrow,
  body.is-loaded .page-hero .page-title,
  body.is-loaded .page-hero .page-subtitle {
    animation: heroRise 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }
  
  body.is-loaded .hero-section .hero-title,
  body.is-loaded .page-hero .page-title {
    animation-delay: 120ms;
  }
  
  body.is-loaded .hero-section .hero-text,
  body.is-loaded .page-hero .page-subtitle {
    animation-delay: 220ms;
  }
  
  body.is-loaded .hero-section .btn:nth-of-type(1) {
    animation-delay: 320ms;
  }
  
  body.is-loaded .hero-section .btn:nth-of-type(2) {
    animation-delay: 400ms;
  }
  
  @keyframes heroRise {
    from {
      opacity: 0;
      transform: translate3d(0, 32px, 0);
      filter: blur(8px);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
      filter: blur(0);
    }
  }
  
  .gallery-page-grid a,
  .gallery-preview-grid a {
    cursor: zoom-in;
  }
  
  .gallery-page-grid a img,
  .gallery-preview-grid a img {
    transition: transform 700ms ease, filter 700ms ease;
  }
  
  .gallery-page-grid a:hover img,
  .gallery-preview-grid a:hover img {
    filter: saturate(1.06) contrast(1.03);
  }
  
  .site-lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(10, 18, 13, 0.86);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 260ms ease, visibility 260ms ease;
    z-index: 1080;
  }
  
  .site-lightbox.is-open {
    opacity: 1;
    visibility: visible;
  }
  
  .lightbox-open {
    overflow: hidden;
  }
  
  .lightbox-figure {
    margin: 0;
    max-width: min(1100px, 92vw);
    max-height: 86vh;
    text-align: center;
    transform: translateY(18px) scale(0.98);
    transition: transform 320ms ease;
  }
  
  .site-lightbox.is-open .lightbox-figure {
    transform: translateY(0) scale(1);
  }
  
  .lightbox-image {
    max-width: 100%;
    max-height: 78vh;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  }
  
  .lightbox-caption {
    margin-top: 1rem;
    color: rgba(255, 247, 232, 0.88);
    font-weight: 600;
  }
  
  .lightbox-close,
  .lightbox-nav {
    position: absolute;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
    transition: transform var(--transition), background-color var(--transition);
  }
  
  .lightbox-close:hover,
  .lightbox-nav:hover {
    transform: translateY(-2px) scale(1.03);
    background: rgba(255, 255, 255, 0.18);
  }
  
  .lightbox-close {
    top: 1.5rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
  }
  
  .lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    font-size: 1.6rem;
  }
  
  .lightbox-prev {
    left: 1.25rem;
  }
  
  .lightbox-next {
    right: 1.25rem;
  }
  
  @media (max-width: 991.98px) {
    .navbar-collapse {
      overflow: hidden;
      transition: height 320ms ease, opacity 220ms ease;
    }
  
    .navbar-collapse.collapsing,
    .navbar-collapse.show {
      background: linear-gradient(180deg, rgba(255, 251, 244, 0.98), rgba(246, 237, 223, 0.96));
      border-radius: 24px;
      margin-top: 0.85rem;
      padding: 0.5rem 0.35rem 0.9rem;
      box-shadow: 0 20px 44px rgba(24, 37, 28, 0.1);
    }
  
    .navbar-collapse .nav-link {
      border-radius: 16px;
      padding: 0.9rem 1rem;
    }
  
    .navbar-collapse .nav-link:hover {
      background: rgba(53, 88, 61, 0.06);
    }
  }
  
  @media (max-width: 767.98px) {
    .site-lightbox {
      padding: 1rem;
    }
  
    .lightbox-close {
      top: 0.9rem;
      right: 0.9rem;
    }
  
    .lightbox-nav {
      width: 46px;
      height: 46px;
      bottom: 1rem;
      top: auto;
      transform: none;
    }
  
    .lightbox-prev {
      left: calc(50% - 58px);
    }
  
    .lightbox-next {
      right: calc(50% - 58px);
    }
  }
  
  html[lang='bg'] .hero-title {
    max-width: 15.5ch;
    font-size: clamp(2.5rem, 5.8vw, 5.1rem);
  }
  
  html[lang='bg'] .hero-text {
    max-width: 40rem;
    font-size: clamp(1.3rem, 2.2vw, 1.6rem);
    line-height: 1.65;
  }
  
  
  
  .intro-actions .btn {
    min-width: 160px;
  }
  
  
  .intro-showcase {
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }
  
  .intro-showcase::before,
  .intro-showcase::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
  }
  
  .intro-showcase::before {
    width: 340px;
    height: 340px;
    top: -110px;
    left: -120px;
    background: radial-gradient(circle, rgba(110, 143, 115, 0.2) 0%, rgba(110, 143, 115, 0) 72%);
  }
  
  .intro-showcase::after {
    width: 320px;
    height: 320px;
    right: -120px;
    bottom: -120px;
    background: radial-gradient(circle, rgba(187, 145, 100, 0.2) 0%, rgba(187, 145, 100, 0) 74%);
  }
  
  .intro-copy,
  .intro-visual-wrap {
    position: relative;
    z-index: 1;
  }
  
  .intro-copy .lead {
    margin-bottom: 1rem;
  }
  
  .intro-copy p.text-muted {
    max-width: 56ch;
  }
  
  .intro-visual-wrap {
    padding: 1.1rem;
  }
  
  .intro-visual-wrap::before {
    content: "";
    position: absolute;
    inset: 0.2rem;
    border-radius: 38px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18)),
      radial-gradient(circle at 20% 30%, rgba(220, 232, 220, 0.32), transparent 42%);
    border: 1px solid rgba(92, 73, 49, 0.12);
    box-shadow: 0 26px 70px rgba(24, 37, 28, 0.14);
  }
  
  .intro-visual {
    position: relative;
    margin: 0;
    border-radius: 30px;
    overflow: hidden;
    clip-path: polygon(7% 0, 100% 0, 100% 84%, 93% 100%, 0 100%, 0 14%);
    box-shadow: 0 28px 75px rgba(22, 36, 27, 0.18);
  }
  
  .intro-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(170deg, rgba(255, 255, 255, 0.18), transparent 34%),
      linear-gradient(0deg, rgba(18, 33, 24, 0.2), transparent 52%);
    pointer-events: none;
  }
  
  .intro-showcase .intro-visual img {
    animation: introPhotoFloat 14s ease-in-out infinite;
    transition: transform 1000ms ease, filter 1000ms ease;
    will-change: transform;
  }
  
  .intro-ornament {
    position: absolute;
    left: -1.5rem;
    right: -0.8rem;
    bottom: -0.8rem;
    width: calc(100% + 2.2rem);
    height: auto;
    color: rgba(53, 88, 61, 0.32);
    z-index: 2;
  }
  
  .intro-ornament path {
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
  }
  
  @media (max-width: 991.98px) {
    .intro-visual-wrap {
      margin-top: 1.4rem;
      padding: 0.8rem;
    }
  }
  
  @media (max-width: 575.98px) {
    .intro-visual {
      clip-path: none;
      border-radius: 24px;
    }
  
    .intro-ornament {
      left: -0.6rem;
      right: -0.6rem;
      width: calc(100% + 1.2rem);
    }
  }
  
  
  
  .intro-copy {
    position: relative;
  }
  
  .intro-copy::before {
    content: "";
    position: absolute;
    left: -1.1rem;
    top: 3.5rem;
    width: 4px;
    height: 148px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(53, 88, 61, 0.65), rgba(53, 88, 61, 0.08));
  }
  
  .intro-copy::after {
    content: "";
    position: absolute;
    right: 2.5rem;
    top: -0.2rem;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    border: 1px dashed rgba(53, 88, 61, 0.24);
    opacity: 0.8;
  }
  
  .intro-copy .section-title {
    position: relative;
  }
  
  .intro-copy .section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.65rem;
    width: 72px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(53, 88, 61, 0.8), rgba(187, 145, 100, 0.7));
  }
  
  @media (max-width: 991.98px) {
    .intro-copy::before,
    .intro-copy::after {
      display: none;
    }
  }
  
  /* Intro section refinements requested by client */
  .intro-copy::before {
    display: none !important;
  }
  
  .intro-copy::after {
    right: 1.8rem;
    top: -0.4rem;
    width: 78px;
    height: 78px;
    border: 0;
    border-radius: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%2335583d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 56 28 32l10 14 12-18 20 28'/%3E%3Cpath d='M7 61h66'/%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.65;
    filter: drop-shadow(0 8px 14px rgba(25, 42, 31, 0.14));
  }
  
  .intro-visual-wrap::after {
    content: "";
    position: absolute;
    left: -0.8rem;
    bottom: -1.2rem;
    width: 72px;
    height: 72px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23294633' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M40 68V49'/%3E%3Cpath d='m23 49 17-29 17 29H23Z'/%3E%3Cpath d='m27 41 13-22 13 22H27Z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.72;
    z-index: 3;
  }
  
  @media (max-width: 991.98px) {
    .intro-copy::after,
    .intro-visual-wrap::after {
      display: none;
    }
  }
  
  /* Unified hero/section-2 blend + ornaments (clean final block) */
  :root {
    --intro-unified-bg: linear-gradient(180deg, #f7efe2 0%, #f4ead9 100%);
  }
  
  .hero-section::after {
    left: 0;
    right: 0;
    bottom: -2px;
    height: 126px;
    background: var(--intro-unified-bg);
  }
  
  .intro-showcase {
    margin-top: -2px;
    background-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23b6cbc0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 84 34 52l14 19 16-24 27 37'/%3E%3Cpath d='M8 92h104'/%3E%3C/g%3E%3C/svg%3E"),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23bed2c6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M60 102V74'/%3E%3Cpath d='m36 74 24-40 24 40H36Z'/%3E%3Cpath d='m42 64 18-30 18 30H42Z'/%3E%3C/g%3E%3C/svg%3E"),
      var(--intro-unified-bg);
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: 168px 168px, 140px 140px, 100% 100%;
    background-position: 7% 20%, 92% 84%, 0 0;
  }
  
  /* disable old radial blobs to avoid color mismatch */
  .intro-showcase::before,
  .intro-showcase::after {
    display: none !important;
  }
  
  @media (max-width: 991.98px) {
    .intro-showcase {
      background-size: 138px 138px, 118px 118px, 100% 100%;
      background-position: 4% 9%, 96% 94%, 0 0;
    }
  }
  
  @media (max-width: 767.98px) {
    .hero-section::after {
      height: 92px;
      bottom: -2px;
    }
  
    .intro-showcase {
      margin-top: -2px;
      background-size: 104px 104px, 86px 86px, 100% 100%;
      background-position: 3% 6%, 96% 98%, 0 0;
    }
  }
  
  
  /* Absolute final: single icon set + exact seam color */
  .hero-section::after {
    background: #f7efe2 !important;
  }
  
  .intro-copy::after,
  .intro-visual-wrap::after {
    content: none !important;
    display: none !important;
  }
  
  /* Final navbar spacing refinements */
  @media (min-width: 992px) {
    .site-header .navbar .container {
      max-width: 1320px;
    }
  
    .navbar-nav {
      column-gap: 0.5rem;
    }
  
    .navbar-nav .nav-link {
      padding: 1rem 1.22rem;
      font-size: 1rem;
    }
  
    .navbar-nav .nav-link::after {
      left: 1.22rem;
      right: 1.22rem;
    }
  }
  
  /* Logo stays static; motion moved to intro image */
  .navbar-brand img,
  .footer-brand img,
  .navbar-brand:hover img,
  .footer-brand:hover img {
    transform: none !important;
  }
  
  @keyframes introPhotoFloat {
    0%, 100% { transform: translateY(0) scale(1.002); }
    50% { transform: translateY(-4px) scale(1.012); }
  }
  
  .intro-showcase .intro-visual img {
    animation: introPhotoFloat 14s ease-in-out infinite;
    transition: transform 1000ms ease, filter 1000ms ease;
    will-change: transform;
  }
  
  .intro-showcase .intro-visual:hover img {
    transform: translateY(-2px) scale(1.018);
    filter: saturate(1.02) contrast(1.01);
  }
  
  @media (prefers-reduced-motion: reduce) {
    .intro-showcase .intro-visual img {
      animation: none !important;
      transition: none !important;
      transform: none !important;
    }
  }
  
  /* Modern Amenities Section */
  .amenities-showcase {
    position: relative;
  }
  
  .amenities-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 8% 12%, rgba(220, 232, 220, 0.45), transparent 20%),
      radial-gradient(circle at 92% 88%, rgba(231, 214, 188, 0.5), transparent 24%);
    pointer-events: none;
  }
  
  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
  
  .amenity-card-modern {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-height: 84px;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(92, 73, 49, 0.1);
    background:
      linear-gradient(165deg, rgba(255, 255, 255, 0.88), rgba(248, 241, 229, 0.9)),
      radial-gradient(circle at top right, rgba(220, 232, 220, 0.24), transparent 46%);
    box-shadow: 0 12px 28px rgba(24, 37, 28, 0.08);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  }
  
  .amenity-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(24, 37, 28, 0.12);
    border-color: rgba(53, 88, 61, 0.24);
  }
  
  .amenity-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: transparent;
    box-shadow: none;
    color: var(--forest-700);
  }
  
  .amenity-icon i {
    font-size: 1.4rem;
    line-height: 1;
    color: currentColor;
    opacity: 1;
  }
  
  .amenity-card-modern:hover .amenity-icon {
    box-shadow: none;
    color: var(--forest-900);
  }
  
  .amenity-title {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.4;
    font-weight: 700;
    color: var(--text-950);
    font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  }
  
  @media (max-width: 1199.98px) {
    .amenities-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  
  @media (max-width: 991.98px) {
    .amenities-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.85rem;
    }
  }
  
  @media (max-width: 575.98px) {
    .amenities-grid {
      grid-template-columns: 1fr;
    }
  
    .amenity-card-modern {
      min-height: 76px;
      padding: 0.85rem 0.92rem;
    }
  
    .amenity-title {
      font-size: 0.94rem;
    }
  }
  
  
  
  
  
  /* Gallery polish */
  .gallery-preview-modern .gallery-tile,
  .gallery-page-grid-modern .gallery-photo-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 46px rgba(22, 35, 26, 0.14);
  }
  
  .gallery-preview-modern .gallery-tile::before,
  .gallery-page-grid-modern .gallery-photo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 17, 13, 0.02), rgba(9, 17, 13, 0.52));
    opacity: 0.45;
    transition: opacity 260ms ease;
    pointer-events: none;
    z-index: 1;
  }
  
  .gallery-preview-modern .gallery-tile:hover::before,
  .gallery-page-grid-modern .gallery-photo-card:hover::before {
    opacity: 0.72;
  }
  
  .gallery-preview-modern .gallery-tile img,
  .gallery-page-grid-modern .gallery-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease, filter 700ms ease;
  }
  
  .gallery-preview-modern .gallery-tile:hover img,
  .gallery-page-grid-modern .gallery-photo-card:hover img {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.03);
  }
  
  .gallery-preview-modern .tile-tag {
    position: absolute;
    left: 0.95rem;
    bottom: 0.95rem;
    z-index: 2;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.42);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    backdrop-filter: blur(6px);
  }
  
  .gallery-preview-modern .tile-glass {
    position: absolute;
    right: 0.9rem;
    top: 0.9rem;
    z-index: 2;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
    line-height: 1;
  }
  
  .gallery-preview-modern .tile-lg {
    grid-column: span 7;
    min-height: 380px;
  }
  
  .gallery-page-section .gallery-filterbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.3rem;
  }
  
  .gallery-filter-btn {
    border: 1px solid rgba(53, 88, 61, 0.2);
    background: rgba(255, 255, 255, 0.74);
    color: var(--forest-900);
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 700;
    transition: all 220ms ease;
  }
  
  .gallery-filter-btn:hover,
  .gallery-filter-btn.active {
    background: linear-gradient(135deg, var(--forest-700), var(--forest-900));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 10px 24px rgba(32, 53, 38, 0.24);
  }
  
  .gallery-page-item {
    transition: opacity 260ms ease, transform 260ms ease;
  }
  
  .gallery-page-item.is-hidden {
    opacity: 0;
    transform: scale(0.98);
    pointer-events: none;
    display: none;
  }
  
  .gallery-page-grid-modern .gallery-photo-card {
    display: block;
    min-height: 260px;
  }
  
  .gallery-photo-caption {
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.9rem;
    z-index: 2;
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
  }
  
  @media (max-width: 991.98px) {
    .gallery-preview-modern .tile-lg {
      grid-column: span 12;
      min-height: 260px;
    }
  }
  
  /* Gallery layout fix: equal heights and balanced preview */
  .gallery-preview-modern {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1rem;
  }
  
  .gallery-preview-modern .gallery-tile {
    grid-column: span 6 !important;
    aspect-ratio: 4 / 3;
    min-height: 0 !important;
  }
  
  .gallery-page-grid-modern .gallery-photo-card {
    aspect-ratio: 4 / 3;
    min-height: 0 !important;
  }
  
  @media (max-width: 991.98px) {
    .gallery-preview-modern .gallery-tile {
      grid-column: span 12 !important;
    }
  }
  
  /* Polygon gallery style + decorative accents */
  .gallery-section-decor {
    position: relative;
    overflow: hidden;
  }
  
  .gallery-section-decor::before,
  .gallery-section-decor::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
  }
  
  .gallery-section-decor::before {
    left: 1.5%;
    top: 8%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%2335583d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M60 108V70'/%3E%3Cpath d='m35 70 25-42 25 42H35Z'/%3E%3Cpath d='M50 108h20'/%3E%3C/g%3E%3C/svg%3E");
  }
  
  .gallery-section-decor::after {
    right: 2.5%;
    bottom: 7%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%238d6543' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='60' cy='60' r='12'/%3E%3Cpath d='M60 16v16M60 88v16M16 60h16M88 60h16M29 29l11 11M80 80l11 11M29 91l11-11M80 40l11-11'/%3E%3C/g%3E%3C/svg%3E");
  }
  
  .gallery-section-decor .container {
    position: relative;
    z-index: 1;
  }
  
  .gallery-preview-modern .gallery-tile,
  .gallery-page-grid-modern .gallery-photo-card {
    padding: 20px;
    background: rgba(255, 252, 247, 0.7);
    border-radius: 26px;
  }
  
  .gallery-preview-modern .gallery-tile::after,
  .gallery-page-grid-modern .gallery-photo-card::after {
    content: "";
    position: absolute;
    inset: 8px;
    border: 2px dashed rgba(53, 88, 61, 0.38);
    border-radius: 22px;
    pointer-events: none;
    z-index: 2;
  }
  
  .gallery-preview-modern .gallery-tile img,
  .gallery-page-grid-modern .gallery-photo-card img {
    clip-path: polygon(8% 0, 92% 0, 100% 14%, 100% 86%, 92% 100%, 8% 100%, 0 86%, 0 14%);
  }
  
  @media (max-width: 767.98px) {
    .gallery-preview-modern .gallery-tile,
    .gallery-page-grid-modern .gallery-photo-card {
      padding: 14px;
    }
  
    .gallery-preview-modern .gallery-tile::after,
    .gallery-page-grid-modern .gallery-photo-card::after {
      inset: 6px;
    }
  }
  
  /* Gallery interaction cleanup */
  .gallery-preview-modern .gallery-tile:hover img,
  .gallery-page-grid-modern .gallery-photo-card:hover img {
    transform: scale(1.03);
    filter: none;
  }
  
  .gallery-photo-caption,
  .gallery-preview-modern .tile-tag,
  .gallery-preview-modern .tile-glass {
    display: none !important;
  }
  
  /* Clean hex gallery style (no background cards, no rounded backing) */
  .gallery-section-decor::before,
  .gallery-section-decor::after {
    display: none !important;
  }
  
  .gallery-preview-modern,
  .gallery-page-grid-modern {
    row-gap: 1.05rem;
  }
  
  .gallery-preview-modern .gallery-tile,
  .gallery-page-grid-modern .gallery-photo-card {
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    aspect-ratio: 1 / 1.12;
    overflow: hidden;
    clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0 50%);
  }
  
  .gallery-preview-modern .gallery-tile::before,
  .gallery-preview-modern .gallery-tile::after,
  .gallery-page-grid-modern .gallery-photo-card::before,
  .gallery-page-grid-modern .gallery-photo-card::after {
    display: none !important;
  }
  
  .gallery-preview-modern .gallery-tile img,
  .gallery-page-grid-modern .gallery-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none !important;
    filter: none !important;
  }
  
  .gallery-preview-modern .gallery-tile:hover img,
  .gallery-page-grid-modern .gallery-photo-card:hover img {
    transform: scale(1.015) !important;
  }
  
  .gallery-preview-modern .gallery-tile {
    grid-column: span 6 !important;
  }
  
  @media (max-width: 991.98px) {
    .gallery-preview-modern .gallery-tile {
      grid-column: span 6 !important;
    }
  }
  
  @media (max-width: 575.98px) {
    .gallery-preview-modern .gallery-tile {
      grid-column: span 12 !important;
    }
  }
  
  /* Gallery mockup layout (rectangular mosaic) */
  .gallery-page-section {
    background: #faf6f0;
  }
  
  .gallery-page-section.gallery-section-decor::before,
  .gallery-page-section.gallery-section-decor::after {
    display: none !important;
  }
  
  .gallery-page-section .gallery-filterbar {
    background: #2d4a2d;
    border-radius: 14px;
    padding: 0.65rem;
    margin-bottom: 1rem;
  }
  
  .gallery-page-section .gallery-filter-btn {
    background: rgba(255, 255, 255, 0.12);
    border-color: transparent;
    color: rgba(255, 255, 255, 0.85);
  }
  
  .gallery-page-section .gallery-filter-btn.active,
  .gallery-page-section .gallery-filter-btn:hover {
    background: #4a7c59;
    color: #e8f4ea;
    box-shadow: none;
  }
  
  .gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 56px;
    gap: 12px;
  }
  
  .gallery-mosaic .mosaic-item { position: relative; }
  .gallery-mosaic .m1 { grid-column: 1 / span 7; grid-row: span 4; }
  .gallery-mosaic .m2 { grid-column: 8 / span 5; grid-row: span 2; }
  .gallery-mosaic .m3 { grid-column: 8 / span 5; grid-row: span 2; }
  .gallery-mosaic .m4 { grid-column: 1 / span 4; grid-row: span 3; }
  .gallery-mosaic .m5 { grid-column: 5 / span 4; grid-row: span 3; }
  .gallery-mosaic .m6 { grid-column: 9 / span 4; grid-row: span 3; }
  .gallery-mosaic .m7 { grid-column: 1 / span 5; grid-row: span 3; }
  .gallery-mosaic .m8 { grid-column: 6 / span 4; grid-row: span 3; }
  .gallery-mosaic .m9 { grid-column: 10 / span 3; grid-row: span 3; }
  
  .gallery-page-section .gallery-photo-card {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(45, 74, 45, 0.12);
    background: transparent;
    box-shadow: none;
  }
  
  .gallery-page-section .gallery-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    clip-path: none !important;
    transform: none !important;
    filter: none !important;
    transition: transform 260ms ease;
  }
  
  .gallery-page-section .gallery-photo-card:hover img {
    transform: scale(1.02) !important;
  }
  
  @media (max-width: 991.98px) {
    .gallery-mosaic {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-auto-rows: 150px;
    }
  
    .gallery-mosaic .m1,
    .gallery-mosaic .m2,
    .gallery-mosaic .m3,
    .gallery-mosaic .m4,
    .gallery-mosaic .m5,
    .gallery-mosaic .m6,
    .gallery-mosaic .m7,
    .gallery-mosaic .m8,
    .gallery-mosaic .m9 {
      grid-column: auto;
      grid-row: auto;
    }
  }
  
  @media (max-width: 575.98px) {
    .gallery-mosaic {
      grid-template-columns: 1fr;
      grid-auto-rows: 190px;
    }
  }
  
  /* Home gallery mosaic (no filters) */
  .home-gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 68px;
    gap: 12px;
  }
  
  .home-gallery-mosaic .home-mosaic-item {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(45, 74, 45, 0.12);
    background: transparent;
    box-shadow: none;
  }
  
  .home-gallery-mosaic .home-mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 240ms ease;
  }
  
  .home-gallery-mosaic .home-mosaic-item:hover img {
    transform: scale(1.02);
  }
  
  .home-gallery-mosaic .hm1 { grid-column: 1 / span 7; grid-row: span 4; }
  .home-gallery-mosaic .hm2 { grid-column: 8 / span 5; grid-row: span 2; }
  .home-gallery-mosaic .hm3 { grid-column: 8 / span 5; grid-row: span 2; }
  .home-gallery-mosaic .hm4 { grid-column: 1 / span 12; grid-row: span 3; }
  
  @media (max-width: 991.98px) {
    .home-gallery-mosaic {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-auto-rows: 170px;
    }
  
    .home-gallery-mosaic .hm1,
    .home-gallery-mosaic .hm2,
    .home-gallery-mosaic .hm3,
    .home-gallery-mosaic .hm4 {
      grid-column: auto;
      grid-row: auto;
    }
  }
  
  @media (max-width: 575.98px) {
    .home-gallery-mosaic {
      grid-template-columns: 1fr;
      grid-auto-rows: 220px;
    }
  }
  /* Home gallery upgrade: more photos, taller layout, subtle flower/camera decor */
  .home-gallery-mosaic {
    grid-auto-rows: 78px;
  }
  
  .home-gallery-mosaic .home-mosaic-item img {
    transition: transform 280ms ease;
  }
  
  .home-gallery-mosaic .hm1 { grid-column: 1 / span 7; grid-row: 1 / span 5; }
  .home-gallery-mosaic .hm2 { grid-column: 8 / span 5; grid-row: 1 / span 2; }
  .home-gallery-mosaic .hm3 { grid-column: 8 / span 5; grid-row: 3 / span 3; }
  .home-gallery-mosaic .hm4 { grid-column: 1 / span 4; grid-row: 6 / span 3; }
  .home-gallery-mosaic .hm5 { grid-column: 5 / span 4; grid-row: 6 / span 3; }
  .home-gallery-mosaic .hm6 { grid-column: 9 / span 4; grid-row: 6 / span 3; }
  .home-gallery-mosaic .hm7 { grid-column: 1 / span 6; grid-row: 9 / span 3; }
  .home-gallery-mosaic .hm8 { grid-column: 7 / span 6; grid-row: 9 / span 3; }
  .home-gallery-mosaic .hm9 { grid-column: 1 / span 5; grid-row: 12 / span 3; }
  .home-gallery-mosaic .hm10 { grid-column: 6 / span 7; grid-row: 12 / span 3; }
  
  .home-gallery-decor::before {
    width: 190px;
    height: 190px;
    left: 1%;
    top: 9%;
    opacity: 0.14;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%2399b7a1' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M60 104V74'/%3E%3Cpath d='M60 45c7-8 18-8 24 0 6 8 3 20-8 26-7 4-12 8-16 12-4-4-9-8-16-12-11-6-14-18-8-26 6-8 17-8 24 0Z'/%3E%3Cpath d='M60 45c-7-8-18-8-24 0M60 45c7-8 18-8 24 0'/%3E%3C/g%3E%3C/svg%3E");
  }
  
  .home-gallery-decor::after {
    width: 184px;
    height: 184px;
    right: 1.5%;
    bottom: 9%;
    opacity: 0.14;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%2399b7a1' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='22' y='36' width='76' height='52' rx='12'/%3E%3Cpath d='M44 36l7-10h18l7 10'/%3E%3Ccircle cx='60' cy='62' r='14'/%3E%3Ccircle cx='84' cy='50' r='2.5'/%3E%3C/g%3E%3C/svg%3E");
  }
  
  @media (max-width: 991.98px) {
    .home-gallery-mosaic {
      grid-auto-rows: 210px;
    }
  
    .home-gallery-mosaic .hm1,
    .home-gallery-mosaic .hm2,
    .home-gallery-mosaic .hm3,
    .home-gallery-mosaic .hm4,
    .home-gallery-mosaic .hm5,
    .home-gallery-mosaic .hm6,
    .home-gallery-mosaic .hm7,
    .home-gallery-mosaic .hm8,
    .home-gallery-mosaic .hm9,
    .home-gallery-mosaic .hm10 {
      grid-column: auto;
      grid-row: auto;
    }
  
    .home-gallery-decor::before,
    .home-gallery-decor::after {
      width: 132px;
      height: 132px;
      opacity: 0.12;
    }
  }
  
  @media (max-width: 575.98px) {
    .home-gallery-mosaic {
      grid-auto-rows: 250px;
    }
  
    .home-gallery-decor::before {
      left: -0.8rem;
      top: 3%;
    }
  
    .home-gallery-decor::after {
      right: -0.7rem;
      bottom: 4%;
    }
  }
  /* Home gallery final fix: restore decor icons and place them in empty visual zones */
  .home-gallery-decor::before,
  .home-gallery-decor::after {
    display: block !important;
    z-index: 0;
  }
  
  .home-gallery-decor .container {
    position: relative;
    z-index: 1;
  }
  
  .home-gallery-decor::before {
    left: -0.6%;
    top: 16%;
  }
  
  .home-gallery-decor::after {
    right: -0.6%;
    bottom: 11%;
  }
  
  @media (max-width: 991.98px) {
    .home-gallery-decor::before {
      left: -0.5rem;
      top: 8%;
    }
  
    .home-gallery-decor::after {
      right: -0.5rem;
      bottom: 7%;
    }
  }
  /* Home gallery decor rendered as real elements for browser-safe visibility */
  .home-gallery-decor::before,
  .home-gallery-decor::after {
    display: none !important;
  }
  
  .home-gallery-float {
    position: absolute;
    display: block;
    pointer-events: none;
    z-index: 0;
    opacity: 0.16;
    background-repeat: no-repeat;
    background-size: contain;
  }
  
  .home-gallery-flower {
    width: 190px;
    height: 190px;
    left: -0.6%;
    top: 16%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%2399b7a1' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M60 104V74'/%3E%3Cpath d='M60 45c7-8 18-8 24 0 6 8 3 20-8 26-7 4-12 8-16 12-4-4-9-8-16-12-11-6-14-18-8-26 6-8 17-8 24 0Z'/%3E%3Cpath d='M60 45c-7-8-18-8-24 0M60 45c7-8 18-8 24 0'/%3E%3C/g%3E%3C/svg%3E");
  }
  
  .home-gallery-camera {
    width: 184px;
    height: 184px;
    right: -0.6%;
    bottom: 11%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%2399b7a1' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='22' y='36' width='76' height='52' rx='12'/%3E%3Cpath d='M44 36l7-10h18l7 10'/%3E%3Ccircle cx='60' cy='62' r='14'/%3E%3Ccircle cx='84' cy='50' r='2.5'/%3E%3C/g%3E%3C/svg%3E");
  }
  
  @media (max-width: 991.98px) {
    .home-gallery-float {
      width: 132px;
      height: 132px;
      opacity: 0.13;
    }
  
    .home-gallery-flower {
      left: -0.5rem;
      top: 8%;
    }
  
    .home-gallery-camera {
      right: -0.5rem;
      bottom: 7%;
    }
  }
  
  @media (max-width: 575.98px) {
    .home-gallery-float {
      width: 108px;
      height: 108px;
      opacity: 0.11;
    }
  
    .home-gallery-flower {
      left: -0.7rem;
      top: 3%;
    }
  
    .home-gallery-camera {
      right: -0.6rem;
      bottom: 4%;
    }
  }
  /* Home gallery emergency final: equal spacing + always-visible decor */
  .home-gallery-mosaic {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    grid-auto-rows: 205px !important;
    column-gap: 14px !important;
    row-gap: 14px !important;
  }
  
  .home-gallery-mosaic .home-mosaic-item {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  
  .home-gallery-mosaic .home-mosaic-item img {
    border-radius: 12px;
  }
  
  .home-gallery-float {
    z-index: 2 !important;
    opacity: 0.34 !important;
    filter: drop-shadow(0 10px 18px rgba(53, 88, 61, 0.18));
  }
  
  .home-gallery-flower {
    width: 170px !important;
    height: 170px !important;
    left: 0.5% !important;
    top: 8% !important;
  }
  
  .home-gallery-camera {
    width: 168px !important;
    height: 168px !important;
    right: 0.4% !important;
    bottom: 8% !important;
  }
  
  .home-gallery-decor .container {
    position: relative;
    z-index: 1;
  }
  
  @media (max-width: 1199.98px) {
    .home-gallery-mosaic {
      grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
      grid-auto-rows: 195px !important;
    }
  }
  
  @media (max-width: 991.98px) {
    .home-gallery-mosaic {
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      grid-auto-rows: 220px !important;
    }
  
    .home-gallery-float {
      opacity: 0.28 !important;
    }
  
    .home-gallery-flower {
      width: 130px !important;
      height: 130px !important;
      left: 0.2rem !important;
      top: 5% !important;
    }
  
    .home-gallery-camera {
      width: 128px !important;
      height: 128px !important;
      right: 0.2rem !important;
      bottom: 5% !important;
    }
  }
  
  @media (max-width: 575.98px) {
    .home-gallery-mosaic {
      grid-template-columns: 1fr !important;
      grid-auto-rows: 250px !important;
    }
  
    .home-gallery-float {
      opacity: 0.22 !important;
    }
  
    .home-gallery-flower {
      width: 102px !important;
      height: 102px !important;
      left: 0.15rem !important;
      top: 2.5% !important;
    }
  
    .home-gallery-camera {
      width: 100px !important;
      height: 100px !important;
      right: 0.15rem !important;
      bottom: 2.5% !important;
    }
  }
  /* Landmarks section on homepage */
  .landmarks-section {
    position: relative;
    background:
      radial-gradient(circle at 8% 10%, rgba(220, 232, 220, 0.32), transparent 22%),
      radial-gradient(circle at 90% 92%, rgba(231, 214, 188, 0.34), transparent 24%),
      linear-gradient(180deg, rgba(255, 251, 244, 0.92), rgba(247, 239, 226, 0.92));
  }
  
  .landmark-card {
    height: 100%;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(45, 74, 45, 0.14);
    background: rgba(255, 252, 247, 0.86);
    box-shadow: 0 16px 34px rgba(22, 35, 26, 0.1);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  }
  
  .landmark-card img {
    width: 100%;
    height: 235px;
    object-fit: cover;
    transition: transform 360ms ease;
  }
  
  .landmark-card-body {
    padding: 1rem 1.05rem 1.1rem;
  }
  
  .landmark-card h3 {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.35;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--forest-900);
  }
  
  .landmark-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 40px rgba(22, 35, 26, 0.14);
    border-color: rgba(53, 88, 61, 0.24);
  }
  
  .landmark-card:hover img {
    transform: scale(1.04);
  }
  
  @media (max-width: 575.98px) {
    .landmark-card img {
      height: 210px;
    }
  }
  /* Landmarks cards refined: distance + more button + dashed info panel */
  .landmark-card-body {
    position: relative;
    padding: 1rem 1.05rem 1.1rem;
    background: rgba(255, 253, 249, 0.96);
    border: 1px dashed rgba(53, 88, 61, 0.32);
    border-top: 0;
  }
  
  .landmark-card-body::after {
    content: "";
    position: absolute;
    right: 0.75rem;
    bottom: 0.65rem;
    width: 34px;
    height: 34px;
    opacity: 0.16;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%2335583d' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M60 103V70'/%3E%3Cpath d='m37 70 23-38 23 38H37Z'/%3E%3C/g%3E%3C/svg%3E");
  }
  
  .landmark-distance {
    margin: 0.55rem 0 0;
    color: var(--text-700);
    font-size: 0.94rem;
    font-weight: 700;
  }
  
  .landmark-more-btn {
    margin-top: 0.85rem;
    padding: 0.52rem 1rem;
    font-size: 0.86rem;
  }
  /* Home gallery spacing safeguard: always visible separation between stacked tiles */
  .home-gallery-mosaic .home-mosaic-item {
    padding: 6px !important;
    background: #f7efe2 !important;
    border-radius: 14px !important;
  }
  
  .home-gallery-mosaic .home-mosaic-item img {
    border-radius: 10px !important;
  }
  /* Final home gallery reset: no tile background/border, equal image heights and clean spacing */
  .home-gallery-mosaic {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    grid-auto-rows: 210px !important;
    gap: 14px !important;
  }
  
  .home-gallery-mosaic .home-mosaic-item {
    grid-column: auto !important;
    grid-row: auto !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: hidden;
  }
  
  .home-gallery-mosaic .home-mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px !important;
  }
  
  @media (max-width: 1199.98px) {
    .home-gallery-mosaic {
      grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
      grid-auto-rows: 200px !important;
    }
  }
  
  @media (max-width: 991.98px) {
    .home-gallery-mosaic {
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      grid-auto-rows: 220px !important;
    }
  }
  
  @media (max-width: 575.98px) {
    .home-gallery-mosaic {
      grid-template-columns: 1fr !important;
      grid-auto-rows: 240px !important;
    }
  }
  /* Lightbox caption hidden */
  .site-lightbox .lightbox-caption {
    display: none !important;
  }
  /* Home gallery hard fix: consistent gaps + preserved radius on hover */
  .home-gallery-mosaic {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    grid-auto-rows: 210px !important;
    row-gap: 14px !important;
    column-gap: 14px !important;
  }
  
  .home-gallery-mosaic > a.home-mosaic-item,
  .home-gallery-mosaic > a.hm1,
  .home-gallery-mosaic > a.hm2,
  .home-gallery-mosaic > a.hm3,
  .home-gallery-mosaic > a.hm4,
  .home-gallery-mosaic > a.hm5,
  .home-gallery-mosaic > a.hm6,
  .home-gallery-mosaic > a.hm7,
  .home-gallery-mosaic > a.hm8,
  .home-gallery-mosaic > a.hm9,
  .home-gallery-mosaic > a.hm10 {
    grid-column: auto !important;
    grid-row: auto !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: none !important;
  }
  
  .home-gallery-mosaic > a.home-mosaic-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: inherit !important;
    display: block !important;
    transform: scale(1) !important;
  }
  
  .home-gallery-mosaic > a.home-mosaic-item:hover img {
    transform: scale(1.02) !important;
    border-radius: inherit !important;
  }
  
  @media (max-width: 1199.98px) {
    .home-gallery-mosaic {
      grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
      grid-auto-rows: 200px !important;
    }
  }
  
  @media (max-width: 991.98px) {
    .home-gallery-mosaic {
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      grid-auto-rows: 220px !important;
    }
  }
  
  @media (max-width: 575.98px) {
    .home-gallery-mosaic {
      grid-template-columns: 1fr !important;
      grid-auto-rows: 240px !important;
    }
  }
  /* Restore hover motion for home gallery after layout fix */
  .home-gallery-mosaic > a.home-mosaic-item img {
    transition: transform 280ms ease !important;
  }
  
  .home-gallery-mosaic > a.home-mosaic-item:hover img {
    transform: scale(1.04) !important;
  }
  /* Home gallery hover: lift + zoom (as before, more visible) */
  .home-gallery-mosaic > a.home-mosaic-item {
    transition: transform 260ms ease, box-shadow 260ms ease !important;
  }
  
  .home-gallery-mosaic > a.home-mosaic-item:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 14px 30px rgba(22, 35, 26, 0.18) !important;
  }
  
  .home-gallery-mosaic > a.home-mosaic-item img {
    transition: transform 320ms ease !important;
  }
  
  .home-gallery-mosaic > a.home-mosaic-item:hover img {
    transform: scale(1.055) !important;
  }
  
  
  /* Landmarks: green premium variant (white text, white dashed border, white button) */
  .landmark-card {
    background: linear-gradient(155deg, #35583d, #294633) !important;
    border-color: rgba(255, 255, 255, 0.28) !important;
    box-shadow: 0 18px 38px rgba(24, 37, 28, 0.22) !important;
  }
  
  .landmark-card-body {
    background: transparent !important;
    border: 1px dashed rgba(255, 255, 255, 0.58) !important;
    border-top: 0 !important;
  }
  
  .landmark-card h3,
  .landmark-distance {
    color: #ffffff !important;
  }
  
  .landmark-card-body::after {
    display: none !important;
  }
  
  .landmark-more-btn {
    background: #ffffff !important;
    border: 1px solid #ffffff !important;
    color: #2f4f37 !important;
    box-shadow: 0 10px 24px rgba(255, 255, 255, 0.18) !important;
  }
  
  .landmark-more-btn:hover,
  .landmark-more-btn:focus {
    background: #f4f8f5 !important;
    border-color: #f4f8f5 !important;
    color: #294633 !important;
  }
  /* Calendar selectors */
  .calendar-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }
  
  .calendar-controls .form-select {
    min-height: 44px;
    font-weight: 700;
  }
  /* Calendar layout: single column, compact controls */
  .calendar-grid {
    grid-template-columns: 1fr !important;
    max-width: 520px;
  }
  
  .calendar-controls {
    grid-template-columns: auto 1fr 1fr auto;
    align-items: center;
  }
  
  .calendar-nav-btn {
    min-width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  /* Calendar header rows full width */
  .calendar-legend {
    width: 100%;
    justify-content: flex-start;
  }
  
  .calendar-controls {
    max-width: 520px;
  }
  /* Center calendar header + controls */
  .calendar-legend {
    justify-content: center !important;
  }
  
  .calendar-controls {
    margin-left: auto;
    margin-right: auto;
  }
  
  .calendar-controls,
  .calendar-legend {
    text-align: center;
  }
  /* Center the calendar card itself */
  .calendar-grid {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .calendar-month {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  /* Calendar controls premium polish */
  .calendar-controls {
    max-width: 560px;
    padding: 0.5rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.9), rgba(243, 234, 217, 0.82));
    border: 1px solid rgba(92, 73, 49, 0.1);
    box-shadow: 0 14px 34px rgba(24, 37, 28, 0.08);
  }
  
  .calendar-controls .form-select {
    min-height: 48px;
    border-radius: 16px;
    border-color: rgba(53, 88, 61, 0.14);
    background: rgba(255, 255, 255, 0.88);
    color: var(--forest-900);
    font-size: 0.96rem;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  }
  
  .calendar-controls .form-select:hover {
    border-color: rgba(53, 88, 61, 0.24);
  }
  
  .calendar-controls .form-select:focus {
    background: #fff;
    border-color: rgba(53, 88, 61, 0.42);
    box-shadow: 0 0 0 0.2rem rgba(53, 88, 61, 0.1);
  }
  
  .calendar-nav-btn {
    width: 44px;
    min-width: 44px;
    height: 44px;
    border-radius: 14px;
    border-color: rgba(53, 88, 61, 0.16) !important;
    background: rgba(255, 255, 255, 0.82) !important;
    color: var(--forest-800) !important;
    box-shadow: 0 10px 22px rgba(24, 37, 28, 0.08);
  }
  
  .calendar-nav-btn:hover,
  .calendar-nav-btn:focus {
    background: linear-gradient(135deg, var(--forest-700), var(--forest-900)) !important;
    border-color: transparent !important;
    color: #fff !important;
    box-shadow: 0 14px 28px rgba(32, 53, 38, 0.18);
  }
  
  @media (max-width: 575.98px) {
    .calendar-controls {
      grid-template-columns: auto 1fr auto;
      gap: 0.55rem;
      max-width: 100%;
    }
  
    .calendar-controls .form-select:last-of-type {
      grid-column: 2 / 3;
    }
  }
  /* Final calendar alignment + border removal */
  .calendar-controls {
    width: 100%;
    max-width: 560px;
    border: 0 !important;
  }
  
  .calendar-grid {
    width: 100%;
    max-width: 560px !important;
  }
  /* Footer brand readability fix */
  .site-footer .footer-brand,
  .site-footer .footer-brand span {
    color: #fff;
  }
  


@import "Base/breakpoints.css";
