  /* ============ CRITICAL INLINE STYLES (rest in external CSS) ============ */
  :root {
    --color-sage: #8C9A84;
    --color-moss: #2D3A31;
    --color-terracotta: #C27B66;
    --color-clay: #DCCFC2;
    --color-cream: #FBF9F5;
    --color-stone: #E6E2DA;
    --color-paper: #FFFFFF;
    --color-ink: #1a1f1b;
    --radius-sm: 0.625rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-2xl: 2.5rem;
    --radius-full: 9999px;
    --shadow-xs: 0 1px 2px rgba(45, 58, 49, 0.04);
    --shadow-sm: 0 4px 12px rgba(45, 58, 49, 0.06);
    --shadow-md: 0 12px 32px rgba(45, 58, 49, 0.09);
    --shadow-lg: 0 24px 56px rgba(45, 58, 49, 0.13);
    --shadow-xl: 0 36px 80px rgba(45, 58, 49, 0.18);
    --shadow-glow: 0 0 60px rgba(140, 154, 132, 0.18);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-spring: cubic-bezier(0.22, 1.2, 0.36, 1);
    --transition-fast: 0.2s var(--ease-out-expo);
    --transition-base: 0.4s var(--ease-out-expo);
    --transition-slow: 0.7s var(--ease-out-expo);
  }

  /* Critical preloader styles */
  .preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    background: var(--color-cream);
    transition: opacity 0.55s var(--ease-out-expo), visibility 0.55s var(--ease-out-expo);
  }

  .preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .loader-ring {
    width: 56px;
    height: 56px;
    border: 2px solid rgba(45, 58, 49, 0.08);
    border-top-color: var(--color-terracotta);
    border-right-color: var(--color-sage);
    border-radius: 50%;
    animation: loaderSpin 1s var(--ease-out-expo) infinite;
  }

  @keyframes loaderSpin {
    to {
      transform: rotate(360deg);
    }
  }

  .preloader .loader-text {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.04em;
    color: var(--color-moss);
    animation: loaderPulse 1.6s ease-in-out infinite;
  }

  @keyframes loaderPulse {

    0%,
    100% {
      opacity: 0.5;
    }

    50% {
      opacity: 1;
    }
  }

  /* Scrollbar */
  ::-webkit-scrollbar {
    width: 6px;
  }

  ::-webkit-scrollbar-track {
    background: transparent;
  }

  ::-webkit-scrollbar-thumb {
    background: rgba(140, 154, 132, 0.35);
    border-radius: 20px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: rgba(140, 154, 132, 0.55);
  }

  /* Selection */
  ::selection {
    background: rgba(140, 154, 132, 0.28);
    color: var(--color-moss);
  }

  .form-input {
    padding: 10px;
    background-color: #fff !important;
  }

  .input-email {
    background-color: rgba(255, 255, 255, 0.06) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .input-email::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
  }

  .input-email:focus {
    background-color: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(140, 154, 132, 0.5) !important;
  }

  #scrolltotop {
    border: 2px solid;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    position: relative;
    overflow-x: hidden;
    font-family: "Source Sans 3", sans-serif;
    background:
      radial-gradient(circle at 12% 8%, rgba(220, 207, 194, .45), transparent 30rem),
      radial-gradient(circle at 88% 22%, rgba(140, 154, 132, .18), transparent 32rem),
      var(--botanical-bg);
    color: var(--botanical-fg);
    font-size: 16px;
    line-height: 1.65;
  }

  body::before {
    content: "";
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 70;
    opacity: .018;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-repeat: repeat;
  }

  h1,
  h2,
  h3,
  h4,
  .font-heading {
    font-family: "Playfair Display", serif;
    letter-spacing: 0;
  }

  p {
    color: rgba(45, 58, 49, .78);
  }

  body.dark-mode {
    color-scheme: dark;
    background:
      radial-gradient(circle at 15% 12%, rgba(194, 123, 102, .14), transparent 28rem),
      radial-gradient(circle at 85% 20%, rgba(140, 154, 132, .16), transparent 30rem),
      #19231c;
    color: #F9F8F4;
  }

  .dark-mode p {
    color: rgba(249, 248, 244, .78);
  }

  .section-padding {
    position: relative;
    padding: 7rem 0;
  }

  .section-padding::after {
    content: "";
    position: absolute;
    right: min(7vw, 6rem);
    top: 2.5rem;
    width: 8rem;
    height: 8rem;
    border: 1px solid rgba(140, 154, 132, .22);
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 999px;
    transform: rotate(12deg);
    pointer-events: none;
  }

  .btn-primary,
  .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    min-height: 3.25rem;
    border-radius: 999px;
    padding: .9rem 1.35rem;
    font-size: .78rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .13em;
    text-transform: uppercase;
    transition: transform .5s ease, box-shadow .5s ease, border-color .35s ease, background .35s ease, color .35s ease;
  }

  .btn-primary {
    border: 1px solid var(--color-sage);
    background: var(--color-sage);
    color: #fff;
    box-shadow: 0 20px 40px -18px rgba(45, 58, 49, .55);
  }

  .btn-outline {
    border: 1px solid rgba(249, 248, 244, .7);
    color: #fff;
    background: rgba(249, 248, 244, .1);
    backdrop-filter: blur(10px);
  }

  .btn-primary:hover,
  .btn-outline:hover {
    transform: translateY(-2px);
    border-color: var(--color-terracotta);
    background: var(--color-terracotta);
    color: #fff;
    box-shadow: var(--shadow-large);
  }

  .contact-social a {
    color: #8c9a84
  }

  .card-eco {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(230, 226, 218, .9);
    border-radius: 1.75rem;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(242, 240, 235, .86));
    box-shadow: var(--shadow-soft);
    transition: transform .7s ease, box-shadow .7s ease, border-color .5s ease;
  }

  .card-eco::before {
    content: "";
    position: absolute;
    inset: auto 1.5rem 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(140, 154, 132, .55), transparent);
  }

  .card-eco:hover {
    transform: translateY(-.45rem);
    border-color: rgba(140, 154, 132, .45);
    box-shadow: 0 25px 50px -12px rgba(45, 58, 49, .13);
  }

  .glass-navbar {
    border-bottom: 1px solid rgba(230, 226, 218, .82);
    background: rgba(249, 248, 244, .86);
    backdrop-filter: blur(18px);
  }

  .glass-navbar a {
    color: var(--botanical-fg);
    transition: color .35s ease;
  }

  .glass-navbar a:hover {
    color: var(--botanical-terracotta);
  }

  .glass-navbar a.btn-primary {
    color: #fff;
  }

  .dark-mode .glass-navbar {
    border-color: rgba(230, 226, 218, .16);
    background: rgba(25, 35, 28, .84);
  }

  .dark-mode .glass-navbar a {
    color: #F9F8F4;
  }

  .dark-mode .card-eco,
  .dark-mode .form-panel {
    border-color: rgba(230, 226, 218, .16);
    background: rgba(45, 58, 49, .64);
    color: #F9F8F4;
  }

  .shadow-green {
    box-shadow: 0 25px 50px -12px rgba(45, 58, 49, .15);
  }

  .hero-bg {
    min-height: 100svh;
    background-image:
      linear-gradient(105deg, rgba(45, 58, 49, .84), rgba(45, 58, 49, .58), rgba(140, 154, 132, .22)),
      url("https://images.unsplash.com/photo-1532996122724-e3c354a0b15b?auto=format&fit=crop&w=2200&q=85");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
  }

  .hero-bg::before,
  .page-hero::before {
    content: "";
    position: absolute;
    inset: auto 7% 6% auto;
    width: min(34vw, 24rem);
    aspect-ratio: 1;
    border: 1px solid rgba(249, 248, 244, .36);
    border-radius: 52% 48% 45% 55%;
    transform: rotate(-12deg);
    pointer-events: none;
  }

  .page-hero {
    position: relative;
    min-height: 24rem;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background-image:
      linear-gradient(105deg, rgba(45, 58, 49, .84), rgba(45, 58, 49, .58), rgba(140, 154, 132, .22)),
      url("https://images.unsplash.com/photo-1611284446314-60a58ac0deb9?auto=format&fit=crop&w=1800&q=85");
    background-position: center;
    background-size: cover;
  }

  .hero-bg h1 {
    max-width: 12ch;
    font-size: clamp(2.65rem, 5.2vw, 4.75rem) !important;
    line-height: 1 !important;
    font-weight: 700 !important;
  }

  .hero-bg h1::after {
    content: "";
    display: block;
    width: 9rem;
    height: 1px;
    margin-top: 1.5rem;
    background: rgba(249, 248, 244, .55);
  }

  .hero-bg p,
  .page-hero p {
    font-size: clamp(1rem, 1.55vw, 1.15rem) !important;
  }

  .page-hero h1 {
    max-width: 15ch;
    margin-inline: auto;
    font-size: clamp(2.25rem, 4vw, 4.15rem) !important;
    line-height: 1.04 !important;
    font-weight: 700 !important;
  }

  main section h2 {
    font-size: clamp(2rem, 3vw, 3.45rem) !important;
    line-height: 1.08 !important;
    font-weight: 700 !important;
  }

  .text-center h1,
  .text-center h2,
  .text-center .font-heading,
  .page-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  main article h2,
  main article h3,
  .card-eco h2,
  .card-eco h3 {
    font-size: clamp(1.15rem, 1.35vw, 1.45rem) !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
  }

  .font-heading.text-5xl {
    font-size: clamp(2rem, 3.5vw, 3.4rem) !important;
  }

  .form-panel {
    border-radius: 2.5rem !important;
    border-color: rgba(249, 248, 244, .38) !important;
    background: rgba(249, 248, 244, .16) !important;
    box-shadow: 0 25px 50px -12px rgba(45, 58, 49, .34);
  }

  .form-panel>div {
    border-radius: 2rem !important;
    background: rgba(249, 248, 244, .96) !important;
  }

  .form-panel h2 {
    font-size: clamp(1.85rem, 2.8vw, 2.75rem) !important;
    font-weight: 700 !important;
  }

  input,
  select,
  textarea,
  .rounded-\[8px\] {
    border-radius: 999px !important;
  }

  textarea,
  .form-panel textarea {
    border-radius: 1.5rem !important;
  }

  input,
  select,
  textarea {
    border-color: rgba(230, 226, 218, .95) !important;
    background: rgba(242, 240, 235, .58) !important;
    color: var(--botanical-fg) !important;
    transition: border-color .35s ease, box-shadow .35s ease, background .35s ease;
  }

  input:focus,
  select:focus,
  textarea:focus {
    outline: none;
    border-color: var(--botanical-sage) !important;
    box-shadow: 0 0 0 3px rgba(140, 154, 132, .2);
    background: #fff !important;
  }

  .section-padding img.rounded-\[8px\],
  .section-padding img.rounded-\[8px\].object-cover {
    border-radius: 12rem 12rem 2.5rem 2.5rem !important;
    box-shadow: var(--shadow-large);
    transition: transform 1s ease;
  }

  .section-padding img.rounded-\[8px\]:hover {
    transform: scale(1.035) rotate(.5deg);
  }

  .process-line::before {
    content: "";
    position: absolute;
    left: 1.55rem;
    top: 2.25rem;
    bottom: 2.25rem;
    width: 1px;
    background: linear-gradient(var(--botanical-sage), var(--botanical-terracotta));
  }

  .testimonial-track {
    transition: transform .7s ease;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .45s ease, opacity .45s ease;
  }

  .faq-item.is-open .faq-answer {
    max-height: 14rem;
    opacity: 1;
  }

  .footer-eco {
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(circle at 15% 20%, rgba(194, 123, 102, .14), transparent 22rem),
      linear-gradient(135deg, #26352b 0%, #17241c 55%, #2D3A31 100%);
    color: #F9F8F4;
  }

  .footer-eco .font-heading {
    font-size: inherit;
  }

  .footer-eco::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image: url("data:image/svg+xml,%3Csvg width='220' height='120' viewBox='0 0 220 120' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 86C48 12 92 118 136 44C161 2 187 25 218 4' stroke='%23DCCFC2' stroke-width='1' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 220px 120px;
  }

  .footer-eco>* {
    position: relative;
  }

  .footer-eco p,
  .footer-eco a {
    color: rgba(249, 248, 244, .76);
  }

  .footer-link {
    display: block;
    margin-top: .7rem;
    color: rgba(249, 248, 244, .76);
    transition: color .35s ease, transform .35s ease;
  }

  .footer-link:hover {
    color: #F9F8F4;
    transform: translateX(4px);
  }

  .footer-social {
    display: grid;
    width: 2.65rem;
    height: 2.65rem;
    place-items: center;
    border: 1px solid rgba(220, 207, 194, .28);
    border-radius: 999px;
    color: #F9F8F4;
    background: rgba(249, 248, 244, .08);
    backdrop-filter: blur(8px);
  }

  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }

  .eco-float {
    animation: ecoFloat 7s ease-in-out infinite;
  }

  @keyframes ecoFloat {

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

    50% {
      transform: translateY(-10px) rotate(-1deg);
    }
  }

  .scroll-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 60;
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    color: #fff;
    background: var(--botanical-fg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .35s ease, transform .35s ease, background .35s ease;
  }

  .scroll-top:hover {
    background: var(--botanical-terracotta);
  }

  .scroll-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-booking {
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity .35s ease, transform .35s ease;
  }

  .mobile-booking.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  svg {
    stroke-width: 1.5;
  }

  @media (min-width: 768px) {
    .card-eco:nth-child(even) {
      transform: translateY(1.5rem);
    }

    .card-eco:nth-child(even):hover {
      transform: translateY(.85rem);
    }
  }

  @media (max-width: 768px) {
    .hero-bg {
      min-height: auto;
      background-attachment: scroll;
    }

    .hero-bg h1 {
      max-width: 10.5ch;
      font-size: clamp(2.65rem, 12vw, 3.35rem) !important;
    }

    .page-hero {
      min-height: 21rem;
    }

    .page-hero h1 {
      max-width: 13ch;
      font-size: clamp(2rem, 8.8vw, 2.75rem) !important;
    }

    main section h2 {
      font-size: clamp(1.95rem, 8.8vw, 2.65rem) !important;
    }

    .section-padding {
      padding: 4.75rem 0;
    }

    .glass-navbar nav {
      position: relative;
    }

    [data-mobile-menu]:not(.hidden) {
      position: absolute;
      inset: 100% 1rem auto;
      border: 1px solid rgba(230, 226, 218, .92);
      border-radius: 1.5rem;
      background: rgba(249, 248, 244, .96);
      box-shadow: var(--shadow-large);
      padding: 1.25rem;
    }
  }

  @media (min-width: 640px) {
    .mobile-booking {
      display: none;
    }
  }

  .hero-content {
    background-color: #000;
    opacity: 0.7 !important;
    padding: 20px;
    border-radius: 40px;
  }

  .terms-content h2 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2D3A31;
  }

  .terms-content h3 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 1.3rem;
    margin-top: 1.8rem;
    margin-bottom: 0.6rem;
    color: #4A5D4E;
  }

  .terms-content p,
  .terms-content li {
    color: rgba(45, 58, 49, 0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
  }

  .terms-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
  }

  .terms-content a {
    color: #8C9A84;
    text-decoration: underline;
  }

  .terms-content a:hover {
    color: #C27B66;
  }

  .policy-content h2 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2D3A31;
  }

  .policy-content h3 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 1.3rem;
    margin-top: 1.8rem;
    margin-bottom: 0.6rem;
    color: #4A5D4E;
  }

  .policy-content p,
  .policy-content li {
    color: rgba(45, 58, 49, 0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
  }

  .policy-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
  }

  .policy-content a {
    color: #8C9A84;
    text-decoration: underline;
  }

  .policy-content a:hover {
    color: #C27B66;
  }

  /* FAQ specific animation */
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.45s ease, opacity 0.45s ease;
  }

  .faq-item.is-open .faq-answer {
    max-height: 20rem;
    opacity: 1;
  }

  html,
  body {
    overflow-x: hidden;
  }