@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;600;700&family=Amatic+SC:wght@400;700&display=swap');@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Lato:wght@400;700&display=swap");@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Lato:wght@400;700&display=swap");


/* Import Google Fonts */
/* Import utilities */
:root {
  /* Farmhouse Primary Colors */
  --cream: #FAF6F0;         /* Warm cream - main background */
  --barn-red: #8B3A3A;      /* Classic barn red - primary accent */
  --barn-red-dark: #6B2C2C; /* Darker barn red for hover */
  --sage: #87A96B;          /* Sage green - secondary accent */
  --sage-light: #A4BD8E;    /* Light sage for backgrounds */
  --charcoal: #3A3A3A;      /* Dark charcoal - main text */
  
  /* Farmhouse Secondary Colors */
  --wheat: #F5DEB3;         /* Wheat - warm highlights */
  --wheat-light: #FAE7C9;   /* Light wheat */
  --sky-blue: #87CEEB;      /* Soft sky blue - trust elements */
  --antique-white: #FAEBD7; /* Antique white - alt backgrounds */
  --wood-brown: #8B6F47;    /* Wood brown - borders, dividers */
  --wood-light: #A0845C;    /* Light wood */
  
  /* Farmhouse Neutrals */
  --off-white: #FEFEFA;     /* Off-white */
  --white: #FFFFFF;         /* Pure white */
  --stone-gray: #8B8680;    /* Stone gray - muted text */
  --stone-light: #A09B96;   /* Light stone */
  --deep-brown: #4A3C28;    /* Deep brown - dark sections */
  --rust: #B87333;          /* Rust orange - accents */
  
  /* Natural Elements */
  --forest: #4A5D23;        /* Deep forest green */
  --forest-light: #6B8E23;  /* Olive green */
  --sand: #F4E4C1;          /* Sandy beige */
  --sand-light: #FBF5E9;    /* Light sand */
  --clay: #C76B5C;          /* Terra cotta clay */
  --butter: #FFFACD;        /* Butter yellow */
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  --section-padding: 5rem 0;
  --section-padding-mobile: 3rem 0;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease-in-out;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  
  /* Breakpoints */
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
}
/* Screen reader only - for SEO/Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
/* Keyframe Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes scrollIndicator {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Animation Classes */
.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}
.slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}
.slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
}
.scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}
.float {
  animation: float 3s ease-in-out infinite;
}
/* Stagger Animation Delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
/* Wave Hover Effect */
.wave-hover {
  position: relative;
  display: inline-block;
}
.wave-hover::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='3' viewBox='0 0 100 3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 2C20 0.5 20 2.5 40 2C60 1.5 60 2.5 80 2C100 1.5 100 2.5 100 2' stroke='%234a7fb8' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-size: 100px 3px;
  background-repeat: repeat-x;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.wave-hover:hover::after {
  opacity: 1;
  animation: wave 1s linear infinite;
}
@keyframes wave {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: 100px;
  }
}
/* Import Northwoods Farmhouse Design System */
/* ==========================================================================
   Northwoods Farmhouse Design System
   Complete design system with exact colors, typography, and components
   ========================================================================== */
/* Google Fonts */
:root {
  /* Colors - Exact Hex Values */
  --linen: #F8F6F1;
  --parchment: #EFEAE1;
  --bone: #FFFFFF;
  --charcoal: #2E3230;

  --sage-200: #E8EFE9;
  --sage-500: #BCC9BF;
  --pine-800: #2F4A3C;

  --sky-100: #E6F0F6;
  --lake-600: #4E6E7E;

  --wheat-300: #E8C88F;
  --barn-700: #8E3B2F;
  --copper-600: #B66A4B;

  /* Typography */
  --font-display: "Playfair Display", serif;
  --font-sans: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --h1-size: 56px;
  --h1-lh: 1.1;
  --h1-trk: -0.015em;
  --h2-size: 36px;
  --h2-lh: 1.2;
  --h2-trk: -0.01em;
  --h3-size: 24px;
  --h3-lh: 1.25;
  --h3-trk: -0.005em;

  --p-size: 18px;
  --p-lh: 1.6;
  --small-size: 15px;
  --small-lh: 1.5;

  /* Layout rhythm */
  --section-pad-d: 96px;
  --section-pad-m: 64px;
  --container: 1120px;
  --radius: 14px;
  --border: 1px;
  --ring-w: 2px;
}
/* Base */
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--linen);
  font-size: var(--p-size);
  line-height: var(--p-lh);
  margin: 0;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 16px;
}
h1 {
  font-size: var(--h1-size);
  line-height: var(--h1-lh);
  letter-spacing: var(--h1-trk);
}
h2 {
  font-size: var(--h2-size);
  line-height: var(--h2-lh);
  letter-spacing: var(--h2-trk);
}
h3 {
  font-size: var(--h3-size);
  line-height: var(--h3-lh);
  letter-spacing: var(--h3-trk);
}
p {
  margin: 0 0 16px;
}
small, .small {
  font-size: var(--small-size);
  line-height: var(--small-lh);
}
/* Links */
a {
  color: var(--lake-600);
  text-underline-offset: 3px;
}
a:hover {
  text-decoration: underline;
}
/* Sections (background helpers) */
.section {
  padding: var(--section-pad-d) 0;
}
@media (max-width: 768px) {
  .section {
    padding: var(--section-pad-m) 0;
  }
}
/* Text color overrides for dark backgrounds */
.bg-pine h2,
.bg-pine h3,
.bg-pine p,
.bg-pine a {
  color: var(--bone);
}
.bg-barn h2,
.bg-barn h3,
.bg-barn p,
.bg-barn a {
  color: var(--bone);
}
.bg-charcoal h2,
.bg-charcoal h3,
.bg-charcoal p,
.bg-charcoal a {
  color: var(--bone);
}
/* Hairlines/Dividers */
.hr-copper {
  height: var(--border);
  background: var(--copper-600);
  border: 0;
  margin: 24px 0;
}
/* Buttons */
.btn {
  --btn-bg: var(--barn-700);
  --btn-fg: var(--bone);
  --btn-br: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 700 16px/1.1 var(--font-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: var(--radius);
  border: 2px solid var(--btn-br);
  background: var(--btn-bg);
  color: var(--btn-fg);
  transition: background .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease;
  text-decoration: none;
  cursor: pointer;
}
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 var(--ring-w) var(--wheat-300);
}
.btn:disabled {
  opacity: .48;
  pointer-events: none;
}
/* Button Variants */
.btn-primary {
  --btn-bg: var(--barn-700);
  --btn-fg: var(--bone);
}
.btn-primary:hover {
  background: #7A342A;
}
.btn-primary:active {
  background: #6A2E25;
}
.btn-primary-inverse {
  --btn-bg: var(--bone);
  --btn-fg: var(--barn-700);
  background: var(--bone);
  color: var(--barn-700);
  border: 2px solid var(--bone);
}
.btn-primary-inverse:hover {
  background: var(--wheat-300);
  color: var(--barn-700);
  border-color: var(--wheat-300);
  transform: translateY(-2px);
}
/* Override for dark backgrounds */
.bg-barn .btn-primary-inverse,
.bg-pine .btn-primary-inverse,
.bg-charcoal .btn-primary-inverse {
  background: var(--bone);
  color: var(--barn-700);
  border: 2px solid var(--bone);
}
.bg-barn .btn-primary-inverse:hover,
.bg-pine .btn-primary-inverse:hover,
.bg-charcoal .btn-primary-inverse:hover {
  background: var(--wheat-300);
  color: var(--barn-700);
  border-color: var(--wheat-300);
}
.btn-secondary {
  --btn-bg: transparent;
  --btn-fg: var(--pine-800);
  --btn-br: var(--pine-800);
}
.btn-secondary:hover {
  --btn-bg: var(--pine-800);
  --btn-fg: var(--bone);
  background: var(--pine-800);
  color: var(--bone);
}
.btn-tertiary {
  --btn-bg: transparent;
  --btn-fg: var(--lake-600);
  border: none;
  padding: 0;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}
