  :root {
    --forest: #1B3626;
    --forest-deep: #122419;
    --sand: #E7D9B9;
    --ivory: #FAF6EE;
    --charcoal: #26241F;
    --gold: #C79A45;
    --gold-soft: #D9BC81;
    --olive: #6C7A52;
    --terracotta: #B85C38;
    --line: rgba(199, 154, 69, 0.35);
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Inter', sans-serif;
    color: var(--charcoal);
    background: var(--ivory);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  h1,
  h2,
  h3,
  h4,
  .font-display {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.01em;
  }

  .font-accent {
    font-family: 'Cormorant Garamond', serif;
  }

  .eyebrow {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--gold);
  }

  a {
    text-decoration: none;
  }

  ::selection {
    background: var(--gold-soft);
    color: var(--forest-deep);
  }

  /* reduced motion */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
      scroll-behavior: auto !important;
    }
  }

  /* ============ SUN-COMPASS SIGNATURE MOTIF ============ */
  .sun-compass {
    width: 46px;
    height: 46px;
    display: inline-block;
  }

  .sun-compass circle,
  .sun-compass line,
  .sun-compass path {
    stroke: var(--gold);
    fill: none;
    stroke-width: 1;
  }

  .divider-motif {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 0 auto 2.5rem;
    width: fit-content;
  }

  .divider-motif .line {
    width: 64px;
    height: 1px;
    background: var(--line);
  }

  .divider-motif svg {
    width: 22px;
    height: 22px;
  }

  .divider-motif svg circle {
    stroke: var(--gold);
    fill: none;
    stroke-width: 1;
  }

  .divider-motif svg path {
    stroke: var(--gold);
    fill: none;
    stroke-width: 1;
  }

  /* ============ HERO ============ */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .hero-bg-layer {
    position: absolute;
    inset: 0;
    will-change: transform;
  }

  .hero-sun {
    position: absolute;
    top: 16%;
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 188, 129, 0.55) 0%, rgba(199, 154, 69, 0.18) 45%, transparent 72%);
    filter: blur(2px);
  }

  .hero-silhouette {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    color: var(--forest-deep);
    opacity: 0.9;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--ivory);
    max-width: 820px;
    padding: 0 24px;
  }

  .hero-content .eyebrow {
    color: var(--gold-soft);
    display: block;
    margin-bottom: 22px;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.2s;
  }

  .hero-content h1 {
    font-size: clamp(2.6rem, 6vw, 5.2rem);
    font-weight: 600;
    line-height: 1.08;
    margin-bottom: 26px;
    opacity: 0;
    animation: fadeUp 1.1s ease forwards 0.45s;
  }

  .hero-content p.lead-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-style: italic;
    color: var(--sand);
    max-width: 620px;
    margin: 0 auto 44px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeUp 1.1s ease forwards 0.7s;
  }

  .hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1.1s ease forwards 0.95s;
  }

  .btn-gold-fill {
    background: var(--gold);
    color: var(--forest-deep);
    padding: 15px 36px;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 2px;
    border: 1px solid var(--gold);
    transition: all 0.4s ease;
    display: inline-block;
  }

  .btn-gold-fill:hover {
    background: transparent;
    color: var(--ivory);
    transform: translateY(-2px);
  }



  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(22px);
    }

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

  .scroll-cue {
    position: absolute;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--gold-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeUp 1s ease forwards 1.3s;
  }

  .scroll-cue .stem {
    width: 1px;
    height: 46px;
    background: linear-gradient(var(--gold-soft), transparent);
    animation: stemPulse 2.4s ease-in-out infinite;
  }

  @keyframes stemPulse {

    0%,
    100% {
      opacity: 0.3;
    }

    50% {
      opacity: 1;
    }
  }

  /* ============ SECTION GENERICS ============ */
  section {
    position: relative;
  }

  .section-pad {
    padding: 130px 0;
  }

  @media (max-width:768px) {
    .section-pad {
      padding: 90px 0;
    }
  }

  .section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 70px;
  }

  .section-head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--forest-deep);
    margin: 18px 0 20px;
  }

  .section-head p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--olive);
    line-height: 1.6;
  }

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

  .reveal.in-view {
    opacity: 1;
    transform: translateY(0);
  }

  /* image placeholders — swap src/backgrounds with real photography */
  .ph-img {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--olive), var(--forest));
  }

  .ph-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 30% 20%, rgba(199, 154, 69, 0.35), transparent 45%),
      radial-gradient(circle at 80% 80%, rgba(184, 92, 56, 0.28), transparent 50%);
  }

  .ph-img .ph-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(250, 246, 238, 0.5);
  }

  .ph-img .ph-icon svg {
    width: 15%;
    height: 15%;
    min-width: 34px;
    min-height: 34px;
  }

  .ph-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    transition: transform 1.1s cubic-bezier(.25, .7, .35, 1);
  }

  .ph-hover:hover img {
    transform: scale(1.07);
  }

  /* ============ ABOUT ============ */
  .about-section {
    background: var(--ivory);
  }

  .about-media {
    aspect-ratio: 4/5;
    border-radius: 2px;
  }

  .about-media.tone-2 {
    background: linear-gradient(135deg, var(--terracotta), var(--forest-deep));
  }

  .about-text h2 {
    color: var(--forest-deep);
  }

  .about-text .body-copy {
    font-size: 1.02rem;
    line-height: 1.9;
    color: #4a463d;
    margin-bottom: 28px;
  }

  .about-stats {
    display: flex;
    gap: 46px;
    margin-top: 40px;
    flex-wrap: wrap;
  }

  .about-stats .stat h3 {
    color: var(--gold);
    font-size: 2.2rem;
    margin-bottom: 6px;
  }

  .about-stats .stat span {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--olive);
  }

  /* ---------- ACCOMMODATION ---------- */
  .accommodation .section-head {
    max-width: 640px;
  }

  .accommodation-intro {
    color: #4a473f;
    font-size: 16px;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
  }

  .stay-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 60px;
  }

  .stay-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow);
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .stay-card svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: transform 1.1s var(--ease);
  }

  .stay-card:hover svg {
    transform: scale(1.06);
  }

  .stay-card .stay-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(17, 26, 20, .86) 100%);
  }

  .stay-card .stay-label {
    position: absolute;
    left: 26px;
    bottom: 26px;
    right: 26px;
    color: var(--ivory);
  }

  .stay-card .stay-label .eyebrow {
    color: var(--gold-light);
    margin-bottom: 8px;
  }

  .stay-card .stay-label .eyebrow::before {
    display: none;
  }

  .stay-card .stay-label h3 {
    color: var(--ivory);
    font-size: 21px;
    margin-bottom: 6px;
  }

  .stay-card .stay-label p {
    color: var(--sand-light);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
  }

  .gallery-cta {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 25px;
  }


  /* ============ QUOTE ============ */
  .quote-section {
    background: var(--charcoal);
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%);
    color: var(--ivory);
    padding: 110px 0;
    text-align: center;
  }

  .quote-section blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-style: italic;
    font-weight: 400;
    max-width: 820px;
    margin: 0 auto 26px;
    line-height: 1.55;
    color: var(--sand);
  }

  .quote-section cite {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-soft);
  }

  /* ============ LOCATION ============ */
  .location-section {
    background: var(--sand);
  }

  .map-placeholder {
    aspect-ratio: 16/11;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
  }


  .map-pin {
    position: absolute;
    top: 48%;
    left: 52%;
    width: 14px;
    height: 14px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(199, 154, 69, 0.28);
  }

  .location-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .location-list li {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(38, 36, 31, 0.12);
    font-size: 0.95rem;
  }

  .location-list li span:first-child {
    color: var(--charcoal);
    font-weight: 500;
  }

  .location-list li span:last-child {
    color: var(--olive);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
  }


  @media(max-width:1024px) {
    .stay-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  @media(max-width:768px) {
    .stay-grid {
      grid-template-columns: 1fr;
    }
  }