    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --bg: #f6f2ea;
      --bg-soft: #ece3d2;
      --card: #fffcf6;
      --ink: #1f2d2b;
      --ink-soft: #5d6a67;
      --line: rgba(24, 47, 62, 0.12);
      --line-strong: rgba(24, 47, 62, 0.28);
      --sea: #1f5d81;
      --sea-soft: #89b7cf;
      --accent: #c46835;
      --accent-dark: #a65224;
      --white: #ffffff;
      --radius-lg: 20px;
      --radius-xl: 30px;
      --shadow-soft: 0 16px 45px rgba(20, 42, 54, 0.1);
      --shadow-strong: 0 28px 90px rgba(20, 42, 54, 0.18);
      --ease: 280ms cubic-bezier(0.2, 0.65, 0.2, 1);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Sora", sans-serif;
      color: var(--ink);
      background:
        radial-gradient(1200px 620px at 8% -15%, rgba(31, 93, 129, 0.16), transparent 62%),
        radial-gradient(1000px 550px at 95% -20%, rgba(196, 104, 53, 0.17), transparent 58%),
        var(--bg);
      line-height: 1.6;
      overflow-x: clip;
      min-height: 100vh;
    }

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

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

    .container {
      width: min(1140px, calc(100% - 3rem));
      margin-inline: auto;
    }

    .section-pad {
      padding: clamp(4.2rem, 8vw, 7.8rem) 0;
    }

    .skip-link {
      position: absolute;
      left: 1rem;
      top: -100%;
      background: var(--ink);
      color: var(--white);
      padding: 0.7rem 1rem;
      border-radius: 8px;
      z-index: 110;
      transition: top var(--ease);
    }

    .skip-link:focus {
      top: 1rem;
    }

    .scroll-progress {
      position: fixed;
      left: 0;
      top: 0;
      height: 3px;
      width: 100%;
      background: linear-gradient(90deg, var(--sea), var(--accent));
      transform: scaleX(0);
      transform-origin: 0 50%;
      z-index: 120;
    }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      backdrop-filter: blur(16px);
      background: rgba(246, 242, 234, 0.8);
      border-bottom: 1px solid transparent;
      transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
    }

    .site-header.scrolled {
      border-bottom-color: var(--line);
      box-shadow: 0 10px 30px rgba(20, 42, 54, 0.08);
      background: rgba(246, 242, 234, 0.9);
    }

    .header-row {
      min-height: 78px;
      display: flex;
      align-items: center;
      gap: 1.2rem;
      position: relative;
    }

    .brand {
      font-family: "Fraunces", serif;
      font-size: 1.75rem;
      font-weight: 400;
      letter-spacing: 0.015em;
      line-height: 1;
      margin-right: auto;
      white-space: nowrap;
    }

    .brand span {
      color: var(--accent);
      font-style: italic;
      font-weight: 500;
    }

    .site-nav {
      display: flex;
      align-items: center;
      gap: 1.45rem;
    }

    .site-nav a {
      font-size: 0.75rem;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      font-weight: 600;
      color: var(--ink-soft);
      padding-block: 0.35rem;
      transition: color var(--ease);
    }

    .site-nav a:hover {
      color: var(--sea);
    }

    .header-tools {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 0.8rem;
      flex-shrink: 1;
    }

    .lang-switcher {
      display: flex;
      align-items: center;
      gap: 0.28rem;
      white-space: nowrap;
    }

    .lang-btn {
      font-size: 0.66rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      font-weight: 600;
      border: 1px solid var(--line-strong);
      border-radius: 999px;
      padding: 0.35rem 0.55rem;
      color: var(--ink-soft);
      transition: color var(--ease), border-color var(--ease), background var(--ease);
    }

    .lang-btn:hover,
    .lang-btn.active {
      color: var(--white);
      border-color: var(--sea);
      background: var(--sea);
    }

    .nav-toggle {
      display: none;
      border: 1px solid var(--line-strong);
      background: var(--white);
      color: var(--ink);
      padding: 0.55rem 0.8rem;
      border-radius: 999px;
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 700;
      cursor: pointer;
    }

    main {
      padding-top: 86px;
    }

    .hero {
      padding: clamp(3.8rem, 7vw, 7rem) 0 3.4rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 2.5rem;
      align-items: center;
    }

    .kicker {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--sea);
      font-weight: 700;
      margin-bottom: 1.3rem;
    }

    .hero h1 {
      font-family: "Fraunces", serif;
      font-size: clamp(2.3rem, 6vw, 4.55rem);
      line-height: 0.98;
      font-weight: 500;
      max-width: 14ch;
      margin-bottom: 1.3rem;
      color: #172321;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--accent);
      font-weight: 500;
    }

    .hero-lead {
      font-size: 1.03rem;
      color: var(--ink-soft);
      max-width: 60ch;
    }

    .hero-chips {
      margin-top: 1.5rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem;
    }

    .hero-chip {
      border: 1px solid rgba(31, 93, 129, 0.25);
      color: var(--sea);
      border-radius: 999px;
      padding: 0.36rem 0.75rem;
      font-size: 0.73rem;
      letter-spacing: 0.03em;
      background: rgba(137, 183, 207, 0.16);
    }

    .hero-actions {
      margin-top: 2rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      padding: 0.88rem 1.55rem;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 700;
      transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease);
      will-change: transform;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: var(--accent);
      color: var(--white);
      box-shadow: 0 12px 28px rgba(166, 82, 36, 0.25);
    }

    .btn-primary:hover {
      background: var(--accent-dark);
    }

    .btn-ghost {
      border: 1px solid var(--line-strong);
      color: var(--ink);
      background: rgba(255, 255, 255, 0.72);
    }

    .btn-ghost:hover {
      border-color: var(--sea);
      color: var(--sea);
      box-shadow: 0 10px 22px rgba(31, 93, 129, 0.13);
    }

    .hero-stats {
      margin-top: 1.8rem;
      list-style: none;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.75rem;
    }

    .hero-stats li {
      background: rgba(255, 252, 246, 0.74);
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 0.85rem 0.95rem;
    }

    .hero-stat-value {
      display: block;
      font-family: "Fraunces", serif;
      font-size: 1.55rem;
      line-height: 1;
      color: var(--sea);
    }

    .hero-stat-label {
      display: block;
      margin-top: 0.25rem;
      font-size: 0.68rem;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--ink-soft);
    }

    .hero-media {
      position: relative;
      min-height: 560px;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-strong);
      isolation: isolate;
      background: #234f6d url('https://a0.muscache.com/im/pictures/c14d80c1-ac53-48e5-894e-7e1f6ef5fdb4.jpg?im_w=1440') center/cover no-repeat;
    }

    .hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(18, 39, 51, 0.1), rgba(18, 39, 51, 0.72));
      z-index: 1;
    }

    .hero-main {
      display: none;
    }

    .hero-float {
      position: absolute;
      left: 1.2rem;
      bottom: 1.2rem;
      z-index: 2;
      width: min(45%, 240px);
      border-radius: 18px;
      border: 4px solid rgba(255, 255, 255, 0.9);
      box-shadow: 0 18px 34px rgba(15, 30, 40, 0.35);
      animation: floatCard 7s ease-in-out infinite;
    }

    .hero-caption {
      position: absolute;
      right: 1.2rem;
      bottom: 1.2rem;
      z-index: 2;
      max-width: 16rem;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(6px);
      padding: 0.7rem 0.85rem;
      font-size: 0.77rem;
      color: #1d2f40;
      border: 1px solid rgba(29, 47, 64, 0.18);
    }

    .value-strip {
      padding: 1.4rem 0 0.8rem;
    }

    .value-grid {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.8rem;
    }

    .value-grid li {
      background: rgba(255, 255, 255, 0.74);
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 1rem;
    }

    .value-grid strong {
      display: block;
      font-family: "Fraunces", serif;
      font-size: 1.45rem;
      line-height: 1;
      color: var(--sea);
      margin-bottom: 0.2rem;
    }

    .value-grid span {
      color: var(--ink-soft);
      font-size: 0.78rem;
      letter-spacing: 0.04em;
    }

    .section-head {
      max-width: 700px;
      margin-bottom: 2.1rem;
    }

    .eyebrow {
      font-size: 0.7rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--sea);
      margin-bottom: 0.7rem;
    }

    .title {
      font-family: "Fraunces", serif;
      font-size: clamp(2rem, 4vw, 3.45rem);
      line-height: 1.06;
      font-weight: 500;
      margin-bottom: 0.75rem;
      color: #172422;
    }

    .title em {
      color: var(--accent);
      font-style: italic;
    }

    .intro {
      color: var(--ink-soft);
      font-size: 0.98rem;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.3rem;
    }

    .about-copy {
      background: rgba(255, 252, 246, 0.74);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: clamp(1.5rem, 2.4vw, 2.1rem);
    }

    .about-copy p+p {
      margin-top: 1rem;
    }

    .about-panel {
      background: linear-gradient(155deg, #fff7e8, #f6ebda);
      border: 1px solid rgba(196, 104, 53, 0.25);
      border-radius: var(--radius-lg);
      padding: clamp(1.5rem, 2.4vw, 2.1rem);
      box-shadow: var(--shadow-soft);
    }

    .about-panel h3 {
      font-family: "Fraunces", serif;
      font-size: 1.35rem;
      color: #1c2d3a;
      margin-bottom: 0.9rem;
      font-weight: 500;
    }

    .about-list {
      list-style: none;
      display: grid;
      gap: 0.75rem;
    }

    .about-list li {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 0.65rem;
      align-items: start;
      font-size: 0.9rem;
      color: #3a4b56;
    }

    .about-list li::before {
      content: "●";
      color: var(--accent);
      line-height: 1;
      margin-top: 0.15rem;
    }

    .gallery {
      background: var(--bg-soft);
      border-top: 1px solid rgba(24, 47, 62, 0.08);
      border-bottom: 1px solid rgba(24, 47, 62, 0.08);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-auto-rows: 220px;
      gap: 12px;
    }

    .gallery-grid article {
      position: relative;
      overflow: hidden;
      border-radius: 16px;
      box-shadow: var(--shadow-soft);
    }

    .gallery-grid article:first-child {
      grid-row: span 2;
    }

    .gallery-grid img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 900ms cubic-bezier(0.2, 0.75, 0.2, 1);
    }

    .gallery-grid article:hover img {
      transform: scale(1.07);
    }

    .gallery-grid figcaption {
      position: absolute;
      left: 0.8rem;
      bottom: 0.75rem;
      font-size: 0.74rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--white);
      text-shadow: 0 4px 16px rgba(0, 0, 0, 0.55);
      font-weight: 600;
    }

    .spaces-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }

    .space-card {
      background: rgba(255, 255, 255, 0.75);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 1.45rem;
      box-shadow: var(--shadow-soft);
    }

    .space-card h3 {
      font-family: "Fraunces", serif;
      color: #203140;
      font-size: 1.32rem;
      margin-bottom: 0.8rem;
      font-weight: 500;
    }

    .space-card ul {
      list-style: none;
      display: grid;
      gap: 0.65rem;
      color: var(--ink-soft);
      font-size: 0.9rem;
    }

    .space-card li {
      padding-left: 1rem;
      position: relative;
    }

    .space-card li::before {
      content: "-";
      position: absolute;
      left: 0;
      color: var(--accent);
    }

    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.9rem;
    }

    .amenity {
      border-radius: 16px;
      border: 1px solid var(--line);
      background: rgba(255, 252, 246, 0.8);
      padding: 1rem;
      transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
    }

    .amenity:hover {
      transform: translateY(-4px);
      border-color: rgba(31, 93, 129, 0.34);
      box-shadow: 0 14px 30px rgba(31, 93, 129, 0.14);
    }

    .amenity-icon {
      width: 2.4rem;
      height: 2.4rem;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(145deg, rgba(31, 93, 129, 0.2), rgba(137, 183, 207, 0.26));
      color: var(--sea);
      font-size: 1.1rem;
      margin-bottom: 0.7rem;
    }

    .amenity h3 {
      font-family: "Fraunces", serif;
      font-size: 1.05rem;
      color: #203140;
      margin-bottom: 0.35rem;
      font-weight: 500;
    }

    .amenity p {
      font-size: 0.82rem;
      color: var(--ink-soft);
    }

    .reviews {
      background: #1d3137;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .reviews::before,
    .reviews::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      pointer-events: none;
    }

    .reviews::before {
      width: 380px;
      height: 380px;
      right: -120px;
      top: -130px;
      background: rgba(137, 183, 207, 0.15);
    }

    .reviews::after {
      width: 460px;
      height: 460px;
      left: -180px;
      bottom: -220px;
      background: rgba(196, 104, 53, 0.14);
    }

    .reviews .eyebrow,
    .reviews .intro {
      color: #add0e3;
    }

    .reviews .title {
      color: var(--white);
    }

    .review-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
      position: relative;
      z-index: 1;
    }

    .review-card {
      border-radius: 16px;
      padding: 1.35rem;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(2px);
    }

    .review-stars {
      color: #ffd27f;
      letter-spacing: 0.16em;
      font-size: 0.82rem;
      margin-bottom: 0.7rem;
    }

    .review-card p {
      font-family: "Fraunces", serif;
      font-size: 1rem;
      line-height: 1.65;
      margin-bottom: 0.95rem;
      color: rgba(255, 255, 255, 0.9);
      font-style: italic;
    }

    .review-card span {
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 0.68rem;
      color: #a7cee2;
      font-weight: 600;
    }

    .rating-row {
      margin-top: 1.4rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem;
      position: relative;
      z-index: 1;
    }

    .rating-pill {
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 999px;
      padding: 0.5rem 0.85rem;
      font-size: 0.72rem;
      color: #dfedf4;
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      letter-spacing: 0.04em;
    }

    .rating-pill strong {
      font-family: "Fraunces", serif;
      color: #ffd8a5;
      font-size: 1.05rem;
      line-height: 1;
      font-weight: 500;
    }

    .location-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 1.2rem;
      align-items: stretch;
    }

    .distance-card,
    .map-card {
      border-radius: var(--radius-lg);
      border: 1px solid var(--line);
      background: rgba(255, 252, 246, 0.8);
      overflow: hidden;
    }

    .distance-card {
      padding: 1.3rem;
    }

    .distance-list {
      list-style: none;
      display: grid;
      gap: 0.9rem;
    }

    .distance-list li {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 0.7rem;
      border-bottom: 1px solid rgba(24, 47, 62, 0.08);
      padding-bottom: 0.7rem;
      font-size: 0.9rem;
      color: #2f414d;
    }

    .distance-list li:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .distance-list span:last-child {
      color: var(--accent);
      font-weight: 600;
      font-size: 0.81rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .map-card iframe {
      width: 100%;
      height: 100%;
      min-height: 360px;
      border: 0;
      filter: saturate(0.92) contrast(1.02);
    }

    .map-meta {
      padding: 0.9rem 1rem;
      border-top: 1px solid rgba(24, 47, 62, 0.08);
      background: #f7efe0;
      font-size: 0.82rem;
      color: #354855;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.8rem;
      flex-wrap: wrap;
    }

    .map-meta a {
      color: var(--sea);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 700;
      font-size: 0.7rem;
    }

    .booking {
      background: var(--bg-soft);
      border-top: 1px solid rgba(24, 47, 62, 0.08);
    }

    .booking-panel {
      border-radius: var(--radius-xl);
      border: 1px solid rgba(24, 47, 62, 0.12);
      background: linear-gradient(145deg, #fffdf8, #f2e9d8);
      box-shadow: var(--shadow-soft);
      padding: clamp(1.5rem, 3vw, 2.4rem);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      align-items: start;
    }

    .booking h3 {
      font-family: "Fraunces", serif;
      font-size: clamp(1.55rem, 3vw, 2.35rem);
      line-height: 1.05;
      margin-bottom: 0.9rem;
      color: #1c2d3a;
      font-weight: 500;
    }

    .booking p {
      color: #4a5a63;
      font-size: 0.93rem;
    }

    .discount-list {
      list-style: none;
      margin-top: 1rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .discount-list li {
      border-radius: 999px;
      background: rgba(196, 104, 53, 0.12);
      border: 1px solid rgba(196, 104, 53, 0.34);
      color: #8b431d;
      padding: 0.35rem 0.65rem;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .booking-links {
      display: grid;
      gap: 0.62rem;
    }

    .booking-link {
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 12px;
      padding: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.11em;
      font-size: 0.73rem;
      font-weight: 700;
      color: var(--white);
      transition: transform var(--ease), filter var(--ease), box-shadow var(--ease);
    }

    .booking-link:hover {
      transform: translateY(-2px);
      filter: brightness(0.96);
      box-shadow: 0 14px 30px rgba(24, 47, 62, 0.18);
    }

    .booking-airbnb {
      background: #ff5a5f;
    }

    .booking-vrbo {
      background: #0f4f93;
    }

    .booking-wa {
      background: #28ba5f;
    }

    .booking-mail {
      background: var(--sea);
    }

    .booking-note {
      margin-top: 0.8rem;
      font-size: 0.74rem;
      color: #4b5b66;
      text-align: center;
    }

    .faq-list {
      display: grid;
      gap: 0.7rem;
      margin-top: 1rem;
    }

    details {
      border-radius: 14px;
      border: 1px solid var(--line);
      background: rgba(255, 252, 246, 0.74);
      padding: 0.95rem 1rem;
    }

    summary {
      list-style: none;
      cursor: pointer;
      font-size: 0.9rem;
      font-weight: 600;
      color: #243440;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.7rem;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary::after {
      content: "+";
      color: var(--accent);
      font-size: 1.1rem;
      line-height: 1;
    }

    details[open] summary::after {
      content: "-";
    }

    details p {
      margin-top: 0.65rem;
      font-size: 0.86rem;
      color: #56656a;
    }

    .contact-band {
      margin-top: 2rem;
      display: flex;
      gap: 0.6rem;
      flex-wrap: wrap;
    }

    .contact-chip {
      border-radius: 999px;
      border: 1px solid var(--line-strong);
      color: #324754;
      padding: 0.45rem 0.75rem;
      font-size: 0.72rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-weight: 600;
      transition: color var(--ease), border-color var(--ease), background var(--ease);
    }

    .contact-chip:hover {
      border-color: var(--sea);
      color: var(--sea);
      background: rgba(137, 183, 207, 0.15);
    }

    footer {
      border-top: 1px solid rgba(24, 47, 62, 0.12);
      padding: 2rem 0 2.7rem;
      text-align: center;
      font-size: 0.76rem;
      color: #55656e;
      letter-spacing: 0.04em;
    }

    footer p + p {
      margin-top: 0.55rem;
    }

    footer strong {
      color: var(--accent);
      font-weight: 700;
    }

    .dev-credit {
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #60717a;
    }

    .dev-credit a {
      color: var(--sea);
      text-decoration: none;
      border-bottom: 1px solid rgba(31, 93, 129, 0.45);
      padding-bottom: 1px;
      transition: color var(--ease), border-color var(--ease);
    }

    .dev-credit a:hover {
      color: var(--accent);
      border-color: rgba(196, 104, 53, 0.65);
    }

    [data-reveal] {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
    }

    [data-reveal].is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes floatCard {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-10px);
      }
    }

    /* ===================================================
       EXPLORE PAGE STYLES
    =================================================== */

    .page-back {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--sea);
      margin-bottom: 1.3rem;
      transition: color var(--ease), gap var(--ease);
    }

    .page-back:hover {
      color: var(--accent);
      gap: 0.6rem;
    }

    .explore-distances {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.75rem;
      padding: 1.5rem 0 0;
    }

    .explore-dist-card {
      background: rgba(255, 252, 246, 0.74);
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 0.9rem 1rem;
      text-align: center;
    }

    .explore-dist-card strong {
      display: block;
      font-family: "Fraunces", serif;
      font-size: 0.95rem;
      color: var(--sea);
      margin-bottom: 0.25rem;
      font-weight: 500;
    }

    .explore-dist-card span {
      font-size: 0.71rem;
      color: var(--ink-soft);
      letter-spacing: 0.04em;
    }

    .explore-cat-nav {
      position: sticky;
      top: 78px;
      z-index: 60;
      background: rgba(246, 242, 234, 0.94);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--line);
      padding: 0.65rem 0;
    }

    .explore-cat-nav .container {
      display: flex;
      gap: 0.45rem;
      flex-wrap: wrap;
    }

    .explore-cat-btn {
      padding: 0.4rem 0.85rem;
      border-radius: 999px;
      border: 1px solid var(--line-strong);
      background: transparent;
      font-family: "Sora", sans-serif;
      font-size: 0.68rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--ink-soft);
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: background var(--ease), color var(--ease), border-color var(--ease);
    }

    .explore-cat-btn:hover {
      background: rgba(31, 93, 129, 0.1);
      border-color: var(--sea);
      color: var(--sea);
    }

    .explore-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.1rem;
      margin-top: 2rem;
    }

    .explore-card {
      background: rgba(255, 252, 246, 0.85);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 1.4rem;
      box-shadow: var(--shadow-soft);
      display: flex;
      flex-direction: column;
      transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
    }

    .explore-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-strong);
      border-color: rgba(31, 93, 129, 0.28);
    }

    .explore-icon {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(145deg, rgba(31, 93, 129, 0.16), rgba(137, 183, 207, 0.22));
      color: var(--sea);
      font-size: 1.2rem;
      margin-bottom: 0.8rem;
      flex-shrink: 0;
    }

    .explore-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      background: rgba(31, 93, 129, 0.07);
      color: var(--sea);
      border-radius: 999px;
      padding: 0.2rem 0.55rem;
      font-size: 0.64rem;
      letter-spacing: 0.05em;
      font-weight: 700;
      margin-bottom: 0.6rem;
      text-transform: uppercase;
      border: 1px solid rgba(31, 93, 129, 0.16);
    }

    .explore-card h3 {
      font-family: "Fraunces", serif;
      font-size: 1.15rem;
      color: #1c2d3a;
      margin-bottom: 0.5rem;
      font-weight: 500;
      line-height: 1.22;
    }

    .explore-card p {
      font-size: 0.87rem;
      color: var(--ink-soft);
      line-height: 1.65;
      flex: 1;
    }

    .explore-tip {
      margin-top: 0.8rem;
      padding: 0.55rem 0.7rem;
      background: rgba(196, 104, 53, 0.07);
      border-left: 2px solid var(--accent);
      border-radius: 0 8px 8px 0;
      font-size: 0.77rem;
      color: #5a3018;
      line-height: 1.55;
    }

    .explore-link {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      margin-top: 0.9rem;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--sea);
      border-bottom: 1px solid rgba(31, 93, 129, 0.3);
      padding-bottom: 1px;
      transition: color var(--ease), border-color var(--ease);
      align-self: flex-start;
    }

    .explore-link:hover {
      color: var(--accent);
      border-color: rgba(196, 104, 53, 0.5);
    }

    .explore-cta {
      background: #1d3137;
      color: var(--white);
      padding: clamp(3rem, 6vw, 4.5rem) 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .explore-cta::before {
      content: "";
      position: absolute;
      width: 420px;
      height: 420px;
      right: -100px;
      top: -120px;
      border-radius: 999px;
      background: rgba(137, 183, 207, 0.12);
      pointer-events: none;
    }

    .explore-cta::after {
      content: "";
      position: absolute;
      width: 360px;
      height: 360px;
      left: -120px;
      bottom: -140px;
      border-radius: 999px;
      background: rgba(196, 104, 53, 0.12);
      pointer-events: none;
    }

    .explore-cta h2 {
      font-family: "Fraunces", serif;
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      font-weight: 500;
      margin-bottom: 0.7rem;
      color: var(--white);
      position: relative;
      z-index: 1;
    }

    .explore-cta p {
      color: #add0e3;
      font-size: 0.95rem;
      margin-bottom: 1.6rem;
      max-width: 52ch;
      margin-inline: auto;
      position: relative;
      z-index: 1;
    }

    .explore-cta .btn-primary {
      position: relative;
      z-index: 1;
    }

    .site-nav a[aria-current="page"] {
      color: var(--sea);
    }

    @media (max-width: 920px) {
      .explore-distances {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .explore-distances {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
      }

      .explore-grid {
        grid-template-columns: 1fr;
      }

      .explore-cat-nav {
        top: 72px;
      }

      .explore-cat-nav .container {
        gap: 0.35rem;
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
        padding-bottom: 2px;
      }

      .explore-cat-nav .container::-webkit-scrollbar {
        display: none;
      }

      .explore-cat-btn {
        flex: 0 0 auto;
        font-size: 0.62rem;
        padding: 0.35rem 0.7rem;
      }
    }

    /* ===== END EXPLORE PAGE STYLES ===== */

    @media (max-width: 1050px) {
      .site-nav {
        gap: 1rem;
      }

      .hero-grid,
      .booking-panel {
        grid-template-columns: 1fr;
      }

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

      .about-grid,
      .location-grid {
        grid-template-columns: 1fr;
      }

      .amenities-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 920px) {
      .container {
        width: min(1140px, calc(100% - 2rem));
      }

      .header-tools {
        margin-left: 0;
        gap: 0.55rem;
      }

      .lang-switcher {
        max-width: 45vw;
        overflow-x: auto;
        scrollbar-width: none;
      }

      .lang-switcher::-webkit-scrollbar {
        display: none;
      }

      .site-nav {
        position: absolute;
        top: calc(100% + 0.55rem);
        left: 1rem;
        right: 1rem;
        background: rgba(255, 252, 246, 0.97);
        border: 1px solid rgba(24, 47, 62, 0.16);
        border-radius: 14px;
        box-shadow: 0 12px 28px rgba(17, 37, 48, 0.15);
        display: grid;
        gap: 0;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        transform: translateY(-5px);
        transition: max-height var(--ease), opacity var(--ease), transform var(--ease);
      }

      .site-nav.open {
        max-height: 380px;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        padding: 0.45rem;
      }

      .site-nav a {
        padding: 0.8rem 0.7rem;
        border-radius: 10px;
      }

      .site-nav a:hover {
        background: rgba(137, 183, 207, 0.2);
      }

      .nav-toggle {
        display: inline-flex;
      }

      .value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
      }

      .gallery-grid article:first-child {
        grid-column: 1 / -1;
        grid-row: auto;
      }

      .spaces-grid,
      .review-grid {
        grid-template-columns: 1fr;
      }

      .amenities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .header-row {
        min-height: 72px;
      }

      .header-tools {
        gap: 0.45rem;
      }

      .lang-switcher {
        display: flex;
        max-width: 58vw;
        overflow-x: auto;
      }

      .lang-btn {
        flex: 0 0 auto;
        font-size: 0.58rem;
        padding: 0.28rem 0.42rem;
      }

      .nav-toggle {
        padding: 0.5rem 0.7rem;
        font-size: 0.66rem;
      }

      /* Align page start with actual header height */
      main {
        padding-top: 78px;
      }

      /* Slightly smaller brand on mobile to give header more room */
      .brand {
        font-size: 1.45rem;
      }

      /* Reduce section vertical padding on mobile */
      .section-pad {
        padding: 2.6rem 0;
      }

      /* Reduce hero padding on mobile */
      .hero {
        padding: 1.8rem 0 2rem;
      }

      /* Slightly tighter hero heading on small screens */
      .hero h1 {
        font-size: clamp(1.85rem, 8.5vw, 2.6rem);
        line-height: 1.1;
      }

      /* Keep stats in a single row (3 compact boxes fit fine) */
      .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.5rem;
        margin-top: 1.2rem;
      }

      .hero-stat-value {
        font-size: 1.2rem;
      }

      .hero-stat-label {
        font-size: 0.6rem;
      }

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

      .hero-float {
        width: 38%;
      }

      /* Hide caption on mobile — it overlaps the float at bottom: 1.2rem */
      .hero-caption {
        display: none;
      }

      /* Keep 2 columns for value strip and amenities on mobile */
      .value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .amenities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      /* Gallery goes full-width on mobile for best impact */
      .gallery-grid {
        grid-template-columns: 1fr;
      }

      .gallery-grid article {
        min-height: 220px;
      }

      .contact-band {
        justify-content: center;
      }

      /* Booking panel: ensure note text doesn't overflow */
      .booking-note {
        font-size: 0.7rem;
      }

      /* Reduce review card padding on mobile */
      .review-card {
        padding: 1rem;
      }

      /* Footer spacing */
      footer {
        padding: 1.5rem 0 2rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {

      *,
      *::before,
      *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
      }

      [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
      }
    }