.btn-tertiary:hover {
  text-decoration: underline;
}
/* Utility */
.round {
  border-radius: var(--radius);
}
.scrim-hero {
  position: relative;
  isolation: isolate;
}
.scrim-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(46, 50, 48, 0.6); /* 60% charcoal */
  z-index: 0;
}
.scrim-hero > * {
  position: relative;
  z-index: 1;
}
/* Section Background Helpers with tokens */
/* 1) Give every bg helper a --section-bg token */
.bg-linen    { background: var(--linen);    color: var(--charcoal); --section-bg: var(--linen); }
.bg-parchment{ background: var(--parchment);color: var(--charcoal); --section-bg: var(--parchment); }
.bg-bone     { background: var(--bone);     color: var(--charcoal); --section-bg: var(--bone); }
.bg-sage     { background: var(--sage-200); color: var(--charcoal); --section-bg: var(--sage-200); }
.bg-sky      { background: var(--sky-100);  color: var(--charcoal); --section-bg: var(--sky-100); }
.bg-wheat    { background: var(--wheat-300);color: var(--charcoal); --section-bg: var(--wheat-300); }
.bg-pine     { background: var(--pine-800); color: var(--bone);     --section-bg: var(--pine-800); }
.bg-barn     { background: var(--barn-700); color: var(--bone);     --section-bg: var(--barn-700); }
.bg-charcoal { background: var(--charcoal); color: var(--bone);     --section-bg: var(--charcoal); }
/* Section-specific text adjustments for better readability */
.bg-wheat .section-header p,
.bg-wheat p {
  color: var(--pine-800) !important;
  font-weight: 500;
}
.bg-wheat h2,
.bg-wheat h3 {
  color: var(--pine-800) !important;
}
/* 2) Seam utility for smooth transitions */
.section.seam { position: relative; }
.section.seam::after {
  content: "";
  position: absolute; 
  left: 0; 
  right: 0; 
  bottom: -1px;
  height: 48px; 
  pointer-events: none;
  /* fade the current section color to transparent so the next section shows through */
  background: linear-gradient(
    to bottom,
    var(--section-bg) 0%,
    rgba(90, 70, 54, 0.6) 40%,
    transparent 100%
  );
  z-index: 1;
}
@media (min-width: 900px) { 
  .section.seam::after { 
    height: 56px; 
  } 
}
/* Section helpers */
.section-title {
  margin-bottom: 8px;
}
.section-kicker {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  opacity: .7;
  margin-bottom: 8px;
  font-size: var(--small-size);
}
/* Icons with Pine color */
.icon-pine {
  color: var(--pine-800);
}
/* Cards - Section-specific styling per Northwoods guidelines */
.card {
  background: var(--bone);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 2px 8px rgba(46, 50, 48, 0.08);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
/* Section-specific card backgrounds */
/* Linen sections - use Bone cards */
.bg-linen .card {
  background: var(--bone);
  border: 1px solid var(--copper-600);
}
/* Bone sections - use Parchment or Sage 200 cards */
.bg-bone .card {
  background: var(--parchment);
  border: 1px solid var(--sage-500);
}
.bg-bone .card.card-sage {
  background: var(--sage-200);
  border: 1px solid var(--sage-500);
}
/* Sage sections - use Bone cards (never sage-on-sage) */
.bg-sage .card {
  background: var(--bone);
  border: 1px solid var(--copper-600);
}
/* Sky sections - use Bone cards */
.bg-sky .card {
  background: var(--bone);
  border: 1px solid var(--sage-500);
}
/* Wheat sections - use Bone or Parchment cards */
.bg-wheat .card {
  background: var(--bone);
  border: 1px solid var(--copper-600);
}
/* Dark sections (Barn, Charcoal, Pine) - use Bone cards for readability */
.bg-barn .card,
.bg-charcoal .card,
.bg-pine .card {
  background: var(--bone);
  color: var(--charcoal);
  border: 1px solid var(--wheat-300);
}
.bg-barn .card h2,
.bg-barn .card h3,
.bg-barn .card p,
.bg-charcoal .card h2,
.bg-charcoal .card h3,
.bg-charcoal .card p,
.bg-pine .card h2,
.bg-pine .card h3,
.bg-pine .card p {
  color: var(--charcoal);
}
/* Special card variants */
.card-sky {
  background: var(--sky-100);
  border: 1px solid var(--lake-600);
}
.card-parchment {
  background: var(--parchment);
  border: 1px solid var(--copper-600);
}
/* Card hover states */
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 50, 48, 0.12);
}
/* Responsive adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
}
/* Navigation overrides for Northwoods theme */
.site-header {
  background: var(--bone);
  border-bottom: 1px solid var(--parchment);
}
.nav-link {
  color: var(--charcoal);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-link:hover {
  color: var(--lake-600);
}
.nav-cta {
  background: var(--barn-700);
  color: var(--bone);
  padding: 10px 20px;
  border-radius: var(--radius);
}
.nav-cta:hover {
  background: #7A342A;
  color: var(--bone);
}
/* Footer specific */
.site-footer {
  background: var(--charcoal);
  color: var(--bone);
  padding: var(--section-pad-d) 0;
}
.site-footer a {
  color: var(--bone);
  opacity: 0.8;
}
.site-footer a:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .site-footer {
    padding: var(--section-pad-m) 0;
  }
}
/* =========================
  FARMHOUSE GRADIENT SYSTEM
  - subtle tonal blends for each bg
  - scroll-in + (desktop) hover motion
  - respects prefers-reduced-motion
========================= */
/* 0) Base tokens (keep your existing ones; these are just referenced) */
:root{
  --linen:#F8F6F1; --parchment:#EFEAE1; --bone:#FFFFFF; --charcoal:#2E3230;
  --sage-200:#E8EFE9; --sage-500:#BCC9BF; --pine-800:#2F4A3C;
  --sky-100:#E6F0F6; --lake-600:#4E6E7E;
  --wheat-300:#E8C88F; --barn-700:#8E3B2F; --copper-600:#B66A4B;

  /* gradient motion control */
  --grad-angle: 180deg;          /* default vertical */
  --grad-shift: 0%;              /* animated from 0% → 100% */
  --grad-scale: 100%;            /* slight zoom on hover/scroll */
}
/* 1) Core section scaffold (you already have .section) */
.section {
  position: relative;
  overflow: clip; /* keeps gradient effects tidy at edges */
  will-change: background-position;
  margin: 0 !important;
  padding: var(--section-pad-d) 0;
}
@media (max-width: 768px) {
  .section {
    padding: var(--section-pad-m) 0;
  }
}
/* 2) Subtle motion: only if user allows animation */
@media (prefers-reduced-motion: no-preference){
  /* animate gradient position/size when section is in view */
  .section.in-view {
    --grad-shift: 100%;
    --grad-scale: 102%;
    transition:
      --grad-shift 1400ms cubic-bezier(.2,.6,.2,1),
      --grad-scale 1200ms cubic-bezier(.2,.6,.2,1);
  }
  /* desktop hover enhances the effect slightly */
  @media (hover:hover){
    .section:hover {
      --grad-scale: 104%;
    }
  }
}
/* 3) GRADIENT VARIANTS
   Each is a tasteful tonal blend with good type contrast.
   Swap your bg-* helpers with these bg-*-grad classes.
*/
/* 3a) Neutrals */
.bg-linen-grad {
  /* paper cream → bone highlight */
  background:
    radial-gradient( 160% 120% at 80% 10%,
      rgba(255, 255, 255, 0.8) 0%,
      transparent 35%),
    linear-gradient(var(--grad-angle),
      rgba(248, 246, 241, 1.0) calc(0% + var(--grad-shift)/6),
      rgba(239, 234, 225, 0.6) 60%,
      var(--linen) 100%);
  color: var(--charcoal);
  background-size: var(--grad-scale) var(--grad-scale);
}
.bg-bone-grad {
  /* bone → parchment floor (barely there) */
  background:
    linear-gradient(var(--grad-angle),
      var(--bone) 0%,
      rgba(239, 234, 225, 0.35) 100%);
  color: var(--charcoal);
}
/* 3b) Nature tints */
.bg-sky-grad {
  /* cool lake air */
  background:
    radial-gradient(140% 90% at 20% 0%,
      rgba(255, 255, 255, 0.7) 0%,
      transparent 40%),
    linear-gradient(var(--grad-angle),
      rgba(230, 240, 246, 1.0) 0%,
      rgba(217, 232, 243, 0.7) 55%,
      var(--sky-100) 100%);
  color: var(--charcoal);
}
.bg-sage-grad {
  /* garden shade */
  background:
    radial-gradient(130% 85% at 80% 10%,
      rgba(255, 255, 255, 0.65) 0%,
      transparent 38%),
    linear-gradient(var(--grad-angle),
      rgba(232, 239, 233, 1.0) 0%,
      rgba(188, 201, 191, 0.35) 100%);
  color: var(--charcoal);
}
/* 3c) Deep brand tones */
.bg-barn-grad {
  /* weathered barn red */
  background:
    radial-gradient(180% 120% at 20% 0%,
      rgba(166, 69, 55, 0.28) 0%,
      transparent 45%),
    linear-gradient(var(--grad-angle),
      rgba(142, 59, 47, 0.96) 0%,
      #6A2E25 100%);
  color: var(--bone);
}
.bg-pine-grad {
  /* evergreen canopy */
  background:
    radial-gradient(170% 120% at 80% 0%,
      rgba(60, 94, 75, 0.26) 0%,
      transparent 46%),
    linear-gradient(var(--grad-angle),
      rgba(47, 74, 60, 0.94) 0%,
      #23382F 100%);
  color: var(--bone);
}
.bg-charcoal-grad {
  /* charcoal → softer nightfall */
  background:
    radial-gradient(150% 110% at 70% 5%,
      rgba(74, 78, 76, 0.22) 0%,
      transparent 42%),
    linear-gradient(var(--grad-angle),
      #2E3230 0%,
      #252827 100%);
  color: var(--bone);
}
/* 3d) Enhanced dark gradients for amenities and testimonials */
.bg-pine-grad-deep {
  /* Rich evergreen with copper highlights */
  background:
    radial-gradient(140% 120% at 20% 10%,
      rgba(182, 106, 75, 0.35) 0%,
      transparent 45%),
    radial-gradient(120% 100% at 80% 90%,
      rgba(47, 74, 60, 0.8) 0%,
      transparent 50%),
    linear-gradient(var(--grad-angle),
      #1A2B22 0%,
      rgba(47, 74, 60, 0.95) 30%,
      #2F4A3C 70%,
      #23382F 100%);
  color: var(--bone);
  background-size: var(--grad-scale) var(--grad-scale);
  box-shadow: 
    inset 0 4px 20px rgba(0, 0, 0, 0.3),
    0 2px 15px rgba(0, 0, 0, 0.2);
}
.bg-lake-grad-deep {
  /* Serene lake at twilight with forest reflections */
  background:
    radial-gradient(120% 80% at 20% 0%,
      rgba(91, 133, 150, 0.3) 0%,
      transparent 40%),
    radial-gradient(100% 120% at 80% 100%,
      rgba(60, 94, 75, 0.4) 0%,
      transparent 45%),
    linear-gradient(var(--grad-angle),
      #243540 0%,
      rgba(91, 133, 150, 0.85) 30%,
      rgba(60, 94, 75, 0.9) 70%,
      #1E3A2F 100%);
  color: var(--bone);
  background-size: var(--grad-scale) var(--grad-scale);
  box-shadow: 
    inset 0 4px 20px rgba(0, 0, 0, 0.3),
    0 2px 15px rgba(60, 94, 75, 0.25);
}
.bg-barn-grad-deep {
  /* Deep barn red with golden warmth */
  background:
    radial-gradient(160% 140% at 30% 0%,
      rgba(232, 200, 143, 0.25) 0%,
      transparent 50%),
    radial-gradient(130% 110% at 70% 100%,
      rgba(142, 59, 47, 0.4) 0%,
      transparent 55%),
    linear-gradient(var(--grad-angle),
      #4A1F1A 0%,
      rgba(142, 59, 47, 0.98) 25%,
      #8E3B2F 60%,
      #6A2E25 100%);
  color: var(--bone);
  background-size: var(--grad-scale) var(--grad-scale);
  box-shadow: 
    inset 0 4px 20px rgba(0, 0, 0, 0.3),
    0 2px 15px rgba(142, 59, 47, 0.2);
}
/* 3e) Warm brown (your "Walnut" idea) - with burnt edges and wood grain */
.bg-walnut-grad {
  /* Dark brown wood grain background - warmer brown tones */
  background-color: #3A2D1F; /* Fallback solid color - dark brown */
  /* Safari fallback - simple gradient */
  background: linear-gradient(180deg, #4A3628 0%, #2A1F15 100%);
  /* Modern browsers with full texture */
  background:
    url("data:image/svg+xml,%3csvg%20width='600'%20height='400'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3c!--%20Wood%20grain%20pattern%20--%3e%3cpattern%20id='woodGrain'%20patternUnits='userSpaceOnUse'%20width='600'%20height='400'%3e%3c!--%20Base%20wood%20color%20--%3e%3crect%20width='600'%20height='400'%20fill='%234A3426'/%3e%3c!--%20Wood%20grain%20lines%20-%20varying%20opacity%20and%20thickness%20--%3e%3cpath%20d='M0,20%20Q150,25%20300,15%20T600,20'%20stroke='%233A2618'%20stroke-width='1.5'%20opacity='0.3'%20fill='none'/%3e%3cpath%20d='M0,45%20Q200,50%20400,40%20T600,45'%20stroke='%232F1F14'%20stroke-width='2'%20opacity='0.25'%20fill='none'/%3e%3cpath%20d='M0,80%20Q180,85%20360,75%20T600,80'%20stroke='%233A2618'%20stroke-width='1'%20opacity='0.4'%20fill='none'/%3e%3cpath%20d='M0,110%20Q220,115%20440,105%20T600,110'%20stroke='%232F1F14'%20stroke-width='3'%20opacity='0.2'%20fill='none'/%3e%3cpath%20d='M0,150%20Q160,155%20320,145%20T600,150'%20stroke='%233A2618'%20stroke-width='1.5'%20opacity='0.35'%20fill='none'/%3e%3cpath%20d='M0,185%20Q240,190%20480,180%20T600,185'%20stroke='%232F1F14'%20stroke-width='2.5'%20opacity='0.22'%20fill='none'/%3e%3cpath%20d='M0,220%20Q170,225%20340,215%20T600,220'%20stroke='%233A2618'%20stroke-width='1'%20opacity='0.45'%20fill='none'/%3e%3cpath%20d='M0,255%20Q210,260%20420,250%20T600,255'%20stroke='%232F1F14'%20stroke-width='2'%20opacity='0.28'%20fill='none'/%3e%3cpath%20d='M0,290%20Q190,295%20380,285%20T600,290'%20stroke='%233A2618'%20stroke-width='1.5'%20opacity='0.32'%20fill='none'/%3e%3cpath%20d='M0,325%20Q230,330%20460,320%20T600,325'%20stroke='%232F1F14'%20stroke-width='3'%20opacity='0.18'%20fill='none'/%3e%3cpath%20d='M0,360%20Q150,365%20300,355%20T600,360'%20stroke='%233A2618'%20stroke-width='1'%20opacity='0.38'%20fill='none'/%3e%3cpath%20d='M0,390%20Q200,395%20400,385%20T600,390'%20stroke='%232F1F14'%20stroke-width='2'%20opacity='0.25'%20fill='none'/%3e%3c!--%20Wood%20knots%20--%3e%3cellipse%20cx='120'%20cy='180'%20rx='25'%20ry='15'%20fill='%232F1F14'%20opacity='0.2'%20transform='rotate(15%20120%20180)'/%3e%3cellipse%20cx='120'%20cy='180'%20rx='15'%20ry='8'%20fill='%23261811'%20opacity='0.3'%20transform='rotate(15%20120%20180)'/%3e%3cellipse%20cx='450'%20cy='280'%20rx='30'%20ry='18'%20fill='%232F1F14'%20opacity='0.15'%20transform='rotate(-20%20450%20280)'/%3e%3cellipse%20cx='450'%20cy='280'%20rx='18'%20ry='10'%20fill='%23261811'%20opacity='0.25'%20transform='rotate(-20%20450%20280)'/%3e%3cellipse%20cx='280'%20cy='90'%20rx='20'%20ry='12'%20fill='%232F1F14'%20opacity='0.18'%20transform='rotate(45%20280%2090)'/%3e%3cellipse%20cx='280'%20cy='90'%20rx='12'%20ry='7'%20fill='%23261811'%20opacity='0.28'%20transform='rotate(45%20280%2090)'/%3e%3c!--%20Subtle%20vertical%20grain%20--%3e%3cpath%20d='M50,0%20Q52,100%2048,200%20T50,400'%20stroke='%233A2618'%20stroke-width='0.5'%20opacity='0.2'%20fill='none'/%3e%3cpath%20d='M150,0%20Q148,120%20152,240%20T150,400'%20stroke='%233A2618'%20stroke-width='0.5'%20opacity='0.15'%20fill='none'/%3e%3cpath%20d='M250,0%20Q252,80%20248,160%20T250,400'%20stroke='%233A2618'%20stroke-width='0.5'%20opacity='0.18'%20fill='none'/%3e%3cpath%20d='M350,0%20Q348,110%20352,220%20T350,400'%20stroke='%233A2618'%20stroke-width='0.5'%20opacity='0.12'%20fill='none'/%3e%3cpath%20d='M450,0%20Q452,90%20448,180%20T450,400'%20stroke='%233A2618'%20stroke-width='0.5'%20opacity='0.16'%20fill='none'/%3e%3cpath%20d='M550,0%20Q548,130%20552,260%20T550,400'%20stroke='%233A2618'%20stroke-width='0.5'%20opacity='0.14'%20fill='none'/%3e%3c/pattern%3e%3c!--%20Overlay%20gradient%20for%20depth%20--%3e%3clinearGradient%20id='woodOverlay'%20x1='0%25'%20y1='0%25'%20x2='100%25'%20y2='100%25'%3e%3cstop%20offset='0%25'%20style='stop-color:%23000000;stop-opacity:0.1'/%3e%3cstop%20offset='50%25'%20style='stop-color:%23000000;stop-opacity:0'/%3e%3cstop%20offset='100%25'%20style='stop-color:%23000000;stop-opacity:0.2'/%3e%3c/linearGradient%3e%3c/defs%3e%3c!--%20Apply%20the%20pattern%20--%3e%3crect%20width='600'%20height='400'%20fill='url(%23woodGrain)'/%3e%3crect%20width='600'%20height='400'%20fill='url(%23woodOverlay)'/%3e%3c/svg%3e"),
    radial-gradient(160% 120% at 15% 0%,
      rgba(90, 75, 55, 0.25) 0%,
      transparent 48%),
    linear-gradient(var(--grad-angle),
      #4A3628 0%,
      #2A1F15 100%);
  background-size: 120% 120%, var(--grad-scale) var(--grad-scale), var(--grad-scale) var(--grad-scale);
  background-position: -10% -5%, center, center;
  background-blend-mode: overlay, normal, normal;
  color: var(--bone);
  /* Add raised effect with shadow - no transform */
  position: relative;
  z-index: 10;
  box-shadow: 
    0 -10px 30px rgba(0, 0, 0, 0.25),
    0 10px 30px rgba(0, 0, 0, 0.25),
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 0 60px rgba(0, 0, 0, 0.25); /* Lighter inner shadow for warmth */
  transition: box-shadow 0.3s ease;
}
/* Enhanced hover effect for walnut section */
.bg-walnut-grad:hover {
  box-shadow: 
    0 -15px 40px rgba(0, 0, 0, 0.3),
    0 15px 40px rgba(0, 0, 0, 0.3),
    0 30px 80px rgba(0, 0, 0, 0.35),
    inset 0 0 100px rgba(0, 0, 0, 0.5);
}
/* 4) Type/link/accessibility adjustments on dark gradients */
.bg-barn-grad a,
.bg-pine-grad a,
.bg-charcoal-grad a,
.bg-walnut-grad a,
.bg-pine-grad-deep a,
.bg-barn-grad-deep a,
.bg-lake-grad-deep a { color: var(--bone); text-decoration-thickness: 2px; }
.bg-barn-grad .btn-primary-inverse,
.bg-pine-grad .btn-primary-inverse,
.bg-charcoal-grad .btn-primary-inverse,
.bg-walnut-grad .btn-primary-inverse,
.bg-pine-grad-deep .btn-primary-inverse,
.bg-barn-grad-deep .btn-primary-inverse,
.bg-lake-grad-deep .btn-primary-inverse { --btn-bg: var(--bone); --btn-fg: var(--barn-700); }
/* Ensure text readability on dark gradients */
.bg-walnut-grad h2,
.bg-walnut-grad h3,
.bg-walnut-grad p,
.bg-walnut-grad .section-header p,
.bg-pine-grad-deep h2,
.bg-pine-grad-deep h3,
.bg-pine-grad-deep p,
.bg-pine-grad-deep .section-header p,
.bg-barn-grad-deep h2,
.bg-barn-grad-deep h3,
.bg-barn-grad-deep p,
.bg-barn-grad-deep .section-header p,
.bg-lake-grad-deep h2,
.bg-lake-grad-deep h3,
.bg-lake-grad-deep p,
.bg-lake-grad-deep .section-header p {
  color: var(--bone) !important;
}
/* 5) Section title underline contrasts:
   - darker anchor on light gradients, light anchor on dark ones */
.section-title::after{ background: var(--pine-800); }
.bg-barn-grad .section-title::after,
.bg-pine-grad .section-title::after,
.bg-charcoal-grad .section-title::after,
.bg-walnut-grad .section-title::after,
.bg-pine-grad-deep .section-title::after,
.bg-barn-grad-deep .section-title::after,
.bg-lake-grad-deep .section-title::after{ background: var(--bone); opacity:.9; }
/* 6) Seam fade - DISABLED for seamless transitions */
/* Remove the seam effect to allow gradients to flow into each other */
.section.seam::after {
  display: none !important;
}
.bg-linen-grad    { --section-bg: var(--linen); }
.bg-bone-grad     { --section-bg: var(--bone); }
.bg-sage-grad     { --section-bg: var(--sage-200); }
.bg-sky-grad      { --section-bg: var(--sky-100); }
.bg-barn-grad     { --section-bg: var(--barn-700); }
.bg-pine-grad     { --section-bg: var(--pine-800); }
.bg-charcoal-grad { --section-bg: var(--charcoal); }
.bg-walnut-grad   { --section-bg: #5A4636; }
.bg-pine-grad-deep { --section-bg: #1A2B22; }
.bg-barn-grad-deep { --section-bg: #4A1F1A; }
.bg-lake-grad-deep { --section-bg: #243540; }
/* 7) Testimonial cards for dark gradient backgrounds */
.testimonial-card {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 1.75rem;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.5);
}
/* Ensure maximum text contrast on testimonial cards */
.testimonial-card h3 {
  color: #1a1a1a !important;
  font-weight: 700 !important;
}
.testimonial-card p {
  color: #2d2d2d !important;
  font-weight: 500 !important;
}
/* Make attribution text more visible */
.testimonial-card div[style*="italic"] {
  color: #4a4a4a !important;
  opacity: 1 !important;
  font-weight: 500 !important;
}
/* Circular amenity cards */
.amenity-card {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  aspect-ratio: 1;
  padding: 2rem;
  height: auto;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.amenity-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.6);
}
.amenity-card h3 {
  color: #1a1a1a !important;
  font-weight: 700 !important;
  font-size: 1.3rem !important;
  margin-bottom: 1rem !important;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}
.amenity-card ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: left !important;
  width: 100%;
}
.amenity-card li {
  padding: 0.5rem 0 !important;
  color: #2d2d2d !important;
  font-weight: 500 !important;
  font-size: 0.9rem !important;
  position: relative !important;
  padding-left: 1.8rem !important;
  line-height: 1.4 !important;
}
.amenity-card .checkmark {
  position: absolute !important;
  left: 0 !important;
  color: var(--copper-600) !important;
  font-weight: bold !important;
  font-size: 1.2rem !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
}
/* Circular images for property details and farmhouse life sections */
#property-details .split-image,
#farmhouse-life .split-image {
  border-radius: 50%;
  aspect-ratio: 1;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  border: 3px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}
#property-details .split-image:hover,
#farmhouse-life .split-image:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.9);
}
#property-details .split-image::after,
#farmhouse-life .split-image::after {
  display: none; /* Remove the decorative border overlay */
}
#property-details .split-image img,
#farmhouse-life .split-image img {
  border-radius: 0; /* Image doesn't need border radius since container handles it */
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border: none;
  box-shadow: none;
  transition: transform 0.3s ease;
}
#property-details .split-image:hover img,
#farmhouse-life .split-image:hover img {
  transform: scale(1.05); /* Keep the hover scale effect */
}
/* 8) Optional: parallax-ish nudge for hero only (safe + tiny) */
.hero-grad {
  background-attachment: fixed;          /* supported on desktop, ignored on iOS */
  background-size: cover;
}
@media (prefers-reduced-motion: reduce){
  .hero-grad { background-attachment: scroll; }
}
/* Import components */
/* Navigation Styles - Farmhouse */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: rgba(29, 2, 2, 0.66);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3.8px);
  -webkit-backdrop-filter: blur(3.8px);
  border-bottom: 1px solid rgba(29, 2, 2, 0.29);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}
.nav-logo a {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bone);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
  white-space: nowrap;
  margin-right: 2rem;
  letter-spacing: -0.02em;
}
.site-header.scrolled .nav-logo a {
  color: var(--bone);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}
.nav-logo a:hover {
  color: var(--wheat-300);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9),
              0 0 30px rgba(232, 200, 143, 0.4);
  transform: scale(1.05);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-link {
  position: relative;
  font-weight: 600;
  color: var(--bone);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  overflow: visible;
  display: inline-block;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-decoration: none !important;
}
.site-header.scrolled .nav-link {
  color: var(--bone);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 2px;
  background-color: var(--barn-red);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.nav-link:hover {
  color: var(--wheat-300);
  text-decoration: none !important;
  transform: translateY(-2px);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8),
              0 0 24px rgba(232, 200, 143, 0.4);
  transition: all 0.3s ease;
}
.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
  background: var(--wheat-300);
  opacity: 0.8;
}
/* Active section indicator */
.nav-link.active {
  color: var(--wheat-300);
  position: relative;
  background: rgba(232, 200, 143, 0.15);
  border-radius: 20px;
  transform: translateY(-1px);
}
.site-header.scrolled .nav-link.active {
  color: var(--wheat-300);
  background: rgba(232, 200, 143, 0.2);
  box-shadow: 0 2px 8px rgba(232, 200, 143, 0.3);
}
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
  background: linear-gradient(90deg, var(--wheat-300), var(--copper-600));
  height: 3px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(232, 200, 143, 0.4);
}
.nav-cta {
  background-color: var(--barn-red);
  color: var(--cream) !important;
  border: 2px solid var(--barn-red);
  padding: 0.6rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(139, 58, 58, 0.4);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.nav-cta:hover {
  background-color: var(--barn-red-dark);
  transform: translateY(-2px) scale(1.02);
  color: var(--cream) !important;
  border-color: var(--barn-red-dark);
  box-shadow: 0 4px 12px rgba(139, 58, 58, 0.25);
}
.nav-cta::after {
  display: none;
}
/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--bone);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.site-header.scrolled .mobile-menu-toggle span {
  background-color: var(--bone);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
/* Mobile Styles */
@media (max-width: 768px) {
  .nav-container {
    padding: 1rem;
  }
  
  .nav-logo a {
    font-size: 1.1rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background-color: rgba(250, 246, 240, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 10px 25px rgba(74, 60, 40, 0.15);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border-bottom: 3px solid var(--wheat);
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-link {
    width: 100%;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--wheat-light);
    color: var(--charcoal);
    font-family: inherit;
    text-transform: none;
    font-size: 1rem;
  }
  
  .nav-link.active {
    background-color: rgba(135, 169, 107, 0.1);
    font-weight: 700;
    color: var(--barn-red);
  }
  
  .nav-link::after {
    display: none;
  }
  
  .nav-cta {
    margin: 1rem 2rem;
    text-align: center;
    background-color: var(--barn-red);
    color: var(--cream) !important;
    border: 2px solid var(--barn-red);
  }
  
  .nav-cta:hover {
    background-color: var(--barn-red-dark);
    border-color: var(--barn-red-dark);
  }
}
/* ==========================================================================
   Hero Section - Northwoods Farmhouse
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  background-attachment: fixed !important;
  background-position: center !important;
  background-size: cover !important;
}
/* Subtle gradient overlay - light to dark, darker on right */
.scrim-hero::after {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.1) 30%,
    rgba(0, 0, 0, 0.15) 60%,
    rgba(0, 0, 0, 0.2) 100%
  );
}
/* Hero Content Container - Enhanced glass strip */
.hero-content {
  text-align: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 1.5rem 3rem;
  animation: fadeInUp 1.2s ease-out;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border-radius: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 
    0 -20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
.hero-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 10%,
    rgba(255, 255, 255, 0.8) 50%,
    transparent 90%
  );
}
/* Removed left edge highlight for strip design */
/* Hero Title */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin: 0 0 1.5rem 0;
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.3),
    0 4px 20px rgba(0, 0, 0, 0.2);
}
/* Hero Subtitle */
.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--bone);
  margin: 0 auto 1rem;
  max-width: 600px;
  opacity: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}
