/* Site Header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 2.5rem 0;
  background: linear-gradient(to bottom, rgba(27, 38, 27, 0.6) 0%, transparent 100%);
  color: var(--c-canvas-white);
  transition: background var(--transition-med);
}

.site-header.dark {
  background: transparent;
  color: var(--c-forest-deep);
}

.site-header .logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  font-variation-settings: 'opsz' 36, 'wght' 300;
  transition: transform var(--transition-fast);
}

.site-header .logo:hover {
  transform: scale(1.02);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.main-nav a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
  padding-bottom: 0.25rem;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-snappy);
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.2rem;
  background-color: var(--c-forest-deep);
  color: var(--c-canvas-white);
  border: 1px solid var(--c-forest-deep);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: background-color 0.4s var(--ease-snappy), color 0.4s var(--ease-snappy), transform 0.4s var(--ease-snappy), box-shadow 0.4s var(--ease-snappy), border-color 0.4s var(--ease-snappy);
  cursor: pointer;
  border-radius: 2px;
}

.btn:hover {
  background-color: transparent;
  color: var(--c-forest-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(27, 38, 27, 0.1);
}

.btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(27, 38, 27, 0.1);
}

.btn-ghost {
  background-color: transparent;
  color: var(--c-canvas-white);
  border-color: rgba(253, 253, 252, 0.4);
}

.btn-ghost:hover {
  background-color: var(--c-canvas-white);
  color: var(--c-forest-deep);
  border-color: var(--c-canvas-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Listing Cards */
.listing-card {
  background: var(--c-canvas-white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.6s var(--ease-organic), box-shadow 0.6s var(--ease-organic);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  border-radius: 0;
}

.listing-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 48px rgba(43, 43, 43, 0.08), 0 8px 16px rgba(43, 43, 43, 0.04);
}

.listing-card__image {
  aspect-ratio: 4/3;
  background-color: var(--c-moss-light);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.listing-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-organic);
}

.listing-card:hover .listing-card__image img {
  transform: scale(1.05);
}

.listing-card__image svg {
  width: 40%;
  height: 40%;
  fill: var(--c-oatmeal);
  opacity: 0.7;
  transition: transform var(--transition-slow);
}

.listing-card:hover .listing-card__image svg {
  transform: scale(1.1);
}

.listing-card__content {
  padding: 2.2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.listing-card__category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-gold-muted);
  margin-bottom: 0.75rem;
}

.listing-card__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: color var(--transition-fast);
}

.listing-card:hover .listing-card__title {
  color: var(--c-moss);
}

.listing-card__meta {
  font-size: 0.9rem;
  color: var(--c-moss);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.listing-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: auto;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 1.5rem;
}

.amenity-tag {
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  background: var(--c-oatmeal);
  color: var(--c-charcoal);
  border-radius: 30px;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.listing-card:hover .amenity-tag {
  background: #ebe7de;
}

/* Category Portals */
.portal-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background-color: var(--c-forest-green);
  color: var(--c-canvas-white);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
  border-radius: 0;
  transform: translateZ(0);
}

.portal-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,38,27,0.7) 0%, rgba(27,38,27,0.1) 60%, transparent 100%);
  z-index: 1;
  transition: opacity 0.6s var(--ease-organic);
}

.portal-card:hover::before {
  opacity: 0.8;
}

.portal-card__bg {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 1.2s var(--ease-organic);
}

.portal-card:hover .portal-card__bg {
  transform: scale(1.05);
}

.portal-card__content {
  position: relative;
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.6s var(--ease-organic);
}

.portal-card:hover .portal-card__content {
  transform: translateY(-8px);
}

.portal-card h3 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: var(--c-canvas-white);
  font-variation-settings: 'opsz' 36, 'wght' 300;
}

.portal-card p {
  font-size: 0.95rem;
  color: rgba(253, 253, 252, 0.8);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s var(--ease-organic), transform 0.6s var(--ease-organic);
  transition-delay: 0.1s;
}

.portal-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* Asymmetric Grid for Portals */
.grid-asymmetric {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.grid-asymmetric .portal-card:nth-child(even) {
  margin-top: 4rem;
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--c-moss);
  margin-bottom: 2rem;
}

