    :root {
      --sand: #f4efe5;
      --sand-dark: #e6dccb;
      --white: #ffffff;
      --green: #23483d;
      --green-dark: #17372e;
      --green-light: #dfe9e2;
      --text: #27312d;
      --muted: #64716a;
      --line: #d8ddd7;
      --shadow: 0 12px 36px rgba(26, 54, 44, 0.10);
      --radius: 22px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--text);
      background: var(--sand);
      font-family: "DM Sans", Arial, sans-serif;
      font-size: 17px;
      line-height: 1.65;
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(1120px, calc(100% - 40px));
      margin: 0 auto;
    }

    .topbar {
      background: var(--green-dark);
      color: white;
    }

    .topbar-inner {
      min-height: 48px;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 14px;
      font-size: 13px;
      letter-spacing: 0.03em;
    }

    .language-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: rgba(255, 255, 255, 0.88);
      transition: color 0.2s ease;
    }

    .language-link:hover,
    .language-link:focus {
      color: white;
    }

    .language-link img {
      width: 22px;
      height: auto;
      border-radius: 2px;
    }

    .site-header {
      background: rgba(244, 239, 229, 0.96);
      border-bottom: 1px solid rgba(35, 72, 61, 0.14);
      position: sticky;
      top: 0;
      z-index: 20;
    }

    .header-inner {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      color: var(--green);
      font-family: "Playfair Display", Georgia, serif;
      font-size: clamp(23px, 3vw, 30px);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1;
    }

    .logo span {
      display: block;
      margin-top: 5px;
      font-family: "DM Sans", Arial, sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.19em;
      text-transform: uppercase;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 22px;
      font-size: 14px;
      font-weight: 600;
    }

    .nav a:not(.button) {
      color: var(--green);
    }

    .nav a:not(.button):hover {
      text-decoration: underline;
      text-underline-offset: 5px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 11px 20px;
      border: 2px solid var(--white);
      border-radius: 999px;
      background: var(--green);
      color: white;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.02em;
      text-align: center;
      transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
    }

    .button:hover,
    .button:focus {
      background: var(--green-dark);
      transform: translateY(-2px);
    }

    .button-outline {
      background: transparent;
      color: var(--green);
    }

    .button-outline:hover,
    .button-outline:focus {
      color: white;
      background: var(--green);
    }

    .hero {
      min-height: 670px;
      display: grid;
      align-items: end;
      position: relative;
      isolation: isolate;
      background-image:
          linear-gradient(270deg, rgba(15, 39, 31, 0.35) 0%, rgba(15, 39, 31, 0.38) 45%, rgba(15, 39, 31, 0.02) 80%),
        url("/pix/due207_8.png");
      background-position: center;
      background-size: cover;
    }

    .hero::after {
      content: "";
      position: absolute;
      z-index: -1;
      inset: 0;
      background: linear-gradient(0deg, rgba(11, 31, 24, 0.35), transparent 45%);
    }

    .hero-content {
      max-width: 760px;
      padding: 94px 0 100px;
      color: white;
    }

    .eyebrow {
      margin: 0 0 18px;
      color: #f6e9cb;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    h1,
    h2,
    h3 {
      color: var(--green);
      font-family: "Playfair Display", Georgia, serif;
      line-height: 1.15;
    }

    h1 {
      max-width: 700px;
      margin: 0;
      color: white;
      font-size: clamp(42px, 7vw, 76px);
      letter-spacing: -0.035em;
    }

    .hero-text {
      max-width: 570px;
      margin: 23px 0 32px;
      font-size: clamp(17px, 2vw, 21px);
      line-height: 1.55;
    }

    .button-row {
      display: flex;
      flex-wrap: wrap;
      gap: 13px;
    }

    .hero .button-outline {
      border-color: white;
      color: white;
    }

    .hero .button-outline:hover,
    .hero .button-outline:focus {
      background: white;
      color: var(--green-dark);
    }

    .intro {
      padding: 105px 0;
    }

    .intro-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: clamp(35px, 7vw, 96px);
      align-items: center;
    }

    .intro-image {
      position: relative;
    }

    .intro-image img {
      width: 100%;
      min-height: 400px;
      object-fit: cover;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .image-label {
      position: absolute;
      right: -18px;
      bottom: 26px;
      max-width: 210px;
      padding: 17px 20px;
      border-radius: 12px;
      background: var(--green);
      color: white;
      font-size: 14px;
      line-height: 1.45;
      box-shadow: var(--shadow);
    }

    h2 {
      margin: 0 0 20px;
      font-size: clamp(34px, 5vw, 52px);
      letter-spacing: -0.03em;
    }

    h3 {
      margin: 0;
      font-size: 25px;
    }

    .lead {
      margin: 0 0 22px;
      font-size: 20px;
      line-height: 1.6;
    }

    .facts {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 13px;
      padding: 0;
      margin: 30px 0;
      list-style: none;
    }

    .facts li {
      padding: 16px 16px 16px 19px;
      border-left: 3px solid var(--green);
      border-radius: 0 10px 10px 0;
      background: var(--white);
      font-size: 15px;
      line-height: 1.45;
      box-shadow: 0 5px 16px rgba(26, 54, 44, 0.05);
    }

    .section-green {
      padding: 102px 0;
      background: var(--green);
      color: white;
    }

    .section-green h2,
    .section-green h3 {
      color: white;
    }

    .section-green .eyebrow {
      color: #d9e9dd;
    }

    .album-grid {
      display: grid;
      grid-template-columns: 1fr 0.88fr;
      gap: clamp(32px, 6vw, 80px);
      align-items: center;
    }

    .album-image {
      overflow: hidden;
      border-radius: var(--radius);
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
    }

    .album-image img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      transition: transform 0.35s ease;
    }

    .album-image:hover img {
      transform: scale(1.035);
    }

    .section-green .button {
      background: white;
      border-color: white;
      color: var(--green-dark);
    }

    .section-green .button:hover,
    .section-green .button:focus {
      background: #ecf0eb;
      border-color: #ecf0eb;
    }

    .destination {
      padding: 105px 0;
      background: var(--white);
    }

    .destination-heading {
      max-width: 700px;
      margin: 0 auto 55px;
      text-align: center;
    }

    .destination-heading p {
      margin: 0;
      color: var(--muted);
      font-size: 18px;
    }

    .image-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 26px;
      align-items: stretch;
    }

    .image-card {
      overflow: hidden;
      min-height: 385px;
      border-radius: var(--radius);
      position: relative;
      color: white;
      background: var(--green);
    }

    .image-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      inset: 0;
      transition: transform 0.4s ease;
    }

    .image-card:hover img {
      transform: scale(1.04);
    }

    .image-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(13, 37, 29, 0.76), rgba(13, 37, 29, 0.05) 65%); 
    }

    .image-card-content {
      position: absolute;
      z-index: 1;
      right: 28px;
      bottom: 24px;
      left: 28px;
    }

    .image-card-content h3 {
      color: white;
    }

    .image-card-content p {
      margin: 8px 0 0;
      line-height: 1.5;
    }

    .experience {
      padding: 105px 0;
      background: var(--sand);
    }

    .experience-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: clamp(35px, 7vw, 96px);
      align-items: center;
    }

    .experience-copy p {
      margin: 0 0 22px;
    }

    .experience-list {
      display: grid;
      gap: 0;
      margin: 27px 0 30px;
      border-top: 1px solid var(--line);
    }

    .experience-list div {
      padding: 15px 0;
      border-bottom: 1px solid var(--line);
      font-weight: 600;
    }

    .experience-list div::before {
      content: "•";
      margin-right: 11px;
      color: var(--green);
    }

    .experience-image img {
      width: 100%;
      min-height: 430px;
      object-fit: cover;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .booking {
      padding: 92px 0;
      background: var(--green-light);
    }

    .booking-box {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 35px;
      padding: clamp(30px, 6vw, 65px);
      border-radius: var(--radius);
      background: var(--green);
      color: white;
      box-shadow: var(--shadow);
    }

    .booking-box h2 {
      margin-bottom: 12px;
      color: white;
    }

    .booking-box p {
      max-width: 650px;
      margin: 0;
      font-size: 18px;
    }

    .footer {
      padding: 48px 0;
      background: var(--green-dark);
      color: rgba(255, 255, 255, 0.82);
      font-size: 14px;
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 25px;
    }

    .footer strong {
      color: white;
      font-family: "Playfair Display", Georgia, serif;
      font-size: 20px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 18px;
    }

    .footer a:hover {
      color: white;
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    @media (max-width: 760px) {
      body {
        font-size: 16px;
      }

      .container {
        width: min(100% - 30px, 1120px);
      }

      .topbar-inner {
        justify-content: center;
      }

      .header-inner {
        min-height: 72px;
      }

      .nav a:not(.button) {
        display: none;
      }

      .nav {
        gap: 10px;
      }

      .nav .button {
        min-height: 40px;
        padding: 9px 14px;
        font-size: 12px;
      }

      .hero {
        min-height: 620px;
        background-position: 58% center;
      }

      .hero-content {
        padding: 80px 0 66px;
      }

      .intro,
      .destination,
      .experience {
        padding: 70px 0;
      }

      .section-green {
        padding: 72px 0;
      }

      .intro-grid,
      .album-grid,
      .experience-grid,
      .booking-box,
      .image-grid {
        grid-template-columns: 1fr;
      }

      .intro-image {
        order: 2;
      }

      .experience-image {
        order: 2;
      }

      .intro-image img,
      .experience-image img {
        min-height: 310px;
      }

      .image-label {
        right: 15px;
        bottom: 15px;
      }

      .facts {
        grid-template-columns: 1fr;
      }

      .image-card {
        min-height: 310px;
      }

      .booking {
        padding: 65px 0;
      }

      .booking-box {
        gap: 25px;
      }

      .footer-inner {
        display: block;
      }

      .footer-links {
        justify-content: flex-start;
        margin-top: 18px;
      }
    }
 