/* Hero CTA Button */
.hero .btn-primary {
  font-size: 1rem;
  padding: 1rem 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.2),
    0 8px 24px rgba(139, 58, 58, 0.3);
  transition: all 0.3s ease;
}
.hero .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 6px 12px rgba(0, 0, 0, 0.3),
    0 12px 32px rgba(139, 58, 58, 0.4);
}
/* Decorative Divider */
.hero-divider {
  width: 80px;
  height: 3px;
  background: var(--wheat-300);
  margin: 0 auto 2rem;
  opacity: 0.8;
  border-radius: 2px;
}
/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.scroll-indicator:hover {
  opacity: 1;
}
.scroll-indicator svg {
  width: 30px;
  height: 30px;
  stroke: var(--bone);
  stroke-width: 2;
  fill: none;
}
/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
/* Mobile Responsive */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    background-attachment: scroll !important;
  }
  
  .hero-content {
    padding: 2rem 1.5rem;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
  
  .hero .btn-primary {
    font-size: 0.9rem;
    padding: 0.875rem 2rem;
  }
  
  .scroll-indicator {
    bottom: 1rem;
  }
}
/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.375rem;
  }
}
/* Wave Separator */
.wave-separator {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
  z-index: 1;
}
.wave-separator svg {
  position: relative;
  display: block;
  width: 100%;
  height: 200px;
  transform: scale(1.1);
}
/* Animate waves */
@keyframes waveFlow {
  0% {
    transform: translateX(0) scale(1.1);
  }
  100% {
    transform: translateX(-100px) scale(1.1);
  }
}
.wave-separator svg {
  /* animation removed */
}
/* Inverted wave separator */
.wave-separator-inverted {
  margin-top: 0;
  margin-bottom: -2px;
  transform: rotate(180deg);
}
.wave-separator-inverted svg {
  /* animation removed */
}
@keyframes waveFlowReverse {
  0% {
    transform: translateX(0) scale(1.1);
  }
  100% {
    transform: translateX(100px) scale(1.1);
  }
}
/* Property Details Section */
.property-details {
  background-color: var(--pearl);
  padding-top: 0;
}
/* Property Features Showcase - Modern Grid Layout */
.property-features-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
  grid-auto-rows: minmax(300px, auto);
}
.feature-card {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(46, 110, 142, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}
/* Wave decoration on feature cards */
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='60' viewBox='0 0 100 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 Q 25 10, 50 30 T 100 30 L100 60 L0 60 Z' fill='%23f8fafb' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 100px 60px;
  background-repeat: repeat-x;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.feature-card:hover::after {
  opacity: 1;
  /* animation removed */
}
@keyframes cardWave {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 100px;
  }
}
.feature-card.large-card {
  grid-column: span 2;
  grid-row: span 2;
}
.feature-image {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: linear-gradient(135deg, var(--sky) 0%, var(--ocean) 100%);
}
.large-card .feature-image {
  height: 100%;
  flex: 1;
}
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover .feature-image img {
  transform: scale(1.1);
}
.feature-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  /* animation removed */
}
.feature-content h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.feature-content p {
  color: var(--slate);
  line-height: 1.6;
  font-size: 1rem;
}
.large-card .feature-content h3 {
  font-size: 2rem;
}
.large-card .feature-content p {
  font-size: 1.1rem;
}
/* Image Slider - DEPRECATED but keeping for reference */
.property-slider {
  display: none;
}
.slider-container {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.slider-track {
  position: relative;
  height: 100%;
  width: 100%;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
.slide.active {
  opacity: 1;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Navigation Arrows */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.slider-nav:hover {
  background-color: var(--white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.slider-nav.prev {
  left: 20px;
}
.slider-nav.next {
  right: 20px;
}
.slider-nav svg {
  color: var(--navy);
}
/* Dots Navigation */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active,
.dot:hover {
  background-color: var(--white);
  transform: scale(1.2);
}
/* Slider Content */
.slider-content {
  padding: 3rem;
  text-align: center;
  background-color: var(--white);
}
.content-item {
  display: none;
}
.content-item.active {
  display: block;
  animation: fadeInUp 0.6s ease;
}
.content-item .feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
}
.content-item h3 {
  color: var(--navy);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.content-item p {
  color: var(--slate);
  font-size: 1.1rem;
  line-height: 1.6;
}
/* Amenities Showcase Section */
.amenities-showcase {
  background-color: var(--white);
  padding: 4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin: 4rem 0;
}
.amenities-showcase h3 {
  color: var(--navy);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}
/* Amenities Preview */
.amenities-preview {
  margin-bottom: 2rem;
}
.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.preview-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: var(--frost);
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid var(--ice);
}
.preview-item:hover {
  background-color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.preview-icon {
  font-size: 1.5rem;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.preview-item span:last-child {
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 500;
}
/* Show All Amenities Button */
.show-all-amenities-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem auto 0;
  padding: 0.875rem 1.5rem;
  background-color: var(--white);
  border: 2px solid var(--ocean);
  border-radius: var(--radius-md);
  color: var(--ocean);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.show-all-amenities-btn:hover {
  background-color: var(--ocean);
  color: var(--white);
  transform: translateY(-2px);
}
.show-all-amenities-btn:hover .btn-icon {
  stroke: var(--white);
}
.show-all-amenities-btn.active .btn-icon {
  transform: rotate(180deg);
}
.btn-icon {
  transition: var(--transition);
}
.amenities-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.amenity-category {
  background-color: var(--pearl);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
  border: 1px solid var(--ice);
}
.amenity-category:hover {
  background-color: var(--frost);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--ice);
}
.category-icon {
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.category-header h4 {
  color: var(--navy);
  font-size: 1.25rem;
  margin: 0;
  font-weight: 600;
}
.amenity-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.amenity-item {
  color: var(--charcoal);
  font-size: 0.95rem;
  padding: 0.25rem 0;
  position: relative;
  padding-left: 1.5rem;
}
.amenity-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sky);
  font-weight: bold;
}
/* Not included items */
.amenity-category:last-child .amenity-item::before {
  content: "✗";
  color: var(--slate);
}
.amenity-note {
  margin-top: 2rem;
  padding: 1rem;
  background-color: var(--frost);
  border-radius: var(--radius-md);
  text-align: center;
  color: var(--slate);
  font-size: 0.95rem;
}
/* More Features Section - DEPRECATED */
.more-features {
  display: none;
}
.more-features h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.feature-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem;
  background-color: var(--frost);
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: var(--charcoal);
  transition: var(--transition);
}
.feature-item:hover {
  background-color: var(--ice);
  transform: translateX(5px);
}
.feature-item .check {
  color: var(--ocean);
  font-weight: bold;
  margin-right: 0.75rem;
  font-size: 1.2rem;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Property Description Section */
.property-description {
  margin: 4rem 0;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.description-content {
  padding: 4rem;
}
.description-content h3 {
  color: var(--navy);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.description-content .lead {
  font-size: 1.25rem;
  color: var(--slate);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}
.description-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
.description-item h4 {
  color: var(--ocean);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.description-item p {
  color: var(--charcoal);
  line-height: 1.8;
  font-size: 1.05rem;
}
.highlight-box {
  background: linear-gradient(135deg, var(--frost) 0%, var(--ice) 100%);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  border-left: 4px solid var(--ocean);
}
.highlight-box p {
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.property-feature {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.property-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.property-feature h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}
.property-feature p {
  color: var(--slate);
  margin: 0;
}
/* Amenities Section */
.amenities-section {
  background-color: var(--pearl);
  position: relative;
  padding: 5rem 0 5rem 0;
  margin-top: 0 !important;
  z-index: 1;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.amenity-category {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(46, 110, 142, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}
.amenity-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  border-color: rgba(46, 110, 142, 0.25);
}
.amenity-icon {
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--frost);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}
.amenity-category h3 {
  text-align: center;
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.amenity-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.amenity-category li {
  padding: 0.5rem 0;
  color: var(--charcoal);
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.5rem;
}
.amenity-category li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ocean);
  font-weight: bold;
}
/* Location Section */
.location-section {
  background-color: var(--white);
  margin-top: 3rem; /* Add spacing from reviews section */
}
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(46, 110, 142, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 2rem;
}
.location-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.highlight-item {
  background-color: var(--mist);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  overflow: hidden;
  border: 1px solid rgba(46, 110, 142, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
}
.highlight-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: rgba(46, 110, 142, 0.25);
}
.highlight-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  position: relative;
  background-color: transparent;
  transition: var(--transition);
}
.highlight-emoji {
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--frost);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.highlight-header strong {
  color: var(--ocean);
  font-size: 1.1rem;
  margin-right: 0.5rem;
  font-weight: 600;
}
.highlight-header span:not(.highlight-emoji):not(.expand-btn) {
  color: var(--charcoal);
  font-size: 1rem;
  flex: 1;
}
.expand-btn {
  display: none;
}
.highlight-details {
  padding: 0 1.5rem 1.5rem;
  background-color: transparent;
}
.highlight-details p {
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
  font-size: 0.875rem;
}
/* Tablet Styles */
@media (max-width: 1024px) {
  .property-features-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-card.large-card {
    grid-column: span 2;
    grid-row: span 1;
  }
}
/* Tablet Styles for Amenities */
@media (max-width: 1024px) {
  .amenities-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Mobile Styles */
@media (max-width: 768px) {
  .amenities-showcase {
    padding: 2rem 1.5rem;
    margin: 2rem 0;
  }
  
  .amenities-showcase h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .amenities-categories {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .amenity-category {
    padding: 1.25rem;
  }
  
  .category-header h4 {
    font-size: 1.1rem;
  }
  
  .amenity-item {
    font-size: 0.9rem;
  }
  
  .preview-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .preview-item {
    padding: 0.875rem;
  }
  
  .show-all-amenities-btn {
    width: 100%;
    justify-content: center;
  }
  .property-features-showcase {
    grid-template-columns: 1fr;
    gap: 1rem;
    grid-auto-rows: minmax(250px, auto);
  }
  
  .feature-card.large-card {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .feature-image {
    height: 180px;
  }
  
  .large-card .feature-image {
    height: 220px;
  }
  
  .feature-content {
    padding: 1.5rem;
  }
  
  .feature-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
  
  .feature-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .feature-content p {
    font-size: 0.95rem;
  }
  
  .large-card .feature-content h3 {
    font-size: 1.5rem;
  }
  
  .large-card .feature-content p {
    font-size: 1rem;
  }
  
  .property-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .amenities-section {
    padding: 2rem 1.5rem;
  }
  
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  
  .location-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Slider mobile adjustments */
  .slider-container {
    height: 350px;
  }
  
  .slider-nav {
    width: 40px;
    height: 40px;
  }
  
  .slider-nav.prev {
    left: 10px;
  }
  
  .slider-nav.next {
    right: 10px;
  }
  
  .slider-content {
    padding: 2rem 1.5rem;
  }
  
  .content-item h3 {
    font-size: 1.5rem;
  }
  
  .content-item p {
    font-size: 1rem;
  }
  
  .more-features {
    padding: 2rem 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .feature-item {
    padding: 0.75rem;
    font-size: 0.95rem;
  }
  
  /* Wave separator mobile */
  .wave-separator svg {
    height: 120px;
  }
  
  /* Description mobile */
  .description-content {
    padding: 2rem 1.5rem;
  }
  
  .description-content h3 {
    font-size: 2rem;
  }
  
  .description-content .lead {
    font-size: 1.1rem;
  }
  
  .description-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .description-item h4 {
    font-size: 1.25rem;
  }
  
  .description-item p {
    font-size: 1rem;
  }
  
  .highlight-box {
    padding: 2rem 1.5rem;
  }
  
  .highlight-box p {
    font-size: 1rem;
  }
}
/* Property Details Section */
/* DEPRECATED: Following Section Design Bible - no custom section classes
.property-details-section {
  background-color: var(--pearl);
  padding: 5rem 0 8rem 0;
  position: relative;
  margin-bottom: 0 !important;
  z-index: 2;
  overflow: visible;
}
*/
.property-details-section .section-header {
  max-width: 900px;
  margin: 0 auto 3rem;
}
.property-details-section .section-header h2 {
  white-space: nowrap;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
}
.property-details-section .section-header p:first-of-type {
  font-size: 1.25rem;
  color: var(--ocean);
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.property-details-section .section-header p:nth-of-type(2) {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.property-details-section .section-header p:last-of-type {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 0;
}
/* DEPRECATED: These styles moved to highlight-cards.css as generic components
.property-highlights {
  max-width: 1200px;
  margin: 0 auto;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 0;
}

.property-highlight {
  background-color: var(--mist);
  padding: 2.5rem;
  border-radius: 50%;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(46, 110, 142, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.property-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  border-color: rgba(46, 110, 142, 0.25);
}

.highlight-icon {
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--white);
  border-radius: 50%;
  margin: 0 0 1rem 0;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.property-highlight h3 {
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
}

.property-highlight p {
  color: var(--charcoal);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
  max-width: 200px;
}
*/
.property-description {
  background: linear-gradient(135deg, var(--frost) 0%, var(--ice) 100%);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border-left: 4px solid var(--ocean);
  max-width: 800px;
  margin: 0 auto;
}
.property-description p {
  color: var(--navy);
  font-size: 1.125rem;
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}
/* Mobile Styles */
@media (max-width: 768px) {
  .property-details-section .section-header h2 {
    white-space: normal;
    font-size: 1.75rem;
  }
  
  .highlight-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .property-highlight {
    padding: 2rem;
    min-height: 250px;
    aspect-ratio: 1;
  }
  
  .highlight-icon {
    width: 60px;
    height: 60px;
    font-size: 2.5rem;
  }
  
  .property-highlight h3 {
    font-size: 1.25rem;
  }
  
  .property-description {
    padding: 2rem;
  }
  
  .property-description p {
    font-size: 1rem;
  }
}
/* ==========================================================================
   Generic Highlight Cards Component
   Following the Section Design Bible - content handles its own spacing
   ========================================================================== */
/* Content Container
   ========================================================================== */
.highlight-cards-content {
  /* Container already handles max-width and centering */
  margin-top: 2rem;
}
/* Grid Layout
   ========================================================================== */
.highlight-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
/* Card Base Styles - Farmhouse Warm
   ========================================================================== */
.highlight-card {
  background-color: var(--white);
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(74, 60, 40, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  border: 1px solid var(--wheat-light);
  position: relative;
  overflow: hidden;
}
.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--barn-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
/* Card Variants
   ========================================================================== */
.highlight-card--circle {
  background-color: var(--antique-white);
  padding: 2.5rem;
  border-radius: 50%;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid var(--sage-light);
  box-shadow: 0 4px 10px rgba(135, 169, 107, 0.1);
  aspect-ratio: 1;
  width: 300px;
  height: 300px;
  min-height: 300px;
}
.highlight-card--rounded {
  border-radius: 16px;
}
.highlight-card--minimal {
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
/* Hover Effects
   ========================================================================== */
.highlight-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 24px rgba(74, 60, 40, 0.15);
  border-color: var(--sage-light);
}
.highlight-card:hover::before {
  transform: scaleX(1);
}
/* Icon Styles
   ========================================================================== */
.highlight-icon {
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 0 1rem 0;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s ease;
  border: 3px solid var(--wheat);
}
.highlight-card:hover .highlight-icon {
  transform: rotate(-5deg) scale(1.05);
  background: linear-gradient(135deg, var(--barn-red), var(--rust));
  border-color: var(--barn-red);
}
/* Text Styles
   ========================================================================== */
.highlight-card h3 {
  color: var(--deep-brown);
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
  font-weight: 600;
  line-height: 1.3;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.02em;
}
.highlight-card p {
  color: var(--stone-gray);
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
  max-width: 250px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}
/* Background Variations
   ========================================================================== */
.section--white .highlight-card {
  background-color: var(--cream);
}
/* Override background for circle cards */
.section--white .highlight-card--circle {
  background-color: var(--sand-light);
}
.section--mist .highlight-card {
  background-color: var(--white);
}
.section--pearl .highlight-card {
  background-color: var(--antique-white);
}
.section--frost .highlight-card {
  background-color: var(--white);
}
/* Mobile Styles
   ========================================================================== */
@media (max-width: 768px) {
  .highlight-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .highlight-card {
    padding: 2rem;
  }
  
  .highlight-card--circle {
    width: 100%;
    max-width: 280px;
    height: auto;
    min-height: 200px;
    aspect-ratio: 1;
    padding: 1.5rem;
    margin: 0 auto;
  }
  
  .highlight-icon {
    width: 60px;
    height: 60px;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--sage-light), var(--sage));
    border-radius: 50%;
    padding: 0.75rem;
    border: 2px solid var(--wheat);
  }
  
  .highlight-card h3 {
    font-size: 1.25rem;
  }
}
/* ==========================================================================
   Feature Cards - Northwoods Farmhouse Design
   ========================================================================== */
/* Grid Layout */
.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
/* Feature Card Base */
.feature-card {
  padding: 2.5rem;
  text-align: center;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Add subtle texture overlay */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pine-800), var(--sage-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
/* Icon Container */
.feature-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  padding: 1rem;
  background: var(--pine-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
}
.feature-card-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--wheat-300);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.feature-card-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--bone);
  stroke-width: 1.5;
  transition: all 0.4s ease;
}
/* Typography */
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pine-800);
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
  transition: color 0.4s ease;
}
.feature-card p {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  margin: 0;
  max-width: 280px;
}
/* Hover Effects */
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 12px 24px rgba(46, 50, 48, 0.12),
    0 20px 40px rgba(46, 50, 48, 0.08);
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-card:hover .feature-card-icon {
  background: var(--barn-700);
  transform: rotate(-5deg) scale(1.05);
}
.feature-card:hover .feature-card-icon::after {
  opacity: 1;
}
.feature-card:hover .feature-card-icon svg {
  stroke: var(--wheat-300);
  transform: scale(1.1);
}
.feature-card:hover h3 {
  color: var(--barn-700);
}
/* Section-specific overrides following Northwoods rules */
/* On bg-bone sections, sage cards get sage-500 borders */
.bg-bone .card-sage.feature-card {
  background: var(--sage-200);
  border-color: var(--sage-500);
}
.bg-bone .card-sage.feature-card .feature-card-icon {
  background: var(--pine-800);
}
/* Alternative card variant */
.bg-bone .card-parchment.feature-card {
  background: var(--parchment);
  border-color: var(--sage-500);
}
/* Mobile Responsive */
@media (max-width: 768px) {
  .feature-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 2rem;
    min-height: auto;
  }
  
  .feature-card-icon {
    width: 60px;
    height: 60px;
    padding: 0.875rem;
  }
  
  .feature-card-icon svg {
    width: 30px;
    height: 30px;
  }
  
  .feature-card h3 {
    font-size: 1.25rem;
  }
  
  .feature-card p {
    font-size: 0.95rem;
  }
}
/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .feature-cards-grid {
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 2rem;
  }
}
/* Animation delays for staggered entrance */
[data-delay="100"] {
  animation-delay: 100ms;
}
[data-delay="200"] {
  animation-delay: 200ms;
}
/* Gallery Section */
.gallery-section {
  position: relative;
  z-index: 1;
  margin: 0 !important;
}
/* Override overflow only for gallery section, not affecting body */
#gallery.section {
  overflow: visible !important;
}
/* Ensure gallery grid doesn't get clipped */
.gallery-section .gallery-grid {
  overflow: visible;
}
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.75rem 1.5rem;
  background-color: rgba(250, 246, 240, 0.8);
  color: var(--deep-brown);
  border: 2px solid rgba(139, 111, 71, 0.6);
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  font-size: 0.825rem;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}
.filter-btn:hover {
  background-color: rgba(139, 111, 71, 0.2);
  border-color: rgba(139, 111, 71, 0.8);
  color: var(--bone);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(139, 111, 71, 0.3);
}
.filter-btn.active {
  background-color: rgba(74, 60, 40, 0.9);
  color: var(--bone);
  border-color: rgba(74, 60, 40, 1);
  box-shadow: 0 2px 6px rgba(74, 60, 40, 0.4);
  backdrop-filter: blur(6px);
}
/* Gallery Grid - 4 Across Layout with Cork Board */
.gallery-grid {
  margin: 0 auto 3rem;
  position: relative;
  width: 100%;
  max-width: 1280px; /* Special exception - wider for gallery display */
  min-height: 800px;
  /* Rich warm cork board background - farmhouse chic */
  /* Safari fallback - solid color first */
  background-color: #C4956A;
  /* Chrome/Firefox - simple gradient fallback */
  background: linear-gradient(135deg, #D4A974 0%, #C4956A 30%, #B8936A 70%, #D4A974 100%);
  /* Modern browsers with texture */
  background: 
    url("data:image/svg+xml,%3csvg%20width='400'%20height='400'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3c!--%20Cork%20texture%20pattern%20--%3e%3cpattern%20id='corkPattern'%20patternUnits='userSpaceOnUse'%20width='400'%20height='400'%3e%3c!--%20Base%20cork%20color%20--%3e%3crect%20width='400'%20height='400'%20fill='%238B6F47'/%3e%3c!--%20Random%20cork%20texture%20dots%20and%20specs%20--%3e%3ccircle%20cx='50'%20cy='80'%20r='3'%20fill='%236B5637'%20opacity='0.4'/%3e%3ccircle%20cx='120'%20cy='60'%20r='2'%20fill='%234A3C28'%20opacity='0.5'/%3e%3ccircle%20cx='180'%20cy='100'%20r='4'%20fill='%236B5637'%20opacity='0.3'/%3e%3ccircle%20cx='250'%20cy='90'%20r='2.5'%20fill='%234A3C28'%20opacity='0.6'/%3e%3ccircle%20cx='320'%20cy='110'%20r='3'%20fill='%236B5637'%20opacity='0.4'/%3e%3ccircle%20cx='380'%20cy='70'%20r='2'%20fill='%234A3C28'%20opacity='0.5'/%3e%3ccircle%20cx='40'%20cy='180'%20r='3.5'%20fill='%236B5637'%20opacity='0.4'/%3e%3ccircle%20cx='100'%20cy='160'%20r='2'%20fill='%234A3C28'%20opacity='0.6'/%3e%3ccircle%20cx='160'%20cy='200'%20r='3'%20fill='%236B5637'%20opacity='0.3'/%3e%3ccircle%20cx='220'%20cy='170'%20r='2.5'%20fill='%234A3C28'%20opacity='0.5'/%3e%3ccircle%20cx='280'%20cy='190'%20r='4'%20fill='%236B5637'%20opacity='0.4'/%3e%3ccircle%20cx='350'%20cy='180'%20r='2'%20fill='%234A3C28'%20opacity='0.7'/%3e%3ccircle%20cx='60'%20cy='280'%20r='3'%20fill='%236B5637'%20opacity='0.5'/%3e%3ccircle%20cx='130'%20cy='260'%20r='2.5'%20fill='%234A3C28'%20opacity='0.4'/%3e%3ccircle%20cx='190'%20cy='300'%20r='3.5'%20fill='%236B5637'%20opacity='0.3'/%3e%3ccircle%20cx='260'%20cy='270'%20r='2'%20fill='%234A3C28'%20opacity='0.6'/%3e%3ccircle%20cx='330'%20cy='290'%20r='3'%20fill='%236B5637'%20opacity='0.4'/%3e%3ccircle%20cx='390'%20cy='280'%20r='2.5'%20fill='%234A3C28'%20opacity='0.5'/%3e%3ccircle%20cx='70'%20cy='360'%20r='2'%20fill='%234A3C28'%20opacity='0.6'/%3e%3ccircle%20cx='140'%20cy='350'%20r='3'%20fill='%236B5637'%20opacity='0.4'/%3e%3ccircle%20cx='210'%20cy='380'%20r='2.5'%20fill='%234A3C28'%20opacity='0.5'/%3e%3ccircle%20cx='270'%20cy='360'%20r='3.5'%20fill='%236B5637'%20opacity='0.3'/%3e%3ccircle%20cx='340'%20cy='370'%20r='2'%20fill='%234A3C28'%20opacity='0.7'/%3e%3c!--%20Irregular%20shapes%20for%20texture%20--%3e%3cellipse%20cx='90'%20cy='120'%20rx='8'%20ry='4'%20fill='%235A4A3A'%20opacity='0.2'%20transform='rotate(45%2090%20120)'/%3e%3cellipse%20cx='200'%20cy='240'%20rx='10'%20ry='5'%20fill='%235A4A3A'%20opacity='0.15'%20transform='rotate(-30%20200%20240)'/%3e%3cellipse%20cx='300'%20cy='150'%20rx='7'%20ry='3'%20fill='%235A4A3A'%20opacity='0.25'%20transform='rotate(60%20300%20150)'/%3e%3cellipse%20cx='150'%20cy='320'%20rx='9'%20ry='4'%20fill='%235A4A3A'%20opacity='0.2'%20transform='rotate(-45%20150%20320)'/%3e%3c!--%20Small%20random%20dots%20for%20fine%20texture%20--%3e%3ccircle%20cx='25'%20cy='25'%20r='1'%20fill='%234A3C28'%20opacity='0.3'/%3e%3ccircle%20cx='75'%20cy='45'%20r='1'%20fill='%234A3C28'%20opacity='0.4'/%3e%3ccircle%20cx='125'%20cy='35'%20r='1'%20fill='%234A3C28'%20opacity='0.3'/%3e%3ccircle%20cx='175'%20cy='55'%20r='1'%20fill='%234A3C28'%20opacity='0.5'/%3e%3ccircle%20cx='225'%20cy='25'%20r='1'%20fill='%234A3C28'%20opacity='0.4'/%3e%3ccircle%20cx='275'%20cy='45'%20r='1'%20fill='%234A3C28'%20opacity='0.3'/%3e%3ccircle%20cx='325'%20cy='35'%20r='1'%20fill='%234A3C28'%20opacity='0.5'/%3e%3ccircle%20cx='375'%20cy='55'%20r='1'%20fill='%234A3C28'%20opacity='0.4'/%3e%3c!--%20Noise%20for%20granular%20texture%20--%3e%3cfilter%20id='noise'%3e%3cfeTurbulence%20baseFrequency='0.9'%20numOctaves='4'%20seed='5'/%3e%3cfeColorMatrix%20values='0%200%200%200%200,%200%200%200%200%200,%200%200%200%200%200,%200%200%200%200.08%200'/%3e%3c/filter%3e%3crect%20width='400'%20height='400'%20filter='url(%23noise)'%20opacity='0.4'/%3e%3c/pattern%3e%3c!--%20Overlay%20gradient%20for%20depth%20--%3e%3cradialGradient%20id='corkShade'%20cx='50%25'%20cy='50%25'%3e%3cstop%20offset='0%25'%20style='stop-color:%23000000;stop-opacity:0'/%3e%3cstop%20offset='100%25'%20style='stop-color:%23000000;stop-opacity:0.3'/%3e%3c/radialGradient%3e%3c/defs%3e%3c!--%20Apply%20the%20pattern%20--%3e%3crect%20width='400'%20height='400'%20fill='url(%23corkPattern)'/%3e%3crect%20width='400'%20height='400'%20fill='url(%23corkShade)'/%3e%3c/svg%3e"),
    linear-gradient(135deg, #D4A974 0%, #C4956A 30%, #B8936A 70%, #D4A974 100%) !important;
  background-size: 350px 350px, 100% 100% !important;
  /* Explicit background properties for Safari */
  background-repeat: repeat, no-repeat !important;
  background-attachment: scroll, scroll !important;
  padding: 50px 40px !important;
  border-radius: 8px;
  box-shadow: 
    inset 0 3px 12px rgba(139, 58, 58, 0.15),
    inset 0 -3px 12px rgba(90, 70, 54, 0.25),
    0 8px 25px rgba(0, 0, 0, 0.35),
    0 2px 8px rgba(139, 111, 71, 0.2);
  border: 4px solid #8B6F47;
  display: block;
  text-align: center;
}
.gallery-grid:after {
  content: '';
  display: block;
  clear: both;
}
/* Ensure flush bottom alignment */
.gallery-grid.masonry-complete {
  padding-bottom: 30px;
}
/* Gallery sizer for masonry grid */
.gallery-sizer {
  width: 1px;
  height: 0;
}
.gallery-item {
  width: 220px;
  margin: 10px;
  padding: 10px;
  padding-bottom: 40px;
  cursor: pointer;
  opacity: 1;
  position: relative;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  box-shadow: 
    inset 0 0 4px rgba(0, 0, 0, 0.06),
    0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1),
    0 8px 16px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.05);
  /* Support CSS custom properties for rotation set by JavaScript */
  transform: rotate(var(--card-rotation, 0deg)) translateY(var(--card-translateY, 0px)) scale(var(--card-scale, 1));
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  will-change: transform, box-shadow;
}
/* Random rotation handled by JavaScript via --rotation variable */
/* Pushpin positioned to go into the white top border of polaroid */
.gallery-item::before {
  content: '';
  position: absolute;
  top: -17px; /* Position pin to go into the white top border area */
  left: var(--pin-position, 50%);
  transform: translateX(-50%) rotate(var(--pin-rotation, 0deg));
  width: 28px;
  height: 28px;
  background: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3c!--%20Gradient%20for%20metallic%20effect%20--%3e%3cradialGradient%20id='pinGradient'%20cx='50%25'%20cy='30%25'%3e%3cstop%20offset='0%25'%20style='stop-color:%23e74c3c;stop-opacity:1'%20/%3e%3cstop%20offset='50%25'%20style='stop-color:%23c0392b;stop-opacity:1'%20/%3e%3cstop%20offset='100%25'%20style='stop-color:%237f2218;stop-opacity:1'%20/%3e%3c/radialGradient%3e%3c!--%20Shadow%20filter%20--%3e%3cfilter%20id='pinShadow'%20x='-50%25'%20y='-50%25'%20width='200%25'%20height='200%25'%3e%3cfeGaussianBlur%20in='SourceAlpha'%20stdDeviation='2'/%3e%3cfeOffset%20dx='1'%20dy='2'%20result='offsetblur'/%3e%3cfeFlood%20flood-color='%23000000'%20flood-opacity='0.4'/%3e%3cfeComposite%20in2='offsetblur'%20operator='in'/%3e%3cfeMerge%3e%3cfeMergeNode/%3e%3cfeMergeNode%20in='SourceGraphic'/%3e%3c/feMerge%3e%3c/filter%3e%3c!--%20Highlight%20gradient%20--%3e%3cradialGradient%20id='highlight'%20cx='40%25'%20cy='30%25'%3e%3cstop%20offset='0%25'%20style='stop-color:%23ffffff;stop-opacity:0.6'%20/%3e%3cstop%20offset='100%25'%20style='stop-color:%23ffffff;stop-opacity:0'%20/%3e%3c/radialGradient%3e%3c/defs%3e%3c!--%20Pin%20head%20--%3e%3ccircle%20cx='20'%20cy='15'%20r='12'%20fill='url(%23pinGradient)'%20filter='url(%23pinShadow)'/%3e%3c!--%20Highlight%20on%20pin%20head%20--%3e%3cellipse%20cx='17'%20cy='12'%20rx='5'%20ry='4'%20fill='url(%23highlight)'%20opacity='0.8'/%3e%3c!--%20Pin%20needle%20--%3e%3cline%20x1='20'%20y1='25'%20x2='20'%20y2='35'%20stroke='%234a4a4a'%20stroke-width='1.5'%20stroke-linecap='round'/%3e%3ccircle%20cx='20'%20cy='35'%20r='1'%20fill='%232c2c2c'/%3e%3c/svg%3e") no-repeat center;
  background-size: contain;
  z-index: 10;
  pointer-events: none;
}
/* Polaroid image styling with inner shadow for depth */
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 0;
  box-shadow: 
    inset 0 1px 3px rgba(0, 0, 0, 0.2),
    inset 0 -1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: filter 0.3s ease;
}
/* Gallery item visibility now handled by animations.css */
/* Hover effects handled by JavaScript for smoother animations */
.gallery-item:hover {
  z-index: 20;
  transform: rotate(0deg) translateY(-10px) scale(1.05);
  box-shadow: 
    inset 0 0 4px rgba(0, 0, 0, 0.06),
    0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1),
    0 8px 16px rgba(0, 0, 0, 0.15),
    0 16px 32px rgba(0, 0, 0, 0.1),
    0 25px 50px rgba(0, 0, 0, 0.25);
}
.gallery-item .gallery-title,
h3.gallery-title {
  position: absolute;
  bottom: 10px;
  left: 8px;
  right: 8px;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  margin: 0 !important;
  font-family: 'Kalam', cursive !important;
  letter-spacing: 0.5px;
  color: #000000 !important;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 1;
  transition: opacity 0.3s ease;
  transform: rotate(-0.8deg) skew(-2deg);
  text-shadow: none !important;
  text-transform: none;
  line-height: 1 !important;
  padding: 0;
  font-style: italic;
}
.gallery-item:hover .gallery-title {
  opacity: 1;
}
/* Random handwriting variations handled by JavaScript */
/* Load More Button */
.load-more-btn {
  display: block;
  margin: 2rem auto 0;
  padding: 1rem 2.5rem;
  background-color: var(--barn-red);
  color: var(--cream);
  border: 2px solid var(--barn-red);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  font-family: 'Lato', sans-serif;
}
.load-more-btn:hover {
  background-color: var(--barn-red-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 16px rgba(139, 58, 58, 0.25);
  border-color: var(--barn-red-dark);
}
.load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
/* Gallery Item Images - removed duplicate styles as they're in .gallery-item-inner img */
/* Desktop medium */
@media (max-width: 1200px) {
  .gallery-item {
    width: 180px;
  }
}
/* Tablet Styles */
@media (max-width: 1024px) {
  .gallery-grid {
    padding: 20px;
  }
  
  .gallery-item {
    width: 160px;
    margin: 10px;
  }
}
/* Mobile Styles */
@media (max-width: 768px) {
  
  .gallery-filters {
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  .gallery-filters::-webkit-scrollbar {
    display: none;
  }
  
  .filter-btn {
    padding: 0.5rem 0.875rem;
    font-size: 0.75rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  /* Override all desktop gallery-grid styles */
  .gallery-section .gallery-grid,
  .gallery-grid {
    /* Reset all inherited properties */
    all: unset;
    /* Now add mobile-specific styles */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 1rem !important;
    margin: 0 auto 2rem !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    min-height: unset !important;
    position: relative !important;
  }
  
  .gallery-grid:after {
    display: none !important;
  }
  
  /* Override all desktop gallery-item styles */
  .gallery-item {
    /* Reset inherited properties */
    all: unset;
    /* Mobile-specific styles */
    display: block !important;
    width: calc(100% - 2rem) !important;
    max-width: 400px !important;
    margin: 0 auto !important;
    padding: 12px !important;
    padding-bottom: 45px !important;
    background: white !important;
    border: 1px solid #f0f0f0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    position: relative !important;
    opacity: 1 !important;
    cursor: pointer !important;
  }
  
  .gallery-item img {
    width: 100% !important;
    height: 260px !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 !important;
    box-shadow: none !important;
  }
  
  .gallery-item::before {
    display: none !important;
  }
  
  .gallery-item.visible:not(.gallery-fly-initial):not(.gallery-animate-in) {
    animation: none !important;
  }
  
  /* Gallery title on mobile */
  .gallery-item .gallery-title,
  h3.gallery-title {
    opacity: 1 !important;
    font-size: 1.35rem !important;
    bottom: 10px !important;
    font-weight: 600 !important;
    transform: none !important;
    position: absolute !important;
    left: 8px !important;
    right: 8px !important;
  }
  
  .load-more-btn {
    margin: 2rem auto 1rem;
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
  }
}
/* Small mobile (iPhone SE, etc) */
@media (max-width: 375px) {
  .gallery-item {
    width: calc(100% - 1.5rem) !important;
    max-width: 350px !important;
  }
  
  .gallery-item img {
    height: 220px !important;
  }
}
/* ==========================================================================
   Split Sections - Alternating Image/Text Layout
   ========================================================================== */
.split-section {
  margin: 4rem 0;
  position: relative;
}
.split-section:first-of-type {
  margin-top: 2rem;
}
.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
/* Reverse layout for alternating sections */
.split-section.reverse .split-image {
  order: 2;
}
.split-section.reverse .split-text {
  order: 1;
}
/* Image Styling */
.split-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(46, 50, 48, 0.12);
}
.split-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.split-image:hover img {
  transform: scale(1.05);
}
/* Add decorative border */
.split-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--sage-500);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.split-image:hover::after {
  opacity: 0.3;
}
/* Text Styling */
.split-text {
  padding: 2rem;
}
.split-text h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--pine-800);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}
.split-text h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--sage-500);
  border-radius: 2px;
}
.split-text p {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.split-text p:last-child {
  margin-bottom: 0;
}
/* Mobile Responsive */
@media (max-width: 768px) {
  .split-section {
    margin: 3rem 0;
  }
  
  .split-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  /* Reset reverse layout on mobile - always show image first */
  .split-section.reverse .split-image {
    order: -1;
  }
  
  .split-section.reverse .split-text {
    order: 1;
  }
  
  .split-image {
    order: -1; /* Always show image first on mobile */
  }
  
  .split-text {
    padding: 1.5rem 0;
  }
  
  .split-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .split-text p {
    font-size: 1rem;
  }
}
/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .split-content {
    gap: 3rem;
  }
  
  .split-text {
    padding: 1.5rem;
  }
  
  .split-text h3 {
    font-size: 1.75rem;
  }
}
/* Animation on scroll */
[data-animate="fade-up"] .split-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-animate="fade-up"].aos-animate .split-section,
.split-section.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger animation for multiple sections */
.split-section[data-delay="100"] {
  transition-delay: 100ms;
}
.split-section[data-delay="200"] {
  transition-delay: 200ms;
}
/* ==========================================================================
   Booking Hero Section - Enhanced Design
   ========================================================================== */