.breadcrumbs a {
  color: var(--c-forest-deep);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--transition-fast);
}

.breadcrumbs a:hover {
  text-decoration-color: var(--c-gold-muted);
}

.breadcrumbs span.separator {
  margin: 0 0.5rem;
  color: var(--c-misty-blue);
}

/* Stats Strip */
.stats-strip {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--c-canvas-white);
  opacity: 0.9;
  flex-wrap: wrap;
  text-transform: uppercase;
}

.stats-strip span.dot {
  color: var(--c-gold-muted);
  opacity: 0.6;
}

/* Footer */
.site-footer {
  background-color: var(--c-forest-deep);
  color: var(--c-canvas-white);
  padding: 8rem 0 4rem;
  margin-top: 8rem;
  border-top: 1px solid rgba(253, 253, 252, 0.05);
}

.site-footer h4, .site-footer h5 {
  color: var(--c-canvas-white);
}

.site-footer a {
  color: var(--c-misty-blue);
  position: relative;
  display: inline-block;
}

.site-footer a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--c-gold-muted);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-snappy);
}

.site-footer a:hover {
  color: var(--c-canvas-white);
}

.site-footer a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
/* Awwwards Aesthetics Components */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-bento);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.glass-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  box-shadow: var(--shadow-inner);
  border-radius: inherit;
  pointer-events: none;
}

.bento-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.bento-item {
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.bento-item:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow-glow);
}

/* Scroll Reveals */
.gsap-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-organic), transform 1s var(--ease-organic);
}

