/* Base layout retained from the original site. */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --cactus: #2d7a4f;
      --cactus-light: #4caf7d;
      --sand: #f5ead6;
      --coral: #f46b45;
      --yellow: #f9c846;
      --sky: #3ab5d9;
      --dark: #1a2e22;
      --white: #fff;
      --radius: 20px;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--sand);
      color: var(--dark);
      overflow-x: hidden;
    }

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

    .skip-link {
      position: absolute;
      left: -9999px;
      top: 0;
      background: var(--dark);
      color: #fff;
      padding: .7rem 1rem;
      border-radius: 10px;
      z-index: 1000;
      text-decoration: none;
      font-weight: 700;
    }

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

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.1rem;
      padding: .45rem 2rem;
      background: rgba(245, 234, 214, 0.9);
      backdrop-filter: blur(12px);
      border-bottom: 2px solid var(--cactus);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      width: 70px;
      height: 70px;
      overflow: hidden;
      border: 1px solid rgba(26, 46, 34, .35);
      border-radius: 50%;
      background: #fff;
      line-height: 0;
      transition: opacity .2s;
      flex: 0 0 auto;
      min-width: 0;
    }

    .nav-logo img {
      display: block;
      width: auto;
      max-width: none;
      height: 100%;
      margin: 0;
    }

    .nav-logo:hover {
      opacity: 0.85;
    }

    .nav-links {
      display: flex;
      gap: 1.6rem;
      list-style: none;
      flex: 1 1 auto;
      min-width: 0;
      justify-content: center;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--dark);
      font-weight: 600;
      font-size: .9rem;
      letter-spacing: .04em;
      transition: color .2s;
    }

    .nav-links a:hover {
      color: var(--cactus);
    }

    .nav-cta {
      background: var(--coral);
      color: #fff;
      border: none;
      padding: .6rem 1.4rem;
      border-radius: 50px;
      font-weight: 600;
      cursor: pointer;
      font-size: .9rem;
      transition: transform .15s, background .2s;
      text-decoration: none;
    }

    .nav-cta:hover {
      background: var(--cactus);
      transform: scale(1.04);
    }

    .nav-controls {
      display: flex;
      align-items: center;
      gap: .8rem;
      flex: 0 0 auto;
    }

    .nav-toggle {
      display: none;
      background: transparent;
      border: 2px solid var(--cactus);
      color: var(--cactus);
      border-radius: 10px;
      padding: .25rem .55rem;
      font-size: 1.15rem;
      line-height: 1;
      cursor: pointer;
    }

    /* HERO */
    .hero {
      min-height: 100dvh;
      display: grid;
      place-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 90px;
      background: linear-gradient(135deg, #e8f5ee 0%, #f5ead6 50%, #fef3d7 100%);
    }

    .hero-bg-shapes {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .shape {
      position: absolute;
      border-radius: 50%;
      animation: float 6s ease-in-out infinite;
    }

    .shape-1 {
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, #4caf7d33, transparent 70%);
      top: -100px;
      right: -100px;
      animation-delay: 0s;
    }

    .shape-2 {
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, #f46b4533, transparent 70%);
      bottom: 50px;
      left: -80px;
      animation-delay: -2s;
    }

    .shape-3 {
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, #f9c84644, transparent 70%);
      top: 200px;
      left: 30%;
      animation-delay: -4s;
    }

    @keyframes float {

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

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

    .hero-inner {
      position: relative;
      z-index: 2;
      width: min(100%, 1500px);
      margin: 0 auto;
      padding: clamp(2rem, 4vw, 4rem);
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(390px, .75fr);
      grid-template-areas:
        "brand copy"
        "brand actions";
      align-items: center;
      column-gap: clamp(2.5rem, 5vw, 6rem);
      row-gap: clamp(1.25rem, 2.2vw, 2rem);
      text-align: left;
    }

    .hero-title {
      grid-area: brand;
      align-self: center;
    }

    .hero-logo {
      display: block;
      width: min(100%, 880px);
      max-width: 100%;
      height: auto;
      margin: 0;
    }

    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .hero-sub {
      grid-area: copy;
      align-self: end;
      font-size: clamp(1rem, 2.5vw, 1.3rem);
      color: #555;
      max-width: 520px;
      margin: 0;
      line-height: 1.6;
      animation: fadeDown .8s ease .2s both;
    }

    .hero-ctas {
      grid-area: actions;
      align-self: start;
      display: flex;
      gap: .75rem;
      justify-content: flex-start;
      flex-wrap: wrap;
      animation: fadeDown .8s ease .3s both;
    }

    .btn-primary {
      background: var(--coral);
      color: #fff;
      padding: .9rem 2.2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      transition: transform .15s, box-shadow .15s;
      box-shadow: 0 4px 20px #f46b4555;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px #f46b4566;
    }

    .btn-secondary {
      background: transparent;
      color: var(--cactus);
      border: 2px solid var(--cactus);
      padding: .9rem 2.2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      transition: all .15s;
    }

    .btn-secondary:hover {
      background: var(--cactus);
      color: #fff;
    }

    .cactus-deco {
      position: absolute;
      bottom: 0;
      animation: fadeDown 1s ease .5s both;
    }

    .cactus-left {
      left: 2%;
      width: 115px;
    }

    .cactus-right {
      right: 2%;
      width: 120px;
    }

    @keyframes fadeDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* CHIPS */
    .chips-bar {
      background: var(--cactus);
      color: #fff;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
      padding: 1.2rem 2rem;
      font-size: .9rem;
      font-weight: 500;
    }

    .chip {
      display: flex;
      align-items: center;
      gap: .4rem;
    }

    /* SECTIONS */
    section {
      padding: 6rem 2rem;
    }

    .section-label {
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--coral);
      margin-bottom: .8rem;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 900;
      line-height: 1.1;
      color: var(--dark);
      margin-bottom: 1.5rem;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
    }

    /* ABOUT */
    .about {
      background: var(--white);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .about-img-wrap {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
    }

    .about-img-wrap img:not(.about-center-logo) {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      border-radius: var(--radius);
      display: block;
    }

    .about-center-logo {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: clamp(96px, 16vw, 128px);
      height: auto;
      opacity: 0.5;
      z-index: 2;
      pointer-events: none;
    }

    .about-text p {
      color: #555;
      line-height: 1.8;
      margin-bottom: 1rem;
      font-size: 1.05rem;
    }

    .about-stats {
      display: flex;
      gap: 2rem;
      margin-top: 2rem;
      flex-wrap: wrap;
    }

    .stat {
      text-align: center;
    }

    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.5rem;
      font-weight: 900;
      color: var(--cactus);
    }

    .stat-desc {
      font-size: .85rem;
      color: #777;
    }

    /* CABINS */
    .cabins {
      background: var(--sand);
    }

    .cabins-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-top: 3rem;
    }

    .cabin-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: transform .2s, box-shadow .2s;
      box-shadow: 0 4px 20px #0001;
    }

    .cabin-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 40px #0002;
    }

    /* Photo gallery inside cabin card */
    .cabin-gallery {
      position: relative;
      width: 100%;
      aspect-ratio: 3/4;
      overflow: hidden;
      cursor: pointer;
    }

    .cabin-gallery img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity .5s ease;
    }

    .cabin-gallery img.active {
      opacity: 1;
    }

    .gallery-nav {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 0;
      z-index: 10;
    }

    .gallery-dot {
      width: 24px;
      height: 24px;
      display: grid;
      place-items: center;
      padding: 0;
      border-radius: 50%;
      background: transparent;
      cursor: pointer;
      border: none;
    }

    .gallery-dot::before {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      transition: background .2s, transform .2s;
    }

    .gallery-dot.active::before {
      background: #fff;
      transform: scale(1.15);
    }

    .gallery-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.35);
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 44px;
      height: 44px;
      font-size: 1.1rem;
      cursor: pointer;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s;
    }

    .gallery-arrow:hover {
      background: rgba(0, 0, 0, 0.6);
    }

    .gallery-prev {
      left: 10px;
    }

    .gallery-next {
      right: 10px;
    }

    .cabin-label {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--cactus);
      color: #fff;
      border-radius: 50px;
      padding: .3rem .9rem;
      font-size: .78rem;
      font-weight: 700;
      z-index: 5;
    }

    .cabin-2 .cabin-label {
      background: var(--coral);
    }

    .cabin-body {
      padding: 1.8rem;
      display: flex;
      flex: 1;
      flex-direction: column;
    }

    .cabin-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--dark);
      margin-bottom: .5rem;
    }

    .cabin-desc {
      color: #666;
      line-height: 1.7;
      margin-bottom: 1.2rem;
    }

    .cabin-capacity {
      display: flex;
      align-items: center;
      gap: .65rem;
      margin: 0 0 1.2rem;
      padding: .75rem 1rem;
      border: 1px solid #cfe5d6;
      border-left: 5px solid var(--cactus);
      border-radius: 10px;
      background: #f0f9f4;
      color: var(--dark);
      font-size: 1rem;
      font-weight: 800;
      line-height: 1.25;
    }

    .cabin-capacity-icon {
      font-size: 1.15rem;
      line-height: 1;
    }

    .cabin-2 .cabin-capacity {
      border-color: #f3d5bb;
      border-left-color: var(--coral);
      background: #fff8ed;
      color: #8d4000;
    }

    .amenities {
      display: flex;
      flex-wrap: wrap;
      gap: .5rem;
      margin-bottom: 1.5rem;
    }

    .amenity {
      background: #f0f9f4;
      color: var(--cactus);
      border-radius: 50px;
      padding: .3rem .9rem;
      font-size: .78rem;
      font-weight: 600;
    }

    .cabin-2 .amenity {
      background: #fff8ed;
      color: #b05000;
    }

    .amenities-primary {
      margin-bottom: .85rem;
    }

    .amenities-details {
      margin: 0 0 1.5rem;
      border-top: 1px solid #d9e5dc;
    }

    .cabin-2 .amenities-details {
      border-top-color: #f0ddcb;
    }

    .amenities-details summary {
      min-height: 44px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      color: var(--cactus);
      cursor: pointer;
      font-size: .9rem;
      font-weight: 700;
      list-style: none;
    }

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

    .amenities-details summary::after {
      content: '+';
      width: 28px;
      height: 28px;
      flex: 0 0 28px;
      display: grid;
      place-items: center;
      border: 1px solid currentColor;
      border-radius: 50%;
      font-size: 1.05rem;
      line-height: 1;
    }

    .amenities-details[open] summary::after {
      content: '-';
    }

    .amenities-details summary:focus-visible {
      outline: 3px solid color-mix(in srgb, var(--cactus) 35%, transparent);
      outline-offset: 3px;
      border-radius: 6px;
    }

    .cabin-2 .amenities-details summary {
      color: var(--coral);
    }

    .amenities-secondary {
      margin-bottom: 0;
      padding-top: .35rem;
    }

    .cabin-actions {
      margin-top: auto;
    }

    .btn-cabin {
      display: inline-block;
      width: 100%;
      text-align: center;
      background: var(--cactus);
      color: #fff;
      padding: .8rem;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 600;
      transition: background .15s;
    }

    .cabin-2 .btn-cabin {
      background: var(--coral);
    }

    .btn-cabin:hover {
      filter: brightness(1.1);
    }

    .btn-location {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .5rem;
      width: 100%;
      text-align: center;
      background: transparent;
      color: var(--cactus);
      border: 2px solid var(--cactus);
      padding: .7rem;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 600;
      font-size: .9rem;
      margin-bottom: .8rem;
      transition: all .15s;
    }

    .btn-location:hover {
      background: var(--cactus);
      color: #fff;
    }

    .btn-location.cabin2 {
      color: var(--coral);
      border-color: var(--coral);
    }

    .btn-location.cabin2:hover {
      background: var(--coral);
      color: #fff;
    }

    /* FISHING SERVICE */
    .fishing-service {
      background: var(--sand);
      padding: 0 2rem 5rem;
    }

    .fishing-mini-card {
      display: grid;
      grid-template-columns: 150px minmax(0, 1fr) 120px;
      gap: 1.2rem;
      align-items: center;
      background: #fff;
      border: 1px solid #eadfc9;
      border-radius: var(--radius);
      padding: 1rem;
      box-shadow: 0 8px 26px rgba(26, 46, 34, 0.08);
    }

    .fishing-mini-media {
      position: relative;
      width: 150px;
    }

    .fishing-mini-img {
      width: 150px;
      aspect-ratio: 4 / 3;
      border-radius: 16px;
      overflow: hidden;
      background: #e8f5ee;
    }

    .fishing-mini-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .fishing-mini-person {
      width: 120px;
      aspect-ratio: 3 / 4;
      border-radius: 16px;
      overflow: hidden;
      background: #e8f5ee;
    }

    .fishing-mini-person img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }

    .fishing-mini-label {
      color: var(--coral);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: .35rem;
    }

    .fishing-mini-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.65rem;
      line-height: 1.1;
      color: var(--dark);
      margin-bottom: .45rem;
    }

    .fishing-mini-copy {
      color: #555;
      line-height: 1.55;
      font-size: .96rem;
      max-width: 620px;
      margin-bottom: .7rem;
    }

    .fishing-mini-tags {
      display: flex;
      flex-wrap: wrap;
      gap: .45rem;
    }

    .fishing-mini-tags span {
      background: #f0f9f4;
      color: var(--cactus);
      border-radius: 50px;
      padding: .28rem .72rem;
      font-size: .76rem;
      font-weight: 600;
    }

    .fishing-mini-footnote {
      color: #777;
      font-size: .78rem;
      line-height: 1.45;
      margin-top: .65rem;
    }

    /* LOCATION */
    .location {
      background: var(--dark);
      color: #fff;
    }

    .location .section-label {
      color: var(--yellow);
    }

    .location .section-title {
      color: #fff;
    }

    .location-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      margin-top: 2rem;
    }

    .location-text p {
      color: #ccc;
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    .highlights {
      list-style: none;
      margin-top: 1.5rem;
    }

    .highlights li {
      display: flex;
      align-items: flex-start;
      gap: .8rem;
      color: #ddd;
      margin-bottom: 1rem;
      font-size: 1rem;
    }

    .hl-icon {
      font-size: 1.3rem;
      flex-shrink: 0;
      width: 2.2rem;
      height: 2.2rem;
      background: var(--cactus);
      border-radius: 8px;
      display: grid;
      place-items: center;
    }

    .turismo-ig-link {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      margin-top: 1.5rem;
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 50px;
      padding: .6rem 1.2rem;
      text-decoration: none;
      font-size: .85rem;
      font-weight: 600;
      transition: all .2s;
    }

    .turismo-ig-link:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: rgba(255, 255, 255, .6);
    }

    .map-placeholder {
      border-radius: var(--radius);
      overflow: hidden;
      border: 3px solid #ffffff22;
    }

    .map-iframe {
      width: 100%;
      height: 360px;
      border: none;
    }

    /* REVIEWS */
    .reviews {
      background: linear-gradient(135deg, #f5ead6 0%, #e8f5ee 100%);
    }

    .stars {
      color: var(--yellow);
      font-size: 1.2rem;
      margin-bottom: .8rem;
    }

    .reviews-tabs {
      display: flex;
      gap: 1rem;
      margin-bottom: 2rem;
      margin-top: 2rem;
    }

    .tab-btn {
      padding: .6rem 1.6rem;
      border-radius: 50px;
      border: 2px solid var(--cactus);
      background: transparent;
      color: var(--cactus);
      font-weight: 700;
      cursor: pointer;
      font-size: .9rem;
      transition: all .2s;
      font-family: 'DM Sans', sans-serif;
    }

    .tab-btn.active {
      background: var(--cactus);
      color: #fff;
    }

    .tab-btn.cabin2 {
      border-color: var(--coral);
      color: var(--coral);
    }

    .tab-btn.cabin2.active {
      background: var(--coral);
      color: #fff;
    }

    .reviews-panel {
      display: none;
    }

    .reviews-panel.active {
      display: block;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }

    .review-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 1.8rem;
      box-shadow: 0 4px 20px #0001;
      transition: transform .2s;
    }

    .review-card:hover {
      transform: translateY(-4px);
    }

    .review-text {
      color: #555;
      line-height: 1.7;
      font-style: italic;
      margin-bottom: 1rem;
    }

    .reviewer {
      font-weight: 700;
      color: var(--dark);
    }

    .review-source {
      font-size: .78rem;
      color: #999;
    }

    .google-badge {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      background: #fff;
      border-radius: 16px;
      padding: 1rem 1.5rem;
      box-shadow: 0 4px 20px #0001;
      margin-bottom: 2rem;
      border: 1px solid #e8f0e8;
    }

    .google-badge-info {
      text-align: center;
    }

    .google-badge-score {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 900;
      color: var(--dark);
      line-height: 1;
    }

    .google-badge-stars {
      color: #f9c846;
      font-size: 1rem;
      letter-spacing: 2px;
    }

    .google-badge-label {
      font-size: .7rem;
      color: #999;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .05em;
      margin-top: .2rem;
    }

    .google-badge-divider {
      width: 1px;
      height: 40px;
      background: #e0e0e0;
    }

    .google-badge-text {
      font-size: .85rem;
      color: #666;
      line-height: 1.5;
    }

    .gmaps-btn {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      background: var(--white);
      color: var(--dark);
      border: 2px solid #ddd;
      border-radius: 50px;
      padding: .7rem 1.6rem;
      text-decoration: none;
      font-weight: 600;
      font-size: .9rem;
      transition: all .2s;
      margin-top: 1rem;
    }

    .gmaps-btn:hover {
      border-color: var(--cactus);
      color: var(--cactus);
    }

    /* INSTAGRAM */
    .instagram {
      background: var(--white);
      text-align: center;
    }

    .ig-link {
      display: inline-flex;
      align-items: center;
      gap: .8rem;
      background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
      color: #fff;
      border-radius: 50px;
      padding: 1rem 2.5rem;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.1rem;
      margin-top: 2rem;
      transition: transform .15s, box-shadow .15s;
      box-shadow: 0 4px 24px #dc274355;
    }

    .ig-link:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 32px #dc274366;
    }

    .instagram p {
      color: #666;
      max-width: 500px;
      margin: 1rem auto 0;
      line-height: 1.7;
    }

    /* CONTACT */
    .contact {
      background: var(--cactus);
      color: #fff;
      text-align: center;
    }

    .contact .section-title {
      color: #fff;
    }

    .contact p {
      color: #c8f0dc;
      max-width: 500px;
      margin: 0 auto 2rem;
      line-height: 1.7;
    }

    .contact-options {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
    }

    .contact-btn {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      background: rgba(255, 255, 255, 0.15);
      color: #fff;
      border: 2px solid rgba(255, 255, 255, .4);
      border-radius: 50px;
      padding: .9rem 2rem;
      text-decoration: none;
      font-weight: 600;
      transition: all .15s;
    }

    .contact-btn:hover {
      background: #fff;
      color: var(--cactus);
    }

    /* FOOTER */
    footer {
      background: var(--dark);
      color: #aaa;
      text-align: center;
      padding: 2rem;
      font-size: .85rem;
    }

    footer a {
      color: var(--cactus-light);
      text-decoration: none;
    }

    /* RESPONSIVE */
    .lang-toggle {
      display: flex;
      align-items: center;
      gap: .4rem;
    }

    .lang-btn {
      background: none;
      border: none;
      font-family: 'DM Sans', sans-serif;
      font-size: .85rem;
      font-weight: 700;
      cursor: pointer;
      color: #aaa;
      padding: .2rem .3rem;
      transition: color .2s;
    }

    .lang-btn.active {
      color: var(--cactus);
    }

    .lang-btn:hover {
      color: var(--cactus);
    }

    @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;
      }
    }

    /* ─── MOBILE RESPONSIVE ─── */
    @media (max-width: 1200px) {

      /* Nav */
      nav {
        padding: .45rem .75rem;
        gap: .5rem;
      }

      .nav-logo {
        width: 52px;
        height: 52px;
      }

      .nav-controls {
        gap: .45rem;
      }

      .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(245, 234, 214, 0.97);
        backdrop-filter: blur(12px);
        border-bottom: 2px solid var(--cactus);
        padding: .9rem 1rem 1.1rem;
        flex-direction: column;
        gap: .75rem;
      }

      .nav-links.open {
        display: flex;
      }

      .nav-links a {
        display: block;
        padding: .2rem 0;
      }

      .nav-cta {
        padding: .5rem .9rem;
        font-size: .78rem;
      }

      .lang-toggle {
        gap: .2rem;
      }

      .lang-btn {
        font-size: .78rem;
      }

      /* Hero */
      .hero {
        padding-top: 70px;
        min-height: 100dvh;
        padding-bottom: 1.5rem;
      }

      .hero-inner {
        width: 100%;
        padding: clamp(1.5rem, 4vw, 3rem);
        grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
        grid-template-areas:
          "brand copy"
          "brand actions";
        column-gap: clamp(1.5rem, 3vw, 3rem);
        row-gap: 1.25rem;
      }

      .hero-logo {
        width: min(100%, 650px);
      }

      .hero-sub {
        font-size: clamp(.95rem, 1.5vw, 1.1rem);
      }

      .hero-ctas {
        align-items: flex-start;
      }

      .hero-ctas a {
        width: auto;
        max-width: none;
        text-align: center;
      }

      .cactus-deco {
        display: none;
      }

      /* Chips */
      .chips-bar {
        gap: .8rem;
        padding: 1rem;
        font-size: .78rem;
      }

      /* Sections */
      section {
        padding: 3.5rem 1rem;
      }

      .section-title {
        font-size: 1.8rem;
      }

      /* About */
      .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .about-center-logo {
        width: clamp(80px, 26.7vw, 107px);
      }

      /* Cabins */
      .cabins-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .cabin-body {
        padding: 1.2rem;
      }

      .cabin-name {
        font-size: 1.4rem;
      }

      /* Fishing service */
      .fishing-service {
        padding: 0 1rem 3.5rem;
      }

      .fishing-mini-card {
        grid-template-columns: 92px minmax(0, 1fr) 76px;
        gap: .75rem;
        padding: .8rem;
      }

      .fishing-mini-media {
        width: 92px;
      }

      .fishing-mini-img {
        width: 92px;
        align-self: stretch;
        aspect-ratio: 1;
      }

      .fishing-mini-person {
        width: 76px;
        border-radius: 12px;
      }

      .fishing-mini-title {
        font-size: 1.35rem;
      }

      .fishing-mini-copy {
        font-size: .9rem;
        margin-bottom: .55rem;
      }

      .fishing-mini-tags {
        gap: .35rem;
      }

      .fishing-mini-tags span {
        padding: .22rem .55rem;
        font-size: .7rem;
      }

      .fishing-mini-footnote {
        font-size: .74rem;
      }

      /* Location */
      .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .map-iframe {
        height: 250px;
      }

      /* Reviews */
      .reviews-grid {
        grid-template-columns: 1fr;
      }

      .reviews-tabs {
        flex-wrap: wrap;
      }

      .tab-btn {
        padding: .5rem 1.2rem;
        font-size: .85rem;
      }

      /* Contact */
      .contact-options {
        flex-direction: column;
        align-items: center;
      }

      .contact-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
      }

      /* Stats */
      .about-stats {
        justify-content: center;
      }
    }

    @media (max-width: 760px) {
      .hero {
        min-height: auto;
        padding-top: 86px;
        padding-bottom: 3rem;
      }

      .hero-inner {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
          "brand"
          "copy"
          "actions";
        gap: 1.25rem;
        padding: 1.5rem 1rem 0;
        text-align: center;
      }

      .hero-title,
      .hero-sub {
        justify-self: center;
      }

      .hero-logo {
        width: min(92vw, 620px);
        margin: 0 auto;
      }

      .hero-sub {
        max-width: 560px;
        padding: 0 .5rem;
      }

      .hero-ctas {
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }

      .hero-ctas a {
        width: 100%;
        max-width: 280px;
      }
    }

    @media (max-width: 400px) {
      .hero-logo {
        width: 92vw;
      }

      .nav-logo {
        width: 48px;
        height: 48px;
      }

      .fishing-mini-card {
        grid-template-columns: 1fr 1fr;
        gap: .7rem;
      }

      .fishing-mini-media {
        grid-column: 1;
        grid-row: 1;
        width: 100%;
      }

      .fishing-mini-img {
        width: 100%;
        aspect-ratio: 4 / 3;
      }

      .fishing-mini-content {
        grid-column: 1 / -1;
        grid-row: 2;
      }

      .fishing-mini-person {
        grid-column: 2;
        grid-row: 1;
        width: 100%;
        aspect-ratio: 4 / 3;
        border-radius: 10px;
      }

      .fishing-mini-label {
        font-size: .66rem;
      }

      .fishing-mini-title {
        font-size: 1.25rem;
      }

      .fishing-mini-copy {
        font-size: .84rem;
      }

    }