.booking-hero-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
/* Add decorative background pattern */
.booking-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(135, 169, 107, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(245, 222, 179, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(135, 169, 107, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.booking-hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
/* Badge */
.booking-badge {
  display: inline-block;
  background: var(--sage-500);
  color: var(--bone);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease;
}
/* Title */
.booking-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--bone);
  margin: 0 0 1rem 0;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease;
}
/* Subtitle */
.booking-subtitle {
  font-family: var(--font-sans);
  font-size: 1.375rem;
  color: var(--wheat-300);
  margin: 0 0 3rem 0;
  font-weight: 400;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease 0.1s both;
}
/* Features */
.booking-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 3rem 0 4rem;
  flex-wrap: wrap;
}
.booking-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--wheat-300);
  font-size: 1rem;
  font-weight: 500;
  animation: fadeIn 0.8s ease 0.2s both;
}
.booking-feature svg {
  width: 24px;
  height: 24px;
  stroke: var(--sage-500);
  flex-shrink: 0;
}
/* Platform Cards */
.booking-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.booking-platform-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--bone);
  padding: 2rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.8s ease 0.3s both;
}
.booking-platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sage-500), var(--pine-800));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.booking-platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.booking-platform-card:hover::before {
  transform: scaleX(1);
}
.platform-icon {
  width: 60px;
  height: 60px;
  background: var(--sage-200);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.booking-platform-card:hover .platform-icon {
  background: var(--sage-500);
  transform: rotate(-5deg);
}
.platform-icon svg {
  color: var(--pine-800);
  transition: color 0.3s ease;
}
.booking-platform-card:hover .platform-icon svg {
  color: var(--bone);
}
.platform-info {
  flex: 1;
}
.platform-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pine-800);
  margin: 0 0 0.25rem 0;
}
.platform-info p {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--charcoal);
  margin: 0;
  opacity: 0.8;
}
.platform-arrow {
  font-size: 1.5rem;
  color: var(--sage-500);
  font-weight: 700;
  transition: all 0.3s ease;
}
.booking-platform-card:hover .platform-arrow {
  transform: translateX(5px);
  color: var(--pine-800);
}
/* Contact Section */
.booking-contact {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 222, 179, 0.2);
  animation: fadeIn 0.8s ease 0.4s both;
}
.contact-label {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  color: var(--wheat-300);
  margin: 0 0 1.5rem 0;
}
.contact-options {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  background: transparent;
  border: 2px solid var(--wheat-300);
  border-radius: 8px;
  color: var(--bone);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact-btn:hover {
  background: var(--wheat-300);
  color: var(--barn-700);
  transform: translateY(-2px);
}
.contact-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  flex-shrink: 0;
}
/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Mobile Responsive */
@media (max-width: 768px) {
  .booking-hero-section {
    padding: 4rem 0;
  }
  
  .booking-title {
    font-size: 2rem;
  }
  
  .booking-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
  
  .booking-features {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin: 2rem 0 3rem;
  }
  
  .booking-platforms {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .booking-platform-card {
    padding: 1.5rem;
  }
  
  .platform-icon {
    width: 50px;
    height: 50px;
  }
  
  .platform-info h3 {
    font-size: 1.125rem;
  }
  
  .contact-options {
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-btn {
    width: 100%;
    justify-content: center;
  }
}
/* Reviews Section */
.reviews-section {
  background-color: var(--mist);
  position: relative;
  padding: 5rem 0;
  margin-top: 0 !important;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.review-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 1px solid rgba(46, 110, 142, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.review-stars {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #FFD700;
}
.review-card h3 {
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}
.review-card p {
  color: var(--charcoal);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.review-author {
  color: var(--slate);
  font-size: 0.875rem;
  font-weight: 500;
}
/* Virtual Tour Section */
.virtual-tour-section {
  background-color: var(--frost);
  padding-top: 4rem; /* Extra padding for divider */
}
.tour-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(46, 110, 142, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.tour-wrapper iframe {
  width: 100%;
  height: 600px;
  border: none;
}
/* Video Section */
.video-section {
  background-color: var(--pearl);
}
.video-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(46, 110, 142, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  background-color: var(--charcoal);
}
.video-wrapper iframe {
  width: 100%;
  height: 600px;
  border: none;
}
/* Area Guide Section */
.area-guide-section {
  background-color: var(--mist);
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.guide-item {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 1px solid rgba(46, 110, 142, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.guide-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
  text-align: center;
}
.guide-item h3 {
  color: var(--navy);
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.5rem;
}
.guide-item p {
  color: var(--slate);
  margin-bottom: 1rem;
}
.guide-item ul {
  list-style: none;
  padding: 0;
}
.guide-item li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--charcoal);
}
.guide-item li:before {
  content: "•";
  color: var(--sky);
  font-weight: bold;
  position: absolute;
  left: 0;
}
/* Booking Section */
.booking-section {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--navy) 100%);
  color: var(--white);
}
.booking-section .section-header h2,
.booking-section .section-header p {
  color: var(--white);
}
.booking-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.booking-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: block;
  border: 1px solid rgba(46, 110, 142, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.booking-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.booking-logo {
  width: 100px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-logo img {
  max-width: 100%;
  max-height: 100%;
}
.booking-card h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.booking-card p {
  color: var(--slate);
  margin: 0;
}
.booking-arrow {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--sky);
  transition: var(--transition);
}
.booking-card:hover .booking-arrow {
  transform: translateY(-50%) translateX(5px);
}
/* Contact Info */
.contact-info {
  text-align: center;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.contact-info p {
  margin-bottom: 1rem;
  color: var(--ice);
}
.contact-link {
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}
.contact-link:hover {
  color: var(--powder);
  text-decoration: underline;
}
.divider {
  margin: 0 1rem;
  color: var(--powder);
}
/* Mobile Styles */
@media (max-width: 768px) {
  .tour-wrapper iframe,
  .video-wrapper iframe {
    height: 400px;
  }
  
  .guide-grid {
    grid-template-columns: 1fr;
  }
  
  .guide-item {
    padding: 2rem;
  }
  
  .booking-options {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    padding: 1.5rem;
  }
  
  .divider {
    display: block;
    margin: 0.5rem 0;
  }
}
/* Footer Styles - Minimal Black */
.site-footer {
  background-color: #000000;
  color: rgba(255, 255, 255, 0.6);
  padding: 1.5rem 0 1rem;
}
.footer-content {
  display: none;
}
.footer-section h4 {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.footer-section p {
  margin-bottom: 0.5rem;
  line-height: 1.4;
  font-size: 0.8rem;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section li {
  margin-bottom: 0.75rem;
}
.footer-section a {
  color: var(--ice);
  transition: var(--transition);
}
.footer-section a:hover {
  color: var(--powder);
}
/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}
.social-links a:hover {
  background-color: var(--sky);
  transform: translateY(-3px);
}
.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
/* Footer Bottom - Minimal */
.footer-bottom {
  text-align: center;
  padding-top: 0;
  border-top: none;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom p {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
/* Mobile Styles */
@media (max-width: 768px) {
  .site-footer {
    padding: 1rem 0 0.75rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-bottom {
    padding-top: 1.5rem;
  }
}
/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  /* Dark brown wood grain background - warmer brown tones */
  background-color: #3A2D1F; /* Fallback solid color - dark brown */
  /* Safari fallback - simple gradient */
  background: linear-gradient(180deg, #4A3628 0%, #2A1F15 100%);
  /* Modern browsers with full texture */
  background:
    url("data:image/svg+xml,%3csvg%20width='600'%20height='400'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3c!--%20Wood%20grain%20pattern%20--%3e%3cpattern%20id='woodGrain'%20patternUnits='userSpaceOnUse'%20width='600'%20height='400'%3e%3c!--%20Base%20wood%20color%20--%3e%3crect%20width='600'%20height='400'%20fill='%234A3426'/%3e%3c!--%20Wood%20grain%20lines%20-%20varying%20opacity%20and%20thickness%20--%3e%3cpath%20d='M0,20%20Q150,25%20300,15%20T600,20'%20stroke='%233A2618'%20stroke-width='1.5'%20opacity='0.3'%20fill='none'/%3e%3cpath%20d='M0,45%20Q200,50%20400,40%20T600,45'%20stroke='%232F1F14'%20stroke-width='2'%20opacity='0.25'%20fill='none'/%3e%3cpath%20d='M0,80%20Q180,85%20360,75%20T600,80'%20stroke='%233A2618'%20stroke-width='1'%20opacity='0.4'%20fill='none'/%3e%3cpath%20d='M0,110%20Q220,115%20440,105%20T600,110'%20stroke='%232F1F14'%20stroke-width='3'%20opacity='0.2'%20fill='none'/%3e%3cpath%20d='M0,150%20Q160,155%20320,145%20T600,150'%20stroke='%233A2618'%20stroke-width='1.5'%20opacity='0.35'%20fill='none'/%3e%3cpath%20d='M0,185%20Q240,190%20480,180%20T600,185'%20stroke='%232F1F14'%20stroke-width='2.5'%20opacity='0.22'%20fill='none'/%3e%3cpath%20d='M0,220%20Q170,225%20340,215%20T600,220'%20stroke='%233A2618'%20stroke-width='1'%20opacity='0.45'%20fill='none'/%3e%3cpath%20d='M0,255%20Q210,260%20420,250%20T600,255'%20stroke='%232F1F14'%20stroke-width='2'%20opacity='0.28'%20fill='none'/%3e%3cpath%20d='M0,290%20Q190,295%20380,285%20T600,290'%20stroke='%233A2618'%20stroke-width='1.5'%20opacity='0.32'%20fill='none'/%3e%3cpath%20d='M0,325%20Q230,330%20460,320%20T600,325'%20stroke='%232F1F14'%20stroke-width='3'%20opacity='0.18'%20fill='none'/%3e%3cpath%20d='M0,360%20Q150,365%20300,355%20T600,360'%20stroke='%233A2618'%20stroke-width='1'%20opacity='0.38'%20fill='none'/%3e%3cpath%20d='M0,390%20Q200,395%20400,385%20T600,390'%20stroke='%232F1F14'%20stroke-width='2'%20opacity='0.25'%20fill='none'/%3e%3c!--%20Wood%20knots%20--%3e%3cellipse%20cx='120'%20cy='180'%20rx='25'%20ry='15'%20fill='%232F1F14'%20opacity='0.2'%20transform='rotate(15%20120%20180)'/%3e%3cellipse%20cx='120'%20cy='180'%20rx='15'%20ry='8'%20fill='%23261811'%20opacity='0.3'%20transform='rotate(15%20120%20180)'/%3e%3cellipse%20cx='450'%20cy='280'%20rx='30'%20ry='18'%20fill='%232F1F14'%20opacity='0.15'%20transform='rotate(-20%20450%20280)'/%3e%3cellipse%20cx='450'%20cy='280'%20rx='18'%20ry='10'%20fill='%23261811'%20opacity='0.25'%20transform='rotate(-20%20450%20280)'/%3e%3cellipse%20cx='280'%20cy='90'%20rx='20'%20ry='12'%20fill='%232F1F14'%20opacity='0.18'%20transform='rotate(45%20280%2090)'/%3e%3cellipse%20cx='280'%20cy='90'%20rx='12'%20ry='7'%20fill='%23261811'%20opacity='0.28'%20transform='rotate(45%20280%2090)'/%3e%3c!--%20Subtle%20vertical%20grain%20--%3e%3cpath%20d='M50,0%20Q52,100%2048,200%20T50,400'%20stroke='%233A2618'%20stroke-width='0.5'%20opacity='0.2'%20fill='none'/%3e%3cpath%20d='M150,0%20Q148,120%20152,240%20T150,400'%20stroke='%233A2618'%20stroke-width='0.5'%20opacity='0.15'%20fill='none'/%3e%3cpath%20d='M250,0%20Q252,80%20248,160%20T250,400'%20stroke='%233A2618'%20stroke-width='0.5'%20opacity='0.18'%20fill='none'/%3e%3cpath%20d='M350,0%20Q348,110%20352,220%20T350,400'%20stroke='%233A2618'%20stroke-width='0.5'%20opacity='0.12'%20fill='none'/%3e%3cpath%20d='M450,0%20Q452,90%20448,180%20T450,400'%20stroke='%233A2618'%20stroke-width='0.5'%20opacity='0.16'%20fill='none'/%3e%3cpath%20d='M550,0%20Q548,130%20552,260%20T550,400'%20stroke='%233A2618'%20stroke-width='0.5'%20opacity='0.14'%20fill='none'/%3e%3c/pattern%3e%3c!--%20Overlay%20gradient%20for%20depth%20--%3e%3clinearGradient%20id='woodOverlay'%20x1='0%25'%20y1='0%25'%20x2='100%25'%20y2='100%25'%3e%3cstop%20offset='0%25'%20style='stop-color:%23000000;stop-opacity:0.1'/%3e%3cstop%20offset='50%25'%20style='stop-color:%23000000;stop-opacity:0'/%3e%3cstop%20offset='100%25'%20style='stop-color:%23000000;stop-opacity:0.2'/%3e%3c/linearGradient%3e%3c/defs%3e%3c!--%20Apply%20the%20pattern%20--%3e%3crect%20width='600'%20height='400'%20fill='url(%23woodGrain)'/%3e%3crect%20width='600'%20height='400'%20fill='url(%23woodOverlay)'/%3e%3c/svg%3e"),
    radial-gradient(160% 120% at 15% 0%,
      rgba(90, 75, 55, 0.25) 0%,
      transparent 48%),
    linear-gradient(180deg,
      #4A3628 0%,
      #2A1F15 100%);
  background-size: 120% 120%, 100% 100%, 100% 100%;
  background-position: -10% -5%, center, center;
  background-blend-mode: overlay, normal, normal;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
/* Ensure body doesn't clip lightbox */
body.lightbox-active {
  overflow: hidden !important;
  position: relative;
}
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Polaroid-style container */
  background: #ffffff;
  padding: 20px 20px 60px 20px;
  box-shadow: 
    inset 0 0 4px rgba(0, 0, 0, 0.06),
    0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1),
    0 8px 16px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.05),
    0 25px 50px rgba(0, 0, 0, 0.25);
  border: 1px solid #f0f0f0;
}
.lightbox-image {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
  margin-bottom: 0;
  box-shadow: 
    inset 0 1px 3px rgba(0, 0, 0, 0.2),
    inset 0 -1px 2px rgba(0, 0, 0, 0.1);
  animation: scaleIn 0.3s ease-out;
}
.lightbox-caption {
  position: absolute;
  bottom: 10px;
  left: 8px;
  right: 8px;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  margin: 0 !important;
  font-family: 'Kalam', cursive !important;
  letter-spacing: 0.5px;
  color: #000000 !important;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 1;
  transform: rotate(-0.8deg) skew(-2deg);
  text-shadow: none !important;
  text-transform: none;
  line-height: 1 !important;
  padding: 0;
  font-style: italic;
}
/* Lightbox Controls */
.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  color: var(--bone);
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover {
  transform: rotate(90deg);
  color: var(--wheat-300);
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--bone);
  font-size: 3rem;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-prev {
  left: 2rem;
}
.lightbox-next {
  right: 2rem;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}
/* Mobile Styles */
@media (max-width: 768px) {
  .lightbox-content {
    max-width: 95vw;
    max-height: 95vh;
    padding: 15px 15px 45px 15px;
  }
  
  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
  
  .lightbox-prev {
    left: 1rem;
  }
  
  .lightbox-next {
    right: 1rem;
  }
  
  .lightbox-caption {
    font-size: 1.35rem !important;
    bottom: 10px !important;
    left: 8px !important;
    right: 8px !important;
    transform: rotate(-0.8deg) skew(-2deg) !important;
  }
}
/* Video Lightbox Styles */
.video-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(46, 50, 48, 0.97); /* Charcoal from Northwoods palette - matches photo lightbox */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.video-lightbox.active {
  opacity: 1;
  visibility: visible;
}
/* Ensure body doesn't clip video lightbox */
body.video-lightbox-active {
  overflow: hidden !important;
}
.video-lightbox-content {
  position: relative;
  width: 90vw;
  max-width: 1200px;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  animation: scaleIn 0.3s ease-out;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
/* Close button - matching photo lightbox style */
.video-lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  color: var(--bone);
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-lightbox-close:hover {
  transform: rotate(90deg);
  color: var(--wheat-300);
}
/* Play button overlay for video section */
.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background 0.3s ease;
}
.video-play-overlay:hover {
  background: rgba(0, 0, 0, 0.2);
}
.play-button {
  width: 80px;
  height: 80px;
  transition: transform 0.3s ease;
}
.video-play-overlay:hover .play-button {
  transform: scale(1.1);
}
.play-button svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}
/* Remove duplicate animation since scaleIn is already applied to video-wrapper */
@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* Mobile styles */
@media (max-width: 768px) {
  .video-lightbox-content {
    width: 95vw;
    height: 60vh;
  }
  
  .video-lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .play-button {
    width: 60px;
    height: 60px;
  }
}
/* Wave Dividers */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
  margin: 0;
}
/* Section Dividers */
.section-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
  margin: -20px 0;
  z-index: 2;
  background: transparent;
  animation: none !important;
  transition: none !important;
  transform: none !important;
}
.section-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
  animation: none !important;
  transition: none !important;
  transform: none !important;
}
.section-divider svg path {
  animation: none !important;
  transition: none !important;
  transform: none !important;
}
.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}
.wave-divider.wave-flip svg {
  transform: rotate(180deg);
}
/* Wave Styles */
.wave-gentle {
  fill: var(--ocean);
}
.wave-mist {
  fill: var(--mist);
}
.wave-sand {
  fill: var(--sand);
}
.wave-sunset {
  fill: var(--sunset);
}
.wave-white {
  fill: var(--white);
}
/* Water Texture Overlay */
.water-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  mix-blend-mode: overlay;
}
.water-texture::before,
.water-texture::after {
  content: '';
  position: absolute;
  inset: 0;
}
.water-texture::before {
  background-image: 
    radial-gradient(circle at 20% 30%, transparent 40%, rgba(46, 110, 142, 0.1) 70%),
    radial-gradient(circle at 60% 70%, transparent 45%, rgba(74, 146, 180, 0.1) 75%),
    radial-gradient(circle at 80% 20%, transparent 35%, rgba(30, 77, 107, 0.1) 65%);
  filter: blur(2px);
}
.water-texture::after {
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(227, 242, 253, 0.03) 3px,
      rgba(227, 242, 253, 0.03) 6px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 3px,
      rgba(227, 242, 253, 0.03) 3px,
      rgba(227, 242, 253, 0.03) 6px
    );
  transform: scale(1.5) rotate(45deg);
}
/* Section-specific wave transitions */
.hero + .wave-divider {
  background: linear-gradient(to bottom, var(--navy), transparent);
}
/* Gallery background is set in gallery.css */
.reviews-section {
  background: var(--mist);
  position: relative;
}
.location-section {
  background: var(--white);
}
.area-guide-section {
  background: var(--sand-light);
  position: relative;
}
.booking-section {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--navy) 100%);
  color: var(--white);
}
/* Wave SVG Path Definitions */
.wave-path-gentle {
  d: path("M0,60 C150,90 350,30 600,60 C850,90 1050,30 1200,60 L1200,120 L0,120 Z");
}
.wave-path-smooth {
  d: path("M0,40 C400,80 800,20 1200,60 L1200,120 L0,120 Z");
}
.wave-path-ripple {
  d: path("M0,40 C300,20 600,60 900,40 C1050,30 1100,50 1200,40 L1200,120 L0,120 Z");
}
/* @import './components/section-system.css'; - Disabled, using basic-sections.css */
/* @import './components/divider-shapes.css'; - Disabled, no shapes for now */
/* ==========================================================================
   Basic Clean Section Styles - No shapes, just clean spacing
   ========================================================================== */
