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

    :root {
      --white: #ffffff;
      --nav-height: 60px;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background: #fff;
      color: #fff;
    }

    /* ── NAV ── */
    nav {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: var(--nav-height);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      z-index: 10;
    }

    .nav-logo {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 1.5rem;
      letter-spacing: 0.02em;
      color: #fff;
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      color: #fff;
      text-decoration: none;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      font-weight: 600;
      text-transform: uppercase;
      opacity: 0.9;
      transition: opacity 0.2s;
    }

    .nav-links a:hover { opacity: 1; }

    .nav-links .btn-contact {
      border: 1px solid rgba(255,255,255,0.7);
      padding: 6px 18px;
      border-radius: 2px;
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      width: 100%;
      height: 420px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-short {
      position: relative;
      width: 100%;
      height: 100px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('/images/forest.jpg');
      background-size: cover;
      background-position: center 40%;
    }

    .hero-short-bg {
      position: absolute;
      inset: 0;
      background-image: url('/images/forest_short.jpg');
      background-size: cover;
      background-position: center 40%;
    }

    .hero-text {
      position: relative;
      z-index: 2;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 400;
      letter-spacing: 0.01em;
      color: #fff;
      text-align: center;
      padding: 0 24px;
    }

    /* ── GRID ── */
    .grid-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      max-width: 956px;
      margin: 0 auto;
      gap: 10px;
      padding: 10px 0 60px;
    }

    /* top row: two cells */
    .grid-top {
      display: contents;
    }

    /* bottom row: three equal cells */
    .grid-bottom {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 10px;
    }

    .grid-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .grid-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .grid-card:hover img { transform: scale(1.04); }

    /* Top row cards */
    .grid-card.top { height: 300px; }
    .grid-card.left { width: 567px; }
    .grid-card.right { width: 379px; }

    /* Bottom row cards */
    .grid-card.bottom { height: 300px; width: 312px; }

    .card-label {
      position: absolute;
      bottom: 16px;
      left: 16px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 1.2rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #fff;
      line-height: 1.2;
    }

    /* subtle dark gradient at bottom of each card */
    .grid-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
      pointer-events: none;
    }

    .content {
      position: relative;
      padding-left: 50px;
      padding-right: 50px;
      padding-top: 50px;
      overflow: hidden;
      display: block;
      align-items: center;
      justify-content: left;
    }

    .content p {
      font-family: 'Montserrat', sans-serif;
      font-size: 1rem;
      background: #fff;
      color: #000;
      margin-bottom: 20px;
    }

    .content h2 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      letter-spacing: 0.02em;
      font-size: 1.5rem;
      color: #3f666b;
      text-align: center;
      margin-bottom: 30px;
    } 
      
    .content h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.2rem;
      background: #fff;
      color: #000;
      margin-top: 20px;
      margin-bottom: 10px
    } 
      
    .content h4 {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.1rem;
      background: #fff;
      color: #3f666b;
      margin-top: 10px;
      margin-bottom: 20px
    } 
 
    #poem {
      font-family: 'Montserrat', sans-serif;
      font-size: 1rem;
      background: #fff;
      color: #000;
      line-height: 1.5;
      margin-top: 30px;
      margin-bottom: 20px
    }

    .trip_photos {
      display: flex;
      justify-content: space-evenly; /* Options: space-between, space-around */
      align-items: flex-start;
      margin-top: 30px;
      margin-bottom: 30px;
    } 
      
    .trip_photos figure {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-left: 10px;
      margin-right: 10px;
    }
      
    .trip_photos img {
      max-width: 100%;
      height: auto;
    } 
      
    .trip_photos figcaption {
      margin-top: 8px;
      font-size: 0.85rem;
      color: #666;
      text-align: center;
    }

    hr {
      border: none;
      border-top: 2px solid #3f666b;
      width: 100%;
      padding: 10px 0px;
    }

    .galleria {
      margin-left: auto;
      margin-right: auto;
      max-width: 100%;
      width: 900px;
      height: 600px;
    }

    .bottom-space {
      height: 100px;
    }

    /* ── FOOTER ── */
    footer {
      background: #000;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.5);
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

