    :root {
      --cream: #f7f4ef;
      --paper: #fbf9f6;
      --ink: #1a1a18;
      --ink-mid: #3d3d38;
      --ink-light: #6b6560;
      --rule: #ddd9d2;
      --accent: #8b7355;
      --accent-warm: #a08560;
      --accent-deep: #5d4730;
      --mist: rgba(255, 255, 255, 0.45);
      --dark: #111110;
      --header-h: 80px;
      --container: 1240px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background:
        radial-gradient(circle at top left, rgba(160, 133, 96, 0.12), transparent 28%),
        linear-gradient(180deg, #f7f4ef 0%, #f2ede6 100%);
      color: var(--ink);
      font-family: "Jost", sans-serif;
      font-weight: 300;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    .skip-link {
      position: absolute;
      left: 16px;
      top: -48px;
      z-index: 100;
      padding: 0.8rem 1rem;
      background: var(--ink);
      color: #fff;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 0.72rem;
      transition: top 0.2s ease;
    }

    .skip-link:focus {
      top: 16px;
    }

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

    .deferred-section {
      content-visibility: auto;
      contain-intrinsic-size: 900px;
    }

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

    a:focus-visible,
    button:focus-visible,
    summary:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
    }

    .container {
      width: min(calc(100% - 48px), var(--container));
      margin: 0 auto;
    }

    h1, h2, h3 {
      font-family: "Cormorant Garamond", serif;
      font-weight: 300;
      line-height: 1.08;
      margin: 0;
    }

    h1 {
      font-size: clamp(3.15rem, 6.8vw, 6rem);
      letter-spacing: -0.01em;
    }

    h2 {
      font-size: clamp(2rem, 3.8vw, 3.5rem);
      letter-spacing: -0.01em;
    }

    h3 {
      font-size: clamp(1.5rem, 2vw, 2rem);
    }

    p {
      margin: 0;
      font-size: 1rem;
      line-height: 1.85;
      color: var(--ink-light);
    }

    .text-link {
      display: inline-block;
      margin-top: 1.25rem;
      font-size: 0.72rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--ink);
      border-bottom: 1px solid rgba(26, 26, 24, 0.18);
      padding-bottom: 0.35rem;
      transition: border-color 0.2s ease, color 0.2s ease;
    }

    .text-link:hover {
      color: var(--accent);
      border-color: var(--accent);
    }

    .eyebrow {
      font-size: 0.66rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--ink-light);
      margin-bottom: 1rem;
    }

    .rule-line {
      width: 36px;
      height: 1px;
      background: var(--accent);
      margin: 1.8rem 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 1.8rem;
      font-family: "Jost", sans-serif;
      font-weight: 400;
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.22s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--accent);
      color: #fff;
    }

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

    .btn-dark {
      background: var(--ink);
      color: #fff;
    }

    .btn-dark:hover {
      background: var(--ink-mid);
    }

    .btn-ghost {
      background: transparent;
      color: #fff;
      border-color: rgba(255, 255, 255, 0.3);
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    .btn-ghost-ink {
      background: transparent;
      color: var(--ink);
      border-color: var(--rule);
    }

    .btn-ghost-ink:hover {
      border-color: var(--ink);
    }

    .btn-row {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items: center;
    }

    .site-header {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 50;
      transition: background 0.3s, border-color 0.3s;
      border-bottom: 1px solid transparent;
    }

    .site-header.scrolled {
      background: rgba(26, 26, 24, 0.88);
      backdrop-filter: blur(14px);
      border-bottom-color: rgba(255, 255, 255, 0.07);
    }

    .header-inner {
      height: var(--header-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand {
      color: #fff;
      display: flex;
      flex-direction: column;
      line-height: 1;
    }

    .brand-name {
      font-weight: 400;
      font-size: 1rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .brand-sub {
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 3px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2.2rem;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .nav-links a {
      font-size: 0.72rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.75);
      transition: color 0.2s;
    }

    .nav-links a:hover {
      color: #fff;
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 1.2rem;
    }

    .lang-toggle {
      display: flex;
      align-items: center;
      gap: 2px;
      padding: 4px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.05);
    }

    .lang-toggle button,
    .lang-toggle a {
      border: 0;
      min-width: 38px;
      height: 30px;
      border-radius: 999px;
      background: transparent;
      color: rgba(255, 255, 255, 0.7);
      cursor: pointer;
      font: inherit;
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: all 0.2s;
    }

    .lang-toggle button.active,
    .lang-toggle a.active {
      background: rgba(255, 255, 255, 0.14);
      color: #fff;
    }

    .mobile-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.06);
      color: #fff;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-family: inherit;
    }

    .mobile-nav {
      display: none;
    }

    .hero {
      position: relative;
      min-height: 100svh;
      overflow: hidden;
      background: var(--dark);
      color: #fff;
    }

    .hero-media,
    .hero-media picture,
    .hero-media img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    .hero-media img {
      will-change: transform;
      object-fit: cover;
      object-position: center 42%;
      transform: scale(1.04);
      transition: transform 8s ease-out;
      opacity: 0;
      transition-property: transform, opacity;
      transition-duration: 8s, 0.6s;
      transition-timing-function: ease-out, ease;
    }

    .hero-media img.loaded {
      transform: scale(1);
      opacity: 1;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(17, 17, 16, 0.76) 0%,
        rgba(17, 17, 16, 0.24) 42%,
        rgba(17, 17, 16, 0.18) 100%
      );
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      min-height: 100svh;
      display: grid;
      align-items: end;
      padding-top: calc(var(--header-h) + 3rem);
      padding-bottom: 5rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.5fr);
      gap: 2rem;
      align-items: end;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 1.4rem;
      padding: 0.5rem 1rem;
      border: 1px solid rgba(255, 255, 255, 0.18);
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.8);
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(8px);
    }

    .hero-kicker::before {
      content: "";
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--accent);
    }

    .hero h1 {
      color: #fff;
      margin-bottom: 1.4rem;
    }

    .hero-copy > p {
      color: rgba(255, 255, 255, 0.84);
      font-size: 1.05rem;
      max-width: 560px;
      margin-bottom: 2rem;
    }

    .hero-card {
      margin-left: auto;
      max-width: 300px;
      padding: 1.8rem;
      background: rgba(17, 17, 16, 0.45);
      border: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(16px);
    }

    .hero-card .meta-label {
      font-size: 0.6rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.45);
      display: block;
      margin-bottom: 0.4rem;
    }

    .hero-card .meta-value {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.88);
      display: block;
      line-height: 1.6;
      margin-bottom: 1.2rem;
    }

    .hero-card .meta-value a:hover {
      color: var(--accent);
      transition: color 0.2s;
    }

    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      right: 1.5rem;
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }

    .hero-scroll span {
      font-size: 0.55rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
      writing-mode: vertical-rl;
    }

    .hero-scroll-line {
      width: 1px;
      height: 44px;
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
      animation: scrollPulse 1.8s ease-in-out infinite;
    }

    @keyframes scrollPulse {
      0%, 100% {
        opacity: 0.4;
        transform: scaleY(1);
      }
      50% {
        opacity: 1;
        transform: scaleY(0.6);
      }
    }

    .section {
      padding: 7rem 0;
    }

    .section-sm {
      padding: 5rem 0;
    }

    .section-header {
      margin-bottom: 3rem;
    }

    .intro {
      background: var(--paper);
    }

    .intro-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 5rem;
      align-items: center;
    }

    .intro-copy p {
      margin-top: 1.5rem;
    }

    .stat-grid {
      display: grid;
      grid-template-columns: 1fr;
    }

    .stat-item {
      padding: 1.4rem 0;
      border-bottom: 1px solid var(--rule);
      display: flex;
      align-items: baseline;
      gap: 1.5rem;
    }

    .stat-item:first-child {
      border-top: 1px solid var(--rule);
    }

    .stat-num {
      font-family: "Cormorant Garamond", serif;
      font-size: 2rem;
      color: var(--accent);
      min-width: 5rem;
      line-height: 1;
    }

    .stat-text {
      font-size: 0.82rem;
      color: var(--ink-light);
      line-height: 1.55;
    }

    .rooms {
      background: var(--ink);
    }

    .rooms .eyebrow {
      color: rgba(255, 255, 255, 0.38);
    }

    .rooms h2 {
      color: #fff;
    }

    .rooms-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 1.5rem;
      margin-bottom: 3rem;
    }

    .rooms-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5px;
      background: rgba(255, 255, 255, 0.05);
    }

    .room-card {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.03));
      overflow: hidden;
      cursor: pointer;
      transition: background 0.3s, transform 0.3s ease, box-shadow 0.3s ease;
    }

    .room-card:hover {
      background: rgba(255, 255, 255, 0.06);
      transform: translateY(-4px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
    }

    .room-media {
      aspect-ratio: 4 / 3;
      overflow: hidden;
    }

    .room-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
      filter: brightness(0.92);
    }

    .room-card:hover .room-media img {
      transform: scale(1.05);
    }

    .room-body {
      padding: 1.8rem;
    }

    .room-bestfor {
      margin: 1rem 0 0;
      font-size: 0.69rem;
      line-height: 1.75;
      color: rgba(255, 255, 255, 0.62);
    }

    .room-bestfor-label {
      color: rgba(255, 255, 255, 0.38);
      text-transform: uppercase;
      letter-spacing: 0.22em;
      margin-right: 0.45rem;
      font-style: normal;
      font-weight: 300;
    }

    .room-bestfor em {
      font-style: normal;
    }

    .room-type {
      font-size: 0.58rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(160, 133, 96, 0.9);
      margin-bottom: 0.65rem;
    }

    .room-body h3 {
      color: #fff;
      margin-bottom: 0.95rem;
      font-weight: 300;
      letter-spacing: 0.01em;
    }

    .room-body p {
      color: rgba(255, 255, 255, 0.46);
      font-size: 0.82rem;
      line-height: 1.9;
    }

    .room-rate {
      margin-top: 1rem;
      font-size: 0.62rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.58);
    }

    .room-actions {
      margin-top: 1.2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }

    .room-link {
      font-size: 0.62rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.9);
      border-bottom: 1px solid rgba(255, 255, 255, 0.24);
      padding-bottom: 0.35rem;
    }

    .room-link:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    .room-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin: 1rem 0;
    }

    .room-meta span {
      font-size: 0.62rem;
      letter-spacing: 0.12em;
      padding: 0.35rem 0.8rem;
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.48);
    }

    .features {
      background: var(--cream);
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border: 1px solid var(--rule);
      margin-top: 3rem;
    }

    .feature {
      padding: 2.2rem 1.8rem;
      border-right: 1px solid var(--rule);
    }

    .feature:last-child {
      border-right: none;
    }

    .feature-icon {
      color: var(--accent);
      margin-bottom: 1.2rem;
      width: 24px;
      height: 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .feature-icon svg {
      width: 24px;
      height: 24px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.7;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .feature h3 {
      font-size: 1.1rem;
      margin-bottom: 0.8rem;
      font-family: "Jost", sans-serif;
      font-weight: 400;
    }

    .feature p {
      font-size: 0.82rem;
    }

    .location {
      background: var(--paper);
    }

    .location-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 5rem;
      align-items: center;
    }

    .location-copy p {
      margin-top: 1.2rem;
    }

    .location-points {
      margin-top: 2rem;
    }

    .location-point {
      display: flex;
      align-items: baseline;
      gap: 1.2rem;
      padding: 0.9rem 0;
      border-bottom: 1px solid var(--rule);
    }

    .location-point:first-child {
      border-top: 1px solid var(--rule);
    }

    .location-dist {
      font-family: "Cormorant Garamond", serif;
      font-size: 1.1rem;
      color: var(--accent);
      min-width: 3.5rem;
      text-align: right;
    }

    .location-name {
      font-size: 0.82rem;
      color: var(--ink-light);
    }

    .location-media {
      aspect-ratio: 4 / 5;
      overflow: hidden;
      position: relative;
    }

    .location-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 6s ease;
    }

    .location-media:hover img {
      transform: scale(1.04);
    }

    .story {
      background: var(--cream);
    }

    .story-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5px;
      background: var(--rule);
    }

    .story-visual {
      overflow: hidden;
      min-height: 520px;
    }

    .story-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 6s ease;
    }

    .story-visual:hover img {
      transform: scale(1.04);
    }

    .story-copy {
      background: var(--ink);
      color: #fff;
      padding: 5rem 4rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .story-copy .eyebrow {
      color: rgba(255, 255, 255, 0.38);
    }

    .story-copy h2 {
      color: #fff;
    }

    .story-copy p {
      color: rgba(255, 255, 255, 0.65);
      margin-top: 1.4rem;
    }

    .gallery {
      background: var(--paper);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1.5px;
      background: var(--rule);
      margin-top: 3rem;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
    }

    .gallery-trigger {
      appearance: none;
      border: 0;
      background: none;
      padding: 0;
      margin: 0;
      width: 100%;
      cursor: zoom-in;
      display: block;
      position: relative;
    }

    .gallery-grid picture,
    .gallery-grid img,
    .gallery-trigger {
      width: 100%;
      height: 100%;
    }

    .gallery-grid img {
      width: 100%;
      height: 100%;
      min-height: 300px;
      object-fit: cover;
      transition: transform 0.7s ease;
      filter: brightness(0.96);
    }

    .gallery-grid img:hover {
      transform: scale(1.03);
      filter: brightness(1);
    }

    .gallery-note {
      max-width: 620px;
      font-size: 0.95rem;
      line-height: 1.8;
      color: var(--ink-light);
      margin-top: -1rem;
    }

    .gallery-caption {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 2;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 0.75rem;
      padding: 1.1rem 1rem 0.95rem;
      background: linear-gradient(180deg, transparent, rgba(17, 17, 16, 0.82));
      pointer-events: none;
    }

    .gallery-caption-index {
      font-size: 0.58rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.48);
      white-space: nowrap;
    }

    .gallery-caption-text {
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.88);
      text-align: right;
      line-height: 1.5;
    }

    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 80;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(17, 17, 16, 0.92);
      backdrop-filter: blur(10px);
    }

    .lightbox.open {
      display: flex;
    }

    .lightbox-dialog {
      position: relative;
      width: min(1100px, 100%);
    }

    .lightbox-close {
      position: absolute;
      top: -48px;
      right: 0;
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      font-size: 1.4rem;
      cursor: pointer;
    }

    .lightbox-figure {
      margin: 0;
    }

    .lightbox-image {
      width: 100%;
      max-height: min(78vh, 900px);
      object-fit: contain;
      background: #0f0f0e;
    }

    .lightbox-caption {
      margin-top: 1rem;
      text-align: center;
      font-size: 0.74rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.64);
    }

    .legal-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border: 1px solid var(--rule);
      margin-top: 3rem;
    }

    .legal-card {
      padding: 2rem 1.8rem;
      border-right: 1px solid var(--rule);
      background: rgba(255, 255, 255, 0.35);
    }

    .legal-card:nth-child(3n) {
      border-right: none;
    }

    .legal-card h3 {
      font-family: "Jost", sans-serif;
      font-size: 1rem;
      font-weight: 400;
      letter-spacing: 0.03em;
      margin-bottom: 0.7rem;
    }

    .legal-card p {
      font-size: 0.82rem;
    }

    .cta-section {
      position: relative;
      padding: 9rem 0;
      background:
        radial-gradient(circle at top, rgba(160, 133, 96, 0.18), transparent 32%),
        linear-gradient(rgba(17, 17, 16, 0.76), rgba(17, 17, 16, 0.82)),
        url("teras.webp") center / cover no-repeat;
      color: #fff;
      text-align: center;
    }

    .cta-section .eyebrow {
      color: rgba(255, 255, 255, 0.45);
    }

    .cta-section h2 {
      color: #fff;
      max-width: 600px;
      margin: 0 auto 1.4rem;
    }

    .cta-section p {
      color: rgba(255, 255, 255, 0.7);
      max-width: 600px;
      margin: 0 auto 2.5rem;
    }

    .cta-section .rule-line {
      margin: 1.8rem auto;
    }

    .cta-notes {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(255, 255, 255, 0.14);
      margin: 3rem auto 0;
      max-width: 860px;
    }

    .cta-note {
      background: rgba(17, 17, 16, 0.34);
      padding: 1.35rem 1rem;
    }

    .cta-note strong {
      display: block;
      font-size: 0.68rem;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.42);
      margin-bottom: 0.55rem;
    }

    .cta-note span {
      display: block;
      font-family: "Cormorant Garamond", serif;
      font-size: 1.5rem;
      color: #fff;
    }

    .site-footer {
      background: var(--dark);
      color: rgba(255, 255, 255, 0.55);
      padding: 4rem 0;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.9fr 0.9fr;
      gap: 3rem;
      align-items: start;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      margin-bottom: 2rem;
    }

    .footer-brand {
      font-weight: 300;
      font-size: 0.94rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 0.5rem;
    }

    .footer-tagline {
      font-size: 0.66rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.28);
      margin-bottom: 1.35rem;
    }

    .footer-address {
      font-size: 0.8rem;
      line-height: 1.9;
      color: rgba(255, 255, 255, 0.46);
    }

    .footer-col-title {
      font-size: 0.58rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.3);
      margin-bottom: 1.3rem;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
    }

    .footer-links a {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.48);
      line-height: 1.85;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: #fff;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .footer-copy {
      font-size: 0.64rem;
      color: rgba(255, 255, 255, 0.22);
      letter-spacing: 0.12em;
    }

    .footer-group-links {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    .footer-group-links a {
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.25);
      transition: color 0.2s;
    }

    .footer-group-links a:hover {
      color: rgba(255, 255, 255, 0.6);
    }

    .footer-chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0.7rem 1.15rem;
      border-radius: 999px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06));
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.9) !important;
      letter-spacing: 0.18em;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
      transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
    }

    .footer-chip:hover {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.1));
      border-color: rgba(255, 255, 255, 0.2);
      color: #fff !important;
      transform: translateY(-1px);
    }

    .whatsapp-float {
      position: fixed;
      right: 1.5rem;
      bottom: 1.5rem;
      z-index: 45;
      width: 58px;
      height: 58px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #25D366;
      color: #fff;
      font-size: 26px;
      box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
      transition: transform 0.2s;
    }

    .whatsapp-float:hover {
      transform: scale(1.08);
    }

    .mobile-book-bar {
      display: none;
      position: fixed;
      left: 12px;
      right: 12px;
      bottom: 12px;
      z-index: 44;
      border-radius: 8px;
      background: rgba(26, 26, 24, 0.94);
      backdrop-filter: blur(12px);
      padding: 8px;
      gap: 8px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .mobile-book-bar a {
      flex: 1;
      min-height: 46px;
      border-radius: 4px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.65rem;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .mobile-book-bar .book {
      background: var(--accent);
      color: #fff;
    }

    .mobile-book-bar .chat {
      background: rgba(255, 255, 255, 0.07);
      color: rgba(255, 255, 255, 0.8);
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .faq-section {
      background: linear-gradient(180deg, rgba(251, 249, 246, 0.35) 0%, rgba(255, 255, 255, 0.9) 100%);
    }

    .reviews-section {
      background: linear-gradient(180deg, rgba(251, 249, 246, 0.95), rgba(245, 240, 233, 0.92));
    }

    .guide-section {
      background: var(--cream);
    }

    .guide-shell {
      display: grid;
      grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
      gap: 2px;
      background: var(--rule);
      margin-top: 3rem;
    }

    .guide-intro,
    .guide-list {
      background: rgba(255, 255, 255, 0.75);
    }

    .guide-intro {
      padding: 3rem 2.5rem;
    }

    .guide-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--rule);
    }

    .guide-stop {
      background: rgba(255, 255, 255, 0.92);
      padding: 2.2rem 1.7rem;
      min-height: 100%;
    }

    .guide-stop-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 999px;
      border: 1px solid rgba(139, 115, 85, 0.32);
      color: var(--accent-deep);
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      margin-bottom: 1rem;
    }

    .guide-stop h3 {
      font-family: "Jost", sans-serif;
      font-size: 0.98rem;
      font-weight: 400;
      margin-bottom: 0.7rem;
    }

    .guide-stop p {
      font-size: 0.84rem;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: var(--rule);
      margin-top: 3rem;
    }

    .review-card {
      background: rgba(255, 255, 255, 0.9);
      padding: 2.2rem 1.9rem;
      min-height: 100%;
    }

    .review-source {
      font-size: 0.62rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--ink-light);
      margin-bottom: 1rem;
    }

    .review-score {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1;
      color: var(--ink);
      margin-bottom: 0.9rem;
    }

    .review-card h3 {
      font-family: "Jost", sans-serif;
      font-size: 1rem;
      font-weight: 400;
      margin-bottom: 0.8rem;
    }

    .review-card p {
      font-size: 0.86rem;
    }

    .review-quote {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(1.5rem, 2.4vw, 2rem);
      line-height: 1.2;
      color: var(--ink);
      margin-bottom: 1rem;
    }

    .review-attrib {
      display: block;
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      color: var(--ink-light);
      text-transform: uppercase;
    }

    .review-link {
      margin-top: 1.5rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--ink);
    }

    .review-link:hover {
      color: var(--accent);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: 32px;
      align-items: start;
    }

    .faq-intro {
      padding-right: 2rem;
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      border: 1px solid var(--rule);
      background: rgba(255, 255, 255, 0.72);
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 1.2rem 1.35rem;
      font-size: 0.92rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ink);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      font-size: 1.2rem;
      color: var(--accent);
      flex: none;
    }

    .faq-item[open] summary::after {
      content: "−";
    }

    .faq-answer {
      padding: 0 1.35rem 1.35rem;
    }

    .faq-answer p {
      color: var(--ink-light);
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.9s ease, transform 0.9s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }
    }

    @media (max-width: 1060px) {
      .nav-links,
      .header-book {
        display: none !important;
      }

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

      .mobile-nav {
        position: fixed;
        top: var(--header-h);
        left: 16px;
        right: 16px;
        padding: 1.5rem;
        background: rgba(26, 26, 24, 0.97);
        border: 1px solid rgba(255, 255, 255, 0.07);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: 0.22s ease;
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
      }

      .mobile-nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .mobile-nav a {
        font-size: 0.8rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.75);
      }
    }

    @media (max-width: 900px) {
      .hero-grid,
      .intro-grid,
      .location-grid,
      .footer-grid,
      .gallery-grid,
      .rooms-grid,
      .story-split,
      .legal-grid,
      .reviews-grid,
      .guide-shell,
      .guide-list,
      .cta-notes {
        grid-template-columns: 1fr;
      }

      .hero-card {
        display: none;
      }

      .gallery-note {
        margin-top: -0.4rem;
      }

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

      .feature {
        border-bottom: 1px solid var(--rule);
      }

      .feature:nth-child(2n) {
        border-right: none;
      }

      .feature:nth-last-child(-n+2) {
        border-bottom: none;
      }

      .story-visual {
        min-height: 350px;
      }

      .story-copy {
        padding: 3rem 2rem;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }

      .legal-card,
      .feature {
        border-right: none !important;
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(calc(100% - 32px), var(--container));
      }

      .section {
        padding: 5rem 0;
      }

      .feature-grid,
      .legal-grid {
        grid-template-columns: 1fr;
      }

      .feature,
      .legal-card {
        border-right: none;
        border-bottom: 1px solid var(--rule);
      }

      .feature:last-child,
      .legal-card:last-child {
        border-bottom: none;
      }

      .rooms-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .whatsapp-float {
        bottom: 5rem;
      }

      .mobile-book-bar {
        display: flex;
      }

      .hero-scroll {
        display: none;
      }

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

      .faq-intro {
        padding-right: 0;
      }

      .lightbox {
        padding: 16px;
      }

      .lightbox-close {
        top: -44px;
      }
    }

    .lang-toggle a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
    }