/* Section Base - Clean and Simple
   ========================================================================== */
.section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}
/* Section Colors - Farmhouse Palette
   ========================================================================== */
.section--white {
  background-color: var(--white);
}
.section--cream {
  background-color: var(--cream);
}
.section--wheat {
  background: linear-gradient(180deg, var(--wheat) 0%, var(--wheat-light) 100%);
}
.section--wheat-light {
  background-color: var(--wheat-light);
}
.section--sage-light {
  background: linear-gradient(135deg, var(--sage-light) 0%, rgba(164, 189, 142, 0.3) 100%);
}
.section--sand-light {
  background-color: var(--sand-light);
}
.section--antique-white {
  background-color: var(--antique-white);
}
.section--barn-red {
  background: linear-gradient(180deg, var(--barn-red) 0%, var(--barn-red-dark) 100%);
  color: var(--cream);
}
.section--barn-red h2,
.section--barn-red h3,
.section--barn-red p {
  color: var(--cream);
}
.section--barn-red a {
  color: var(--wheat-light);
}
.section--barn-red a:hover {
  color: var(--white);
}
/* Legacy color mappings for compatibility */
.section--pearl {
  background-color: var(--cream);
}
.section--mist {
  background-color: var(--wheat-light);
}
.section--frost {
  background-color: var(--sand-light);
}
.section--ocean {
  background-color: var(--sage);
  color: var(--white);
}
.section--ocean-dark {
  background-color: var(--forest);
  color: var(--white);
}
.section--powder {
  background-color: var(--antique-white);
}
/* Container - Standard max-width and padding
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}
/* Section Header - Clean typography
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--deep-brown);
}
.section-header p {
  font-size: 1.125rem;
  color: var(--stone-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
}
/* Grid System - Modern CSS Grid
   ========================================================================== */