.gsap-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Styles appended from tractors index.html */

    :root {
      --cream: #F7F3EE;
      --linen: #EDE7DE;
      --warm-stone: #D5CFC5;
      --taupe: #9A9289;
      --slate: #6B6560;
      --charcoal: #3A3632;
      --espresso: #2C2825;
      --burnt-amber: #A67B5B;
      --ember: #C4956A;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--charcoal);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 20px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all 0.4s ease;
    }

    .nav.scrolled {
      background: rgba(247,243,238,0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 2px 20px rgba(44,40,37,0.06);
      padding: 14px 40px;
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 500;
      color: var(--cream);
      text-decoration: none;
      letter-spacing: 1px;
      transition: color 0.4s ease;
    }

    .nav.scrolled .nav-logo { color: var(--espresso); }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      font-size: 14px;
      font-weight: 400;
      color: var(--warm-stone);
      text-decoration: none;
      transition: color 0.3s ease;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 1px;
      background: var(--ember);
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after { width: 100%; }
    .nav-links a:hover { color: var(--cream); }
    .nav.scrolled .nav-links a { color: var(--slate); }
    .nav.scrolled .nav-links a:hover { color: var(--espresso); }

    .nav-cta {
      background: transparent;
      border: 1px solid rgba(247,243,238,0.4);
      color: var(--cream);
      padding: 10px 24px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.5px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: 'DM Sans', sans-serif;
    }

    .nav-cta:hover {
      background: var(--cream);
      color: var(--espresso);
      border-color: var(--cream);
    }

    .nav.scrolled .nav-cta {
      border-color: var(--espresso);
      color: var(--espresso);
    }

    .nav.scrolled .nav-cta:hover {
      background: var(--espresso);
      color: var(--cream);
    }

    .hero {
      position: relative;
      height: 100vh;
      min-height: 700px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(58,54,50,0.15) 0%, rgba(58,54,50,0.55) 100%),
        url('/static/images/luxury-glamping-tent-british-woodland.webp') center/cover no-repeat;
      filter: saturate(0.7) brightness(0.85);
      z-index: 0;
    }

    .hero-mist {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      overflow: hidden;
    }

    .mist-layer {
      position: absolute;
      width: 200%;
      height: 100%;
      background: linear-gradient(90deg, transparent 0%, rgba(247,243,238,0.12) 30%, rgba(247,243,238,0.18) 50%, rgba(247,243,238,0.12) 70%, transparent 100%);
      animation: mistDrift 25s ease-in-out infinite;
    }

    .mist-layer:nth-child(2) {
      animation-delay: -8s;
      opacity: 0.6;
      animation-duration: 35s;
    }

    .mist-layer:nth-child(3) {
      animation-delay: -15s;
      opacity: 0.4;
      animation-duration: 45s;
    }

    @keyframes mistDrift {
      0%, 100% { transform: translateX(-30%); }
      50% { transform: translateX(0%); }
    }

    .ember-particles {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
    }

    .ember {
      position: absolute;
      width: 3px;
      height: 3px;
      background: var(--ember);
      border-radius: 50%;
      opacity: 0;
      animation: emberFloat 8s ease-out infinite;
      box-shadow: 0 0 8px 2px rgba(196,149,106,0.4);
    }

    @keyframes emberFloat {
      0% { opacity: 0; transform: translateY(0) scale(0); }
      10% { opacity: 1; transform: translateY(-20px) scale(1); }
      90% { opacity: 0.6; }
      100% { opacity: 0; transform: translateY(-300px) scale(0.3); }
    }

    .hero-content {
      position: relative;
      z-index: 10;
      text-align: center;
      max-width: 900px;
      padding: 0 24px;
      width: 100%;
    }

    .hero-overline {
      font-family: 'Cormorant Garamond', serif;
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--warm-stone);
      margin-bottom: 24px;
      opacity: 0;
      animation: fadeUp 1s ease 0.3s forwards;
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 6vw, 5.5rem);
      font-weight: 300;
      line-height: 1.1;
      color: var(--cream);
      margin-bottom: 20px;
      opacity: 0;
      animation: fadeUp 1.2s ease 0.5s forwards;
    }

    .hero-title em {
      font-style: italic;
      font-weight: 400;
      color: var(--ember);
    }

    .hero-subtitle {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(0.95rem, 1.5vw, 1.15rem);
      font-weight: 300;
      color: var(--warm-stone);
      max-width: 520px;
      margin: 0 auto 48px;
      line-height: 1.7;
      opacity: 0;
      animation: fadeUp 1s ease 0.7s forwards;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .search-container {
      position: relative;
      max-width: 720px;
      margin: 0 auto 40px;
      opacity: 0;
      animation: fadeUp 1s ease 0.9s forwards;
    }

    .search-bar {
      display: flex;
      align-items: center;
      background: rgba(247,243,238,0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 16px;
      padding: 6px 6px 6px 24px;
      box-shadow: 0 20px 60px rgba(44,40,37,0.25), 0 0 0 1px rgba(247,243,238,0.1);
      transition: box-shadow 0.4s ease;
    }

    .search-bar:focus-within {
      box-shadow: 0 24px 70px rgba(44,40,37,0.3), 0 0 0 2px var(--ember);
    }

    .search-icon {
      width: 20px;
      height: 20px;
      color: var(--taupe);
      flex-shrink: 0;
      margin-right: 16px;
    }

    .search-input {
      flex: 1;
      border: none;
      background: transparent;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 400;
      color: var(--charcoal);
      outline: none;
      padding: 14px 0;
    }

    .search-input::placeholder {
      color: var(--taupe);
      font-weight: 300;
    }

    .search-divider {
      width: 1px;
      height: 28px;
      background: var(--warm-stone);
      margin: 0 16px;
      flex-shrink: 0;
    }

    .search-type {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      border-radius: 10px;
      cursor: pointer;
      transition: background 0.3s ease;
      white-space: nowrap;
    }

    .search-type:hover { background: var(--linen); }

    .search-type span {
      font-size: 14px;
      color: var(--slate);
      font-weight: 400;
    }

    .search-btn {
      background: var(--espresso);
      color: var(--cream);
      border: none;
      padding: 14px 28px;
      border-radius: 12px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.5px;
      cursor: pointer;
      transition: all 0.3s ease;
      flex-shrink: 0;
    }

    .search-btn:hover {
      background: var(--charcoal);
      transform: translateY(-1px);
    }

    .search-autocomplete {
      position: absolute;
      top: calc(100% + 12px);
      left: 0; right: 0;
      background: rgba(247,243,238,0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 16px;
      padding: 12px;
      box-shadow: 0 20px 60px rgba(44,40,37,0.15);
      opacity: 0;
      transform: translateY(-8px);
      pointer-events: none;
      transition: all 0.3s ease;
      z-index: 100;
    }

    .search-autocomplete.active {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .autocomplete-section { padding: 8px 12px; }

    .autocomplete-label {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--taupe);
      margin-bottom: 8px;
    }

    .autocomplete-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 12px;
      border-radius: 10px;
      cursor: pointer;
      transition: background 0.2s ease;
    }

    .autocomplete-item:hover { background: var(--linen); }

    .autocomplete-item svg {
      width: 18px;
      height: 18px;
      color: var(--taupe);
      flex-shrink: 0;
    }

    .autocomplete-item span {
      font-size: 14px;
      color: var(--charcoal);
    }

    .autocomplete-item small {
      margin-left: auto;
      font-size: 12px;
      color: var(--taupe);
    }

    .hero-3d {
      position: absolute;
      right: 5%;
      bottom: 10%;
      width: 320px;
      height: 320px;
      z-index: 5;
      pointer-events: none;
      opacity: 0;
      animation: fadeUp 1.5s ease 1.2s forwards;
    }

    .tent-scene {
      width: 100%;
      height: 100%;
      perspective: 800px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .tent {
      width: 180px;
      height: 200px;
      position: relative;
      transform-style: preserve-3d;
      animation: tentRotate 20s ease-in-out infinite;
      transition: transform 0.3s ease-out;
    }

    @keyframes tentRotate {
      0%, 100% { transform: rotateY(-8deg) rotateX(2deg); }
      50% { transform: rotateY(8deg) rotateX(-1deg); }
    }

    .tent-body {
      position: absolute;
      width: 100%;
      height: 100%;
      clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
      background: linear-gradient(135deg, #C4A882 0%, #A89070 50%, #8B7355 100%);
      box-shadow: inset -20px 0 40px rgba(0,0,0,0.2), inset 20px 0 20px rgba(255,255,255,0.1);
    }

    .tent-body::before {
      content: '';
      position: absolute;
      inset: 0;
      clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
      background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.15) 100%);
    }

    .tent-flap {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 80px;
      background: linear-gradient(180deg, #D4B896 0%, #B89A78 100%);
      clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 15% 100%);
      box-shadow: inset 0 10px 20px rgba(0,0,0,0.1);
    }

    .tent-glow {
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 140px;
      height: 30px;
      background: radial-gradient(ellipse, rgba(196,149,106,0.4) 0%, transparent 70%);
      filter: blur(8px);
      animation: glowPulse 4s ease-in-out infinite;
    }

    @keyframes glowPulse {
      0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
      50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
    }

    .tent-pole {
      position: absolute;
      top: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      height: 12px;
      background: linear-gradient(180deg, #8B7355, #6B5B45);
      border-radius: 2px;
    }

    .tent-rope {
      position: absolute;
      bottom: 0;
      width: 1px;
      height: 30px;
      background: rgba(247,243,238,0.3);
    }

    .tent-rope.left { left: 15%; transform: rotate(-15deg); transform-origin: top; }
    .tent-rope.right { right: 15%; transform: rotate(15deg); transform-origin: top; }

    .social-proof {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      align-items: center;
      gap: 32px;
      padding: 16px 32px;
      background: rgba(247,243,238,0.08);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-radius: 100px;
      border: 1px solid rgba(247,243,238,0.1);
      opacity: 0;
      animation: fadeUp 1s ease 1.4s forwards;
    }

    .social-proof-item {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .social-proof-item .stars { display: flex; gap: 2px; }

    .social-proof-item .stars svg {
      width: 14px;
      height: 14px;
      color: var(--ember);
      fill: var(--ember);
    }

    .social-proof-item span {
      font-size: 13px;
      color: var(--warm-stone);
      font-weight: 300;
    }

    .social-proof-item strong {
      color: var(--cream);
      font-weight: 500;
    }

    .social-proof-divider {
      width: 1px;
      height: 20px;
      background: rgba(247,243,238,0.15);
    }

    .section {
      padding: 100px 24px;
      max-width: 1280px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .section-overline {
      font-family: 'Cormorant Garamond', serif;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--burnt-amber);
      margin-bottom: 16px;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 300;
      color: var(--espresso);
      line-height: 1.2;
    }

    .section-title em {
      font-style: italic;
      font-weight: 400;
      color: var(--burnt-amber);
    }

    .section-subtitle {
      font-size: 16px;
      font-weight: 300;
      color: var(--taupe);
      max-width: 560px;
      margin: 16px auto 0;
      line-height: 1.7;
    }

    .featured-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 28px;
    }

    .featured-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      cursor: pointer;
      background: var(--linen);
      transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
    }

    .card-link {
      position: absolute;
      inset: 0;
      z-index: 1;
    }

    .featured-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 60px rgba(44,40,37,0.12);
    }

    .featured-card .card-image {
      position: relative;
      height: 320px;
      overflow: hidden;
    }

    .featured-card .card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), filter 0.5s ease;
      filter: saturate(0.85) brightness(0.95);
    }

    .featured-card:hover .card-image img {
      transform: scale(1.08);
      filter: saturate(0.95) brightness(1);
    }

    .featured-card .card-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(44,40,37,0.6) 100%);
      transition: opacity 0.5s ease;
    }

    .featured-card:hover .card-image::after { opacity: 0.8; }

    .card-badge {
      position: absolute;
      top: 20px; left: 20px;
      background: rgba(247,243,238,0.92);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      padding: 6px 14px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.5px;
      color: var(--espresso);
      z-index: 2;
      transition: transform 0.3s ease;
    }

    .featured-card:hover .card-badge { transform: translateY(-2px); }

    .card-favourite {
      position: absolute;
      top: 20px; right: 20px;
      width: 40px;
      height: 40px;
      background: rgba(247,243,238,0.92);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 2;
      transition: all 0.3s ease;
      border: none;
    }

    .card-favourite:hover {
      background: var(--cream);
      transform: scale(1.1);
    }

    .card-favourite svg {
      width: 18px;
      height: 18px;
      color: var(--taupe);
      transition: color 0.3s ease, fill 0.3s ease;
    }

    .card-favourite:hover svg,
    .card-favourite.active svg {
      color: #C75B5B;
      fill: #C75B5B;
    }

    .card-content {
      padding: 24px;
      position: relative;
      background: var(--cream);
    }

    .card-location {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--taupe);
      margin-bottom: 8px;
    }

    .card-location svg {
      width: 14px;
      height: 14px;
      color: var(--burnt-amber);
    }

    .card-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 500;
      color: var(--espresso);
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .card-desc {
      font-size: 14px;
      color: var(--slate);
      line-height: 1.6;
      margin-bottom: 16px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 16px;
      border-top: 1px solid var(--linen);
    }

    .card-rating {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .card-rating svg {
      width: 14px;
      height: 14px;
      color: var(--ember);
      fill: var(--ember);
    }

    .card-rating span {
      font-size: 14px;
      font-weight: 500;
      color: var(--charcoal);
    }

    .card-rating small {
      font-size: 12px;
      color: var(--taupe);
      font-weight: 300;
    }

    .card-price { text-align: right; }

    .card-price .from {
      font-size: 11px;
      color: var(--taupe);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .card-price .amount {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 600;
      color: var(--espresso);
    }

    .card-price .night {
      font-size: 12px;
      color: var(--taupe);
    }

    .regions-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .region-card {
      position: relative;
      height: 380px;
      border-radius: 20px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .region-card:hover { transform: translateY(-6px); }

    .region-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), filter 0.5s ease;
      filter: saturate(0.75) brightness(0.9);
    }

    .region-card:hover img {
      transform: scale(1.1);
      filter: saturate(0.9) brightness(0.95);
    }

    .region-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 30%, rgba(44,40,37,0.7) 100%);
      transition: opacity 0.5s ease;
    }

    .region-card:hover::after { opacity: 0.85; }

    .region-content {
      position: absolute;
      bottom: 0;
      left: 0; right: 0;
      padding: 28px;
      z-index: 2;
      transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .region-card:hover .region-content { transform: translateY(-4px); }

    .region-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      font-weight: 500;
      color: var(--cream);
      margin-bottom: 4px;
    }

    .region-count {
      font-size: 14px;
      color: var(--warm-stone);
      font-weight: 300;
    }

    .categories-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px;
    }

    .category-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      padding: 32px 16px;
      background: var(--linen);
      border-radius: 20px;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      border: 1px solid transparent;
    }

    .category-card:hover {
      background: var(--cream);
      border-color: var(--warm-stone);
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(44,40,37,0.08);
    }

    .category-icon {
      width: 56px;
      height: 56px;
      background: var(--cream);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s ease;
    }

    .category-card:hover .category-icon { background: var(--espresso); }

    .category-icon svg {
      width: 24px;
      height: 24px;
      color: var(--espresso);
      transition: color 0.4s ease;
    }

    .category-card:hover .category-icon svg { color: var(--cream); }

    .category-name {
      font-size: 14px;
      font-weight: 500;
      color: var(--charcoal);
      text-align: center;
    }

    .category-count {
      font-size: 12px;
      color: var(--taupe);
      font-weight: 300;
    }

    .trust-section {
      background: var(--espresso);
      border-radius: 32px;
      padding: 80px 60px;
      position: relative;
      overflow: hidden;
    }

    .trust-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(196,149,106,0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .trust-left .section-overline { color: var(--ember); }

    .trust-left .section-title {
      color: var(--cream);
      text-align: left;
      margin-bottom: 20px;
    }

    .trust-left .section-subtitle {
      color: var(--warm-stone);
      text-align: left;
      margin: 0 0 32px;
    }

    .trust-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .trust-stat { text-align: center; }

    .trust-stat .number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px;
      font-weight: 600;
      color: var(--ember);
      line-height: 1;
    }

    .trust-stat .label {
      font-size: 12px;
      color: var(--taupe);
      margin-top: 8px;
      letter-spacing: 0.5px;
    }

    .trust-right {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .trust-image {
      border-radius: 16px;
      overflow: hidden;
      aspect-ratio: 4/5;
    }

    .trust-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(0.7) brightness(0.85);
      transition: all 0.6s ease;
    }

    .trust-image:hover img {
      filter: saturate(0.85) brightness(0.9);
      transform: scale(1.05);
    }

    .trust-image:nth-child(2) { margin-top: 32px; }

    .footer-preview {
      background: var(--espresso);
      padding: 60px 24px 40px;
      text-align: center;
    }

    .footer-preview p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 300;
      font-style: italic;
      color: var(--warm-stone);
      max-width: 600px;
      margin: 0 auto 32px;
      line-height: 1.5;
    }

    .footer-preview .cta-btn {
      display: inline-block;
      background: var(--ember);
      color: var(--espresso);
      padding: 16px 40px;
      border-radius: 100px;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.5px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .footer-preview .cta-btn:hover {
      background: var(--cream);
      transform: translateY(-2px);
    }

    .footer-bottom {
      margin-top: 48px;
      padding-top: 24px;
      border-top: 1px solid rgba(247,243,238,0.08);
      font-size: 12px;
      color: var(--taupe);
      letter-spacing: 0.5px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1024px) {
      .regions-grid { grid-template-columns: repeat(2, 1fr); }
      .categories-grid { grid-template-columns: repeat(3, 1fr); }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav { padding: 16px 20px; }
      .hero { min-height: 600px; }
      .hero-3d { display: none; }
      .search-bar { flex-wrap: wrap; padding: 12px; }
      .search-divider { display: none; }
      .search-type { width: 100%; justify-content: center; padding: 8px; margin-top: 4px; }
      .search-btn { width: 100%; margin-top: 8px; }
      .social-proof { flex-wrap: wrap; gap: 16px; padding: 12px 20px; bottom: 20px; }
      .social-proof-divider { display: none; }
      .section { padding: 60px 20px; }
      .featured-grid { grid-template-columns: 1fr; }
      .trust-grid { grid-template-columns: 1fr; gap: 40px; }
      .trust-section { padding: 60px 32px; }
      .trust-stats { grid-template-columns: 1fr; gap: 16px; }
      .trust-right { grid-template-columns: 1fr; }
      .trust-image:nth-child(2) { margin-top: 0; }
    }

    @media (max-width: 640px) {
      .categories-grid { grid-template-columns: repeat(2, 1fr); }
    }
  