.grid {
  display: grid;
  gap: 2rem;
}
.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
@media (min-width: 768px) {
  .grid {
    gap: 3rem;
  }
}
/* Card Base - Clean and minimal
   ========================================================================== */
.card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
/* Ensure cards in colored sections stand out */
.section--wheat .card,
.section--sage-light .card,
.section--sand-light .card,
.section--antique-white .card {
  background: var(--white);
  border: 1px solid var(--wheat);
  box-shadow: 0 3px 8px rgba(74, 60, 40, 0.08);
}
.section--cream .card,
.section--white .card {
  background: var(--antique-white);
  border: 1px solid var(--wheat-light);
}
.section--barn-red .card {
  background: rgba(250, 246, 240, 0.95);
  color: var(--charcoal);
  border: 2px solid var(--wheat);
}
.section--barn-red .card h3,
.section--barn-red .card h4 {
  color: var(--deep-brown);
}
/* Section modifiers for shape dividers
   ========================================================================== */
.section--has-top-divider {
  padding-top: 7rem;
}
@media (min-width: 768px) {
  .section--has-top-divider {
    padding-top: 9rem;
  }
}
/* Clean spacing utilities
   ========================================================================== */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
/* ==========================================================================
   Custom Shape Dividers
   ========================================================================== */
/* Wave Divider from Shape Generator */
.custom-shape-divider-top-1753418517 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.custom-shape-divider-top-1753418517 svg {
    position: relative;
    display: block;
    width: calc(119% + 1.3px);
    height: 58px;
}
.custom-shape-divider-top-1753418517 .shape-fill {
    fill: var(--ocean-dark); /* Matches video dark tones */
}
/* Bottom Wave Divider for Hero */
.custom-shape-divider-bottom-1753419162 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 3;
}
.custom-shape-divider-bottom-1753419162 svg {
    position: relative;
    display: block;
    width: calc(139% + 1.3px);
    height: 89px;
}
.custom-shape-divider-bottom-1753419162 .shape-fill {
    fill: #FFFFFF;
}
/* Non-flipped wave divider for section tops */
.custom-shape-divider-top-1753421774 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.custom-shape-divider-top-1753421774 svg {
    position: relative;
    display: block;
    width: calc(139% + 1.3px);
    height: 89px;
}
.custom-shape-divider-top-1753421774 .shape-fill {
    fill: #FFFFFF;
}
/* Flipped wave divider for section tops */
.custom-shape-divider-top-1753422094 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.custom-shape-divider-top-1753422094 svg {
    position: relative;
    display: block;
    width: calc(139% + 1.3px);
    height: 89px;
    transform: rotateY(180deg);
}
.custom-shape-divider-top-1753422094 .shape-fill {
    fill: #FFFFFF;
}
/* Ensure the parent section has relative positioning */
.section {
    position: relative;
}
/* ==========================================================================
   Shape Dividers Library
   Complete collection of wave dividers for all section combinations
   ========================================================================== */
/* Base Shape Divider Classes
   ========================================================================== */
.shape-divider {
  position: absolute;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.shape-divider--bottom {
  bottom: 0;
  left: 0;
  transform: rotate(180deg);
}
.shape-divider--top {
  top: 0;
  left: 0;
}
.shape-divider--flipped svg {
  transform: rotateY(180deg);
}
.shape-divider--inverted svg {
  transform: rotateX(180deg);
}
/* 1. Wave - White - Bottom
   ========================================================================== */
.shape-divider-wave-white-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.shape-divider-wave-white-bottom svg {
  position: relative;
  display: block;
  width: calc(139% + 1.3px);
  height: 89px;
}
.shape-divider-wave-white-bottom .shape-fill {
  fill: #FFFFFF;
}
/* 2. Wave - White - Top
   ========================================================================== */
.shape-divider-wave-white-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.shape-divider-wave-white-top svg {
  position: relative;
  display: block;
  width: calc(139% + 1.3px);
  height: 89px;
}
.shape-divider-wave-white-top .shape-fill {
  fill: #FFFFFF;
}
/* Flipped version */
.shape-divider-wave-white-top--flipped svg {
  transform: rotateY(180deg);
}
/* 3. Wave - Pearl - Bottom
   ========================================================================== */
.shape-divider-wave-pearl-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.shape-divider-wave-pearl-bottom svg {
  position: relative;
  display: block;
  width: calc(139% + 1.3px);
  height: 89px;
}
.shape-divider-wave-pearl-bottom .shape-fill {
  fill: var(--pearl);
}
/* 4. Wave - Mist - Bottom
   ========================================================================== */
.shape-divider-wave-mist-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.shape-divider-wave-mist-bottom svg {
  position: relative;
  display: block;
  width: calc(139% + 1.3px);
  height: 89px;
}
.shape-divider-wave-mist-bottom .shape-fill {
  fill: var(--mist);
}
/* 5. Wave - Ocean - Bottom
   ========================================================================== */
.shape-divider-wave-ocean-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.shape-divider-wave-ocean-bottom svg {
  position: relative;
  display: block;
  width: calc(139% + 1.3px);
  height: 89px;
}
.shape-divider-wave-ocean-bottom .shape-fill {
  fill: var(--ocean);
}
/* 6. Wave Opacity - White - Bottom
   ========================================================================== */
.shape-divider-wave-opacity-white-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.shape-divider-wave-opacity-white-bottom svg {
  position: relative;
  display: block;
  width: calc(130% + 1.3px);
  height: 80px;
}
.shape-divider-wave-opacity-white-bottom .shape-fill {
  fill: #FFFFFF;
}
.shape-divider-wave-opacity-white-bottom .shape-fill-opacity-1 {
  opacity: 0.25;
}
.shape-divider-wave-opacity-white-bottom .shape-fill-opacity-2 {
  opacity: 0.5;
}
/* 7. Wave Opacity - Mist - Top
   ========================================================================== */
.shape-divider-wave-opacity-mist-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.shape-divider-wave-opacity-mist-top svg {
  position: relative;
  display: block;
  width: calc(130% + 1.3px);
  height: 80px;
}
.shape-divider-wave-opacity-mist-top .shape-fill {
  fill: var(--mist);
}
.shape-divider-wave-opacity-mist-top .shape-fill-opacity-1 {
  opacity: 0.25;
}
.shape-divider-wave-opacity-mist-top .shape-fill-opacity-2 {
  opacity: 0.5;
}
/* 8. Gentle Wave - Pearl - Bottom
   ========================================================================== */
.shape-divider-gentle-wave-pearl-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.shape-divider-gentle-wave-pearl-bottom svg {
  position: relative;
  display: block;
  width: calc(125% + 1.3px);
  height: 60px;
}
.shape-divider-gentle-wave-pearl-bottom .shape-fill {
  fill: var(--pearl);
}
/* 9. Steep Wave - Ocean - Top
   ========================================================================== */
.shape-divider-steep-wave-ocean-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.shape-divider-steep-wave-ocean-top svg {
  position: relative;
  display: block;
  width: calc(145% + 1.3px);
  height: 100px;
}
.shape-divider-steep-wave-ocean-top .shape-fill {
  fill: var(--ocean);
}
/* 10. Double Wave - White - Bottom
   ========================================================================== */
.shape-divider-double-wave-white-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.shape-divider-double-wave-white-bottom svg {
  position: relative;
  display: block;
  width: calc(120% + 1.3px);
  height: 65px;
}
.shape-divider-double-wave-white-bottom .shape-fill {
  fill: #FFFFFF;
}
/* 11. Wave Opacity - Navy - Bottom
   ========================================================================== */
.shape-divider-wave-opacity-navy-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.shape-divider-wave-opacity-navy-bottom svg {
  position: relative;
  display: block;
  width: calc(130% + 1.3px);
  height: 80px;
}
.shape-divider-wave-opacity-navy-bottom .shape-fill {
  fill: var(--navy);
}
.shape-divider-wave-opacity-navy-bottom .shape-fill-opacity-1 {
  opacity: 0.25;
}
.shape-divider-wave-opacity-navy-bottom .shape-fill-opacity-2 {
  opacity: 0.5;
}
/* 12. Subtle Wave - Frost - Top
   ========================================================================== */
.shape-divider-subtle-wave-frost-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.shape-divider-subtle-wave-frost-top svg {
  position: relative;
  display: block;
  width: calc(135% + 1.3px);
  height: 50px;
}
.shape-divider-subtle-wave-frost-top .shape-fill {
  fill: var(--frost);
}
/* Responsive adjustments
   ========================================================================== */
@media (max-width: 768px) {
  /* Reduce heights on mobile for better proportions */
  .shape-divider-wave-white-bottom svg,
  .shape-divider-wave-white-top svg,
  .shape-divider-wave-pearl-bottom svg,
  .shape-divider-wave-mist-bottom svg,
  .shape-divider-wave-ocean-bottom svg {
    height: 60px;
  }
  
  .shape-divider-wave-opacity-white-bottom svg,
  .shape-divider-wave-opacity-mist-top svg,
  .shape-divider-wave-opacity-navy-bottom svg {
    height: 50px;
  }
  
  .shape-divider-gentle-wave-pearl-bottom svg {
    height: 40px;
  }
  
  .shape-divider-steep-wave-ocean-top svg {
    height: 70px;
  }
  
  .shape-divider-double-wave-white-bottom svg {
    height: 45px;
  }
  
  .shape-divider-subtle-wave-frost-top svg {
    height: 35px;
  }
}
/* Import animations */
/* Animation System - Cohesive and Structured */
/* Base animation variables - Farmhouse Charm */
:root {
  --anim-duration-fast: 0.4s;
  --anim-duration-normal: 0.8s;
  --anim-duration-slow: 1.2s;
  --anim-delay-step: 0.15s;
  --anim-distance: 50px;
  --anim-easing: cubic-bezier(0.4, 0, 0.2, 1);
  --anim-easing-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --anim-easing-gentle: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* Animation States */
[data-animate] {
  opacity: 0;
  transition: all var(--anim-duration-normal) var(--anim-easing);
  will-change: transform, opacity;
}
/* Direction-based animations */
[data-animate="fade-up"] {
  transform: translateY(var(--anim-distance));
}
[data-animate="fade-down"] {
  transform: translateY(calc(var(--anim-distance) * -1));
}
[data-animate="fade-left"] {
  transform: translateX(calc(var(--anim-distance) * -1));
}
[data-animate="fade-right"] {
  transform: translateX(var(--anim-distance));
}
[data-animate="scale"] {
  transform: scale(0.85);
}
[data-animate="fade"] {
  transform: none;
}
/* Animated state */
.animate-in:not(.gallery-animate-in) {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
}
/* Section-specific animation timing */
/* Hero Section - Warm Welcome */
.hero-content h1 {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  animation: gentleReveal 1.2s var(--anim-easing-gentle) 0.3s forwards;
}
.hero-content p {
  opacity: 0;
  transform: translateY(30px);
  animation: gentleReveal 1.2s var(--anim-easing-gentle) 0.5s forwards;
}
.hero-cta {
  opacity: 0;
  transform: translateY(30px);
  animation: gentleReveal 1.2s var(--anim-easing-gentle) 0.7s forwards;
}
@keyframes gentleReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* Farmhouse Sway Animation */
@keyframes farmhouseSway {
  0%, 100% {
    transform: rotate(-1deg) translateY(0);
  }
  50% {
    transform: rotate(1deg) translateY(-5px);
  }
}
/* Gallery Items - Flying Polaroid Animation */
.gallery-item[data-animate="fly-left"] {
  opacity: 0 !important;
  transform: translateX(-200px) translateY(20px) rotate(-15deg) scale(0.8) !important;
  transition: all 1.2s var(--anim-easing-bounce);
}
.gallery-item[data-animate="fly-right"] {
  opacity: 0 !important;
  transform: translateX(200px) translateY(20px) rotate(15deg) scale(0.8) !important;
  transition: all 1.2s var(--anim-easing-bounce);
}
.gallery-item[data-animate].animate-in {
  opacity: 1 !important;
  transform: translateX(0) translateY(0) rotate(var(--card-rotation, 0deg)) scale(1) !important;
}
/* Feature Cards - Barn Door Slide */
.feature-card {
  opacity: 0;
  transform: translateX(-50px) scale(0.95);
  transition: all 0.8s var(--anim-easing-gentle);
}
.feature-card:nth-child(even) {
  transform: translateX(50px) scale(0.95);
}
.feature-card.animate-in {
  opacity: 1;
  transform: translateX(0) scale(1);
}
/* Review Cards - Cascade */
.review-card {
  opacity: 0;
  transform: translateY(60px) rotateX(-10deg);
  transform-origin: center bottom;
  transition: all 0.9s var(--anim-easing);
}
.review-card.animate-in {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}
/* Guide Items - Expanding Circle */
.guide-item {
  opacity: 0;
  transform: scale(0.7) translateY(40px);
  transition: all 0.8s var(--anim-easing-bounce);
}
.guide-item.animate-in {
  opacity: 1;
  transform: scale(1) translateY(0);
}
/* Amenity Items - Slide and Fade */
.preview-item {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.6s var(--anim-easing);
}
.preview-item:nth-child(even) {
  transform: translateX(40px);
}
.preview-item.animate-in {
  opacity: 1;
  transform: translateX(0);
}
/* Location Highlights - Alternating Slide */
.highlight-item {
  opacity: 0;
  transition: all 0.8s var(--anim-easing);
}
.highlight-item[data-animate="fade-left"] {
  transform: translateX(-100px) scale(0.95);
}
.highlight-item[data-animate="fade-right"] {
  transform: translateX(100px) scale(0.95);
}
.highlight-item.animate-in {
  opacity: 1;
  transform: translateX(0) scale(1);
}
/* Booking Cards - Zoom and Glow */
.booking-card {
  opacity: 0;
  transform: scale(0.8) translateY(60px);
  transition: all 1s var(--anim-easing);
  position: relative;
  overflow: hidden;
}
.booking-card.animate-in {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.booking-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.booking-card.animate-in::before {
  animation: glowPulse 2s ease-in-out 0.5s;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}
/* Wave Separator Animation - DISABLED */
.wave-separator svg path {
  stroke-dasharray: none !important;
  stroke-dashoffset: 0 !important;
  fill-opacity: 1 !important;
  transition: none !important;
  animation: none !important;
}
.wave-separator.animate-in svg path {
  stroke-dashoffset: 0 !important;
  fill-opacity: 1 !important;
  transition: none !important;
  animation: none !important;
}
/* Navigation Links - Removed underline animations */
/* Interactive Element Hovers */
.feature-card,
.guide-item,
.booking-card {
  cursor: pointer;
  transition: all 0.4s var(--anim-easing);
}
.review-card {
  transition: all 0.4s var(--anim-easing);
}
.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(74, 60, 40, 0.18);
}
.booking-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(74, 60, 40, 0.22);
}
/* Gentle Bob Animation for Icons */
@keyframes gentleBob {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(-2deg);
  }
  75% {
    transform: translateY(-8px) rotate(2deg);
  }
}
/* Wheat Field Wave */
@keyframes wheatWave {
  0%, 100% {
    transform: skewX(0deg) translateX(0);
  }
  25% {
    transform: skewX(2deg) translateX(2px);
  }
  75% {
    transform: skewX(-2deg) translateX(-2px);
  }
}
.feature-icon,
.guide-icon {
  display: inline-block;
  animation: gentleBob 5s ease-in-out infinite;
}
.feature-icon {
  animation-delay: 0s;
}
.guide-item:nth-child(2) .guide-icon {
  animation-delay: 0.5s;
}
.guide-item:nth-child(3) .guide-icon {
  animation-delay: 1s;
}
.guide-item:nth-child(4) .guide-icon {
  animation-delay: 1.5s;
}
.guide-item:nth-child(5) .guide-icon {
  animation-delay: 2s;
}
.guide-item:nth-child(6) .guide-icon {
  animation-delay: 2.5s;
}
/* Parallax Layers */
.hero-content {
  will-change: transform;
  transition: transform 0.1s linear;
}
/* Button Ripple Effect */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--anim-easing);
}
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.8s, height 0.8s;
}
.btn:hover::before {
  width: 400px;
  height: 400px;
}
.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 16px rgba(139, 58, 58, 0.25);
}
/* Loading Animation - Farmhouse Fade */
.loading {
  opacity: 0;
  pointer-events: none;
}
.loaded {
  opacity: 1;
  transition: opacity 1s ease-out;
}
/* Harvest Glow Pulse */
@keyframes harvestGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(135, 169, 107, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(135, 169, 107, 0.5);
  }
}
/* Performance */
.gallery-item img,
.feature-image img {
  will-change: transform;
  backface-visibility: hidden;
}
/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}
/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-content {
    transform: none !important;
  }
  
  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
/* Mobile Optimizations */
@media (max-width: 768px) {
  :root {
    --anim-distance: 40px;
  }
  
  /* Disable parallax on mobile */
  .hero-content {
    transform: none !important;
  }
  
  /* Gallery animations now in gallery.css */
  
  .feature-card,
  .feature-card:nth-child(even) {
    transform: translateY(40px);
  }
  
  .highlight-item[data-animate="fade-left"],
  .highlight-item[data-animate="fade-right"] {
    transform: translateY(40px) scale(0.98);
  }
}
/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Lato', 'Open Sans', sans-serif;
  color: #3A3A3A;
  line-height: 1.7;
  background-color: #FAF6F0;
  overflow-x: hidden;
  position: relative;
  font-size: 1.125rem;
}
/* Prevent horizontal overflow from any element */
#root,
main,
.site-wrapper {
  overflow-x: hidden;
  position: relative;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: #4A3C28;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
}
h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.75rem;
}
h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #87A96B;
  border-radius: 2px;
}
h3 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
}
h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
p {
  margin-bottom: 1.25rem;
  color: #3A3A3A;
  font-weight: 400;
}
a {
  color: #8B3A3A;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
a:hover {
  color: #6B2C2C;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
}
/* Ensure all sections don't overflow */
section {
  overflow-x: hidden;
  position: relative;
}
/* Section Styles - moved to gradient-system.css for consistency */
/* section styles are now handled by gradient-system.css */
/* GLOBAL: Force disable ALL divider animations */
.section-divider,
.section-divider *,
.wave-divider,
.wave-divider * {
  animation: none !important;
  transition: none !important;
  transform: none !important;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  color: #4A3C28;
  display: inline-block;
  position: relative;
}
.section-header p {
  font-size: 1.25rem;
  color: #8B8680;
  margin-top: 1rem;
  font-weight: 300;
  font-family: 'Lato', sans-serif;
}
/* Button Styles - Farmhouse & Welcoming */
.btn {
  display: inline-block;
  padding: 1rem 2.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-family: 'Lato', sans-serif;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 1rem;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 0.875rem;
}
/* Subtle hover effect */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.btn:hover::before {
  left: 100%;
}
.btn-primary {
  background-color: #8B3A3A;
  color: #FAF6F0;
  box-shadow: 0 4px 6px rgba(139, 58, 58, 0.2);
  border-color: #8B3A3A;
}
.btn-primary:hover {
  background-color: #6B2C2C;
  color: #FAF6F0;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 12px rgba(139, 58, 58, 0.3);
  border-color: #6B2C2C;
}
.btn-secondary {
  background-color: transparent;
  color: #8B3A3A;
  border: 2px solid #8B3A3A;
  box-shadow: none;
}
.btn-secondary:hover {
  background-color: #8B3A3A;
  color: #FAF6F0;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 10px rgba(139, 58, 58, 0.2);
}
/* Responsive utilities */
@media (max-width: 768px) {
  section {
    padding: var(--section-padding-mobile);
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .container {
    padding: 0 1.5rem;
  }
}
/* Loading State */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #F5DEB3;
  border-radius: 50%;
  border-top-color: #8B3A3A;
  animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
/* Skip to content */
.skip-to-content {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-to-content:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  background: var(--navy);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  z-index: 10000;
}

/* ==========================================================================
   Northwoods Farmhouse Design System
   Complete design system with exact colors, typography, and components
   ========================================================================== */
/* Google Fonts */
:root {
  /* Colors - Exact Hex Values */
  --linen: #F8F6F1;
  --parchment: #EFEAE1;
  --bone: #FFFFFF;
  --charcoal: #2E3230;

  --sage-200: #E8EFE9;
  --sage-500: #BCC9BF;
  --pine-800: #2F4A3C;

  --sky-100: #E6F0F6;
  --lake-600: #4E6E7E;

  --wheat-300: #E8C88F;
  --barn-700: #8E3B2F;
  --copper-600: #B66A4B;

  /* Typography */
  --font-display: "Playfair Display", serif;
  --font-sans: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --h1-size: 56px;
  --h1-lh: 1.1;
  --h1-trk: -0.015em;
  --h2-size: 36px;
  --h2-lh: 1.2;
  --h2-trk: -0.01em;
  --h3-size: 24px;
  --h3-lh: 1.25;
  --h3-trk: -0.005em;

  --p-size: 18px;
  --p-lh: 1.6;
  --small-size: 15px;
  --small-lh: 1.5;

  /* Layout rhythm */
  --section-pad-d: 96px;
  --section-pad-m: 64px;
  --container: 1120px;
  --radius: 14px;
  --border: 1px;
  --ring-w: 2px;
}
/* Base */
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--linen);
  font-size: var(--p-size);
  line-height: var(--p-lh);
  margin: 0;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 16px;
}
h1 {
  font-size: var(--h1-size);
  line-height: var(--h1-lh);
  letter-spacing: var(--h1-trk);
}
h2 {
  font-size: var(--h2-size);
  line-height: var(--h2-lh);
  letter-spacing: var(--h2-trk);
}
h3 {
  font-size: var(--h3-size);
  line-height: var(--h3-lh);
  letter-spacing: var(--h3-trk);
}
p {
  margin: 0 0 16px;
}
small, .small {
  font-size: var(--small-size);
  line-height: var(--small-lh);
}
/* Links */
a {
  color: var(--lake-600);
  text-underline-offset: 3px;
}
a:hover {
  text-decoration: underline;
}
/* Sections (background helpers) */
.section {
  padding: var(--section-pad-d) 0;
}
@media (max-width: 768px) {
  .section {
    padding: var(--section-pad-m) 0;
  }
}
/* Text color overrides for dark backgrounds */
.bg-pine h2,
.bg-pine h3,
.bg-pine p,
.bg-pine a {
  color: var(--bone);
}
.bg-barn h2,
.bg-barn h3,
.bg-barn p,
.bg-barn a {
  color: var(--bone);
}
.bg-charcoal h2,
.bg-charcoal h3,
.bg-charcoal p,
.bg-charcoal a {
  color: var(--bone);
}
/* Hairlines/Dividers */
.hr-copper {
  height: var(--border);
  background: var(--copper-600);
  border: 0;
  margin: 24px 0;
}
/* Buttons */
.btn {
  --btn-bg: var(--barn-700);
  --btn-fg: var(--bone);
  --btn-br: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 700 16px/1.1 var(--font-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: var(--radius);
  border: 2px solid var(--btn-br);
  background: var(--btn-bg);
  color: var(--btn-fg);
  transition: background .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease;
  text-decoration: none;
  cursor: pointer;
}
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 var(--ring-w) var(--wheat-300);
}
.btn:disabled {
  opacity: .48;
  pointer-events: none;
}
/* Button Variants */
.btn-primary {
  --btn-bg: var(--barn-700);
  --btn-fg: var(--bone);
}
.btn-primary:hover {
  background: #7A342A;
}
.btn-primary:active {
  background: #6A2E25;
}
.btn-primary-inverse {
  --btn-bg: var(--bone);
  --btn-fg: var(--barn-700);
  background: var(--bone);
  color: var(--barn-700);
  border: 2px solid var(--bone);
}
.btn-primary-inverse:hover {
  background: var(--wheat-300);
  color: var(--barn-700);
  border-color: var(--wheat-300);
  transform: translateY(-2px);
}
/* Override for dark backgrounds */
.bg-barn .btn-primary-inverse,
.bg-pine .btn-primary-inverse,
.bg-charcoal .btn-primary-inverse {
  background: var(--bone);
  color: var(--barn-700);
  border: 2px solid var(--bone);
}
.bg-barn .btn-primary-inverse:hover,
.bg-pine .btn-primary-inverse:hover,
.bg-charcoal .btn-primary-inverse:hover {
  background: var(--wheat-300);
  color: var(--barn-700);
  border-color: var(--wheat-300);
}
.btn-secondary {
  --btn-bg: transparent;
  --btn-fg: var(--pine-800);
  --btn-br: var(--pine-800);
}
.btn-secondary:hover {
  --btn-bg: var(--pine-800);
  --btn-fg: var(--bone);
  background: var(--pine-800);
  color: var(--bone);
}
.btn-tertiary {
  --btn-bg: transparent;
  --btn-fg: var(--lake-600);
  border: none;
  padding: 0;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}
.btn-tertiary:hover {
  text-decoration: underline;
}
/* Utility */
.round {
  border-radius: var(--radius);
}
.scrim-hero {
  position: relative;
  isolation: isolate;
}
.scrim-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(46, 50, 48, 0.6); /* 60% charcoal */
  z-index: 0;
}
.scrim-hero > * {
  position: relative;
  z-index: 1;
}
/* Section Background Helpers with tokens */
/* 1) Give every bg helper a --section-bg token */
.bg-linen    { background: var(--linen);    color: var(--charcoal); --section-bg: var(--linen); }
.bg-parchment{ background: var(--parchment);color: var(--charcoal); --section-bg: var(--parchment); }
.bg-bone     { background: var(--bone);     color: var(--charcoal); --section-bg: var(--bone); }
.bg-sage     { background: var(--sage-200); color: var(--charcoal); --section-bg: var(--sage-200); }
.bg-sky      { background: var(--sky-100);  color: var(--charcoal); --section-bg: var(--sky-100); }
.bg-wheat    { background: var(--wheat-300);color: var(--charcoal); --section-bg: var(--wheat-300); }
.bg-pine     { background: var(--pine-800); color: var(--bone);     --section-bg: var(--pine-800); }
.bg-barn     { background: var(--barn-700); color: var(--bone);     --section-bg: var(--barn-700); }
.bg-charcoal { background: var(--charcoal); color: var(--bone);     --section-bg: var(--charcoal); }
/* Section-specific text adjustments for better readability */
.bg-wheat .section-header p,
.bg-wheat p {
  color: var(--pine-800) !important;
  font-weight: 500;
}
.bg-wheat h2,
.bg-wheat h3 {
  color: var(--pine-800) !important;
}
/* 2) Seam utility for smooth transitions */
.section.seam { position: relative; }
.section.seam::after {
  content: "";
  position: absolute; 
  left: 0; 
  right: 0; 
  bottom: -1px;
  height: 48px; 
  pointer-events: none;
  /* fade the current section color to transparent so the next section shows through */
  background: linear-gradient(
    to bottom,
    var(--section-bg) 0%,
    rgba(90, 70, 54, 0.6) 40%,
    transparent 100%
  );
  z-index: 1;
}
@media (min-width: 900px) { 
  .section.seam::after { 
    height: 56px; 
  } 
}
/* Section helpers */
.section-title {
  margin-bottom: 8px;
}
.section-kicker {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  opacity: .7;
  margin-bottom: 8px;
  font-size: var(--small-size);
}
/* Icons with Pine color */
.icon-pine {
  color: var(--pine-800);
}
/* Cards - Section-specific styling per Northwoods guidelines */
.card {
  background: var(--bone);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 2px 8px rgba(46, 50, 48, 0.08);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
/* Section-specific card backgrounds */
/* Linen sections - use Bone cards */
.bg-linen .card {
  background: var(--bone);
  border: 1px solid var(--copper-600);
}
/* Bone sections - use Parchment or Sage 200 cards */
.bg-bone .card {
  background: var(--parchment);
  border: 1px solid var(--sage-500);
}
.bg-bone .card.card-sage {
  background: var(--sage-200);
  border: 1px solid var(--sage-500);
}
/* Sage sections - use Bone cards (never sage-on-sage) */
.bg-sage .card {
  background: var(--bone);
  border: 1px solid var(--copper-600);
}
/* Sky sections - use Bone cards */
.bg-sky .card {
  background: var(--bone);
  border: 1px solid var(--sage-500);
}
/* Wheat sections - use Bone or Parchment cards */
.bg-wheat .card {
  background: var(--bone);
  border: 1px solid var(--copper-600);
}
/* Dark sections (Barn, Charcoal, Pine) - use Bone cards for readability */
.bg-barn .card,
.bg-charcoal .card,
.bg-pine .card {
  background: var(--bone);
  color: var(--charcoal);
  border: 1px solid var(--wheat-300);
}
.bg-barn .card h2,
.bg-barn .card h3,
.bg-barn .card p,
.bg-charcoal .card h2,
.bg-charcoal .card h3,
.bg-charcoal .card p,
.bg-pine .card h2,
.bg-pine .card h3,
.bg-pine .card p {
  color: var(--charcoal);
}
/* Special card variants */
.card-sky {
  background: var(--sky-100);
  border: 1px solid var(--lake-600);
}
.card-parchment {
  background: var(--parchment);
  border: 1px solid var(--copper-600);
}
/* Card hover states */
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 50, 48, 0.12);
}
/* Responsive adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
}
/* Navigation overrides for Northwoods theme */
.site-header {
  background: var(--bone);
  border-bottom: 1px solid var(--parchment);
}
.nav-link {
  color: var(--charcoal);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-link:hover {
  color: var(--lake-600);
}
.nav-cta {
  background: var(--barn-700);
  color: var(--bone);
  padding: 10px 20px;
  border-radius: var(--radius);
}
.nav-cta:hover {
  background: #7A342A;
  color: var(--bone);
}
/* Footer specific */
.site-footer {
  background: var(--charcoal);
  color: var(--bone);
  padding: var(--section-pad-d) 0;
}
.site-footer a {
  color: var(--bone);
  opacity: 0.8;
}
.site-footer a:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .site-footer {
    padding: var(--section-pad-m) 0;
  }
}