:root {
    /* Karisma brand colors */
    --navy: #1C3451;       /* primary — 45% */
    --terracotta: #DC8362; /* accent — 35% */
    --cream: #F9F4E9;      /* paper — 10% */
    --ink: #282828;        /* dark — 10% */
    --navy-soft: #2a4566;
    --terra-soft: #e49c7f;
    --paper: #FDFAF3;
    --ink-soft: #5a5a5a;
    --line: rgba(28, 52, 81, 0.15);
    --line-dark: rgba(249, 244, 233, 0.2);
    --shadow: 0 30px 80px rgba(28, 52, 81, 0.18);
    --display: "Kanit", -apple-system, "Helvetica Neue", Arial, sans-serif;
    --sans: "Kanit", -apple-system, "Helvetica Neue", Arial, sans-serif;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.65;
    font-weight: 300;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  h1, h2, h3, h4 {
    font-family: var(--display);
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--navy);
    line-height: 1.15;
  }
  h1 { font-size: clamp(2.7rem, 7.5vw, 5.8rem); line-height: 1.05; font-weight: 400; letter-spacing: -0.02em; }
  h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 500; }
  h3 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); font-weight: 500; }
  p { color: var(--ink-soft); font-weight: 300; }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  .container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
  .eyebrow {
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 500;
    margin-bottom: 1.25rem;
    display: inline-block;
  }
  .btn {
    display: inline-block;
    padding: 16px 34px;
    border: 1px solid var(--navy);
    color: var(--navy);
    font-family: var(--sans);
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.35s ease;
  }
  .btn:hover { background: var(--navy); color: var(--cream); }
  .btn-light { border-color: var(--cream); color: var(--cream); }
  .btn-light:hover { background: var(--cream); color: var(--navy); }
  .btn-filled { background: var(--terracotta); color: var(--cream); border-color: var(--terracotta); }
  .btn-filled:hover { background: var(--navy); border-color: var(--navy); color: var(--cream); }

  /* LOGO — brand-book artwork (cream on navy, navy on cream) */
  .logo {
    display: inline-flex; align-items: center;
    line-height: 1; position: relative;
  }
  .logo-img {
    height: 52px; width: auto; display: block;
    transition: opacity 0.4s ease, height 0.4s ease;
  }
  .logo-img.logo-navy { display: none; }
  nav.scrolled .logo-img { height: 42px; }
  nav.scrolled .logo-img.logo-cream { display: none; }
  nav.scrolled .logo-img.logo-navy  { display: block; }
  footer .logo-img { height: 56px; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 24px 40px;
    display: flex; justify-content: space-between; align-items: center;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
  }
  nav.scrolled {
    background: rgba(249, 244, 233, 0.94);
    backdrop-filter: blur(14px);
    padding: 16px 40px;
    border-bottom: 1px solid var(--line);
  }
  /* legacy logo text fallback (kept for graceful degradation if image fails) */
  .logo-text { display: none; }
  .nav-links {
    display: flex; gap: 36px; list-style: none;
  }
  .nav-links a {
    font-size: 0.72rem; letter-spacing: 0.24em;
    text-transform: uppercase; color: var(--cream);
    font-weight: 400; transition: color 0.4s ease, opacity 0.3s;
    opacity: 0.9;
  }
  nav.scrolled .nav-links a { color: var(--navy); }
  .nav-links a:hover { opacity: 1; color: var(--terracotta); }
  nav.scrolled .nav-links a:hover { color: var(--terracotta); }
  .nav-cta {
    padding: 10px 22px; border: 1px solid var(--cream);
    color: var(--cream); transition: all 0.4s ease;
    background: transparent;
  }
  nav.scrolled .nav-cta { border-color: var(--navy); color: var(--navy); }
  .nav-cta:hover { background: var(--terracotta); border-color: var(--terracotta); color: var(--cream); }
  nav.scrolled .nav-cta:hover { background: var(--terracotta); border-color: var(--terracotta); color: var(--cream); }

  /* HERO */
  .hero {
    position: relative; height: 100vh; min-height: 720px;
    overflow: hidden; color: var(--cream);
    display: flex; align-items: flex-end;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: -1;
    background-image: url('images/hero.jpg');
    background-size: cover; background-position: center;
  }
  .hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(28,52,81,0.55) 0%, rgba(28,52,81,0.2) 40%, rgba(28,52,81,0.75) 100%);
  }
  .hero-content {
    position: relative; padding: 0 40px 80px; max-width: 1280px; width: 100%; margin: 0 auto;
  }
  .hero-content .eyebrow { color: var(--terra-soft); }
  .hero h1 { color: var(--cream); max-width: 960px; font-weight: 300; }
  .hero h1 em { font-style: normal; color: var(--terra-soft); font-weight: 500; }
  .hero-meta {
    display: flex; gap: 48px; margin-top: 40px;
    padding-top: 32px; border-top: 1px solid rgba(249,244,233,0.3);
    max-width: 820px; flex-wrap: wrap;
  }
  .hero-meta div { color: var(--cream); }
  .hero-meta span {
    display: block; font-size: 0.68rem;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--terra-soft); margin-bottom: 6px;
    font-weight: 400;
  }
  .hero-meta strong { font-family: var(--display); font-weight: 500; font-size: 1.4rem; letter-spacing: 0; }

  .scroll-hint {
    position: absolute; bottom: 40px; right: 40px;
    color: var(--cream); font-size: 0.7rem;
    letter-spacing: 0.3em; text-transform: uppercase;
    writing-mode: vertical-rl; opacity: 0.75;
  }

  /* BRAND pattern detail */
  .pattern-bg {
    position: absolute; inset: 0; z-index: 0;
    opacity: 0.04; pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'><g fill='none' stroke='%23DC8362' stroke-width='2'><path d='M120 40 Q170 70 120 120 Q70 70 120 40 Z'/><path d='M200 120 Q170 170 120 120 Q170 70 200 120 Z'/><path d='M120 200 Q70 170 120 120 Q170 170 120 200 Z'/><path d='M40 120 Q70 70 120 120 Q70 170 40 120 Z'/></g></svg>");
    background-size: 240px 240px;
  }

  /* SECTIONS */
  section { padding: 140px 0; }
  .section-header { margin-bottom: 80px; max-width: 720px; }
  .section-header.center { margin: 0 auto 80px; text-align: center; }
  .section-header p { margin-top: 24px; font-size: 1.05rem; max-width: 600px; }
  .section-header.center p { margin-left: auto; margin-right: auto; }

  /* OVERVIEW */
  .overview { background: var(--cream); position: relative; overflow: hidden; }
  .overview::before {
    content: ''; position: absolute; right: -120px; top: -120px;
    width: 420px; height: 420px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%23DC8362' stroke-width='1.5' stroke-opacity='0.35'><path d='M100 20 Q150 55 100 100 Q50 55 100 20 Z'/><path d='M180 100 Q145 150 100 100 Q145 50 180 100 Z'/><path d='M100 180 Q50 145 100 100 Q150 145 100 180 Z'/><path d='M20 100 Q55 50 100 100 Q55 150 20 100 Z'/></g></svg>");
    background-size: contain; background-repeat: no-repeat;
    pointer-events: none;
  }
  .overview-grid {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 100px; align-items: center;
  }
  .overview-img {
    aspect-ratio: 4/5; overflow: hidden; box-shadow: var(--shadow);
  }
  .overview-img img { width: 100%; height: 100%; object-fit: cover; }
  .overview-text h2 { margin-bottom: 28px; }
  .overview-text p { margin-bottom: 20px; font-size: 1.05rem; }
  .stat-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 48px;
    padding-top: 36px; border-top: 1px solid var(--line);
  }
  .stat-row strong {
    display: block; font-family: var(--display);
    font-size: 2.6rem; font-weight: 500; color: var(--navy);
    line-height: 1; margin-bottom: 8px; letter-spacing: -0.01em;
  }
  .stat-row span {
    font-size: 0.72rem; letter-spacing: 0.24em;
    text-transform: uppercase; color: var(--terracotta);
    font-weight: 500;
  }

  /* GALLERY */
  .gallery-grid {
    display: grid; grid-template-columns: repeat(12, 1fr);
    gap: 16px;
  }
  .gallery-grid .tile { overflow: hidden; }
  .gallery-grid .tile img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s ease;
  }
  .gallery-grid .tile:hover img { transform: scale(1.04); }
  .t1 { grid-column: span 7; aspect-ratio: 4/3; }
  .t2 { grid-column: span 5; aspect-ratio: 4/3; }
  .t3 { grid-column: span 5; aspect-ratio: 4/3; }
  .t4 { grid-column: span 7; aspect-ratio: 4/3; }
  .t5 { grid-column: span 4; aspect-ratio: 3/4; }
  .t6 { grid-column: span 4; aspect-ratio: 3/4; }
  .t7 { grid-column: span 4; aspect-ratio: 3/4; }

  /* VILLAS (listings) */
  .villas { background: var(--paper); }
  .villa-groups { display: grid; gap: 48px; }
  .villa-card-link {
    display: block; color: inherit; text-decoration: none;
    outline: none; height: 100%;
  }
  .villa-card-link:focus-visible .villa-card {
    box-shadow: 0 0 0 2px var(--terracotta), var(--shadow);
  }
  .villa-card-link > .villa-card { height: 100%; cursor: pointer; }
  .villa-card .link { cursor: pointer; }
  .villa-card-link:hover .villa-card .link { color: var(--navy); border-color: var(--navy); }
  .villa-group h3 {
    font-size: 0.85rem; font-family: var(--sans);
    letter-spacing: 0.3em; text-transform: uppercase;
    font-weight: 500; color: var(--terracotta);
    padding-bottom: 18px; margin-bottom: 32px;
    border-bottom: 1px solid var(--line);
  }
  .villa-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .villa-card {
    background: var(--cream);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex; flex-direction: column;
    border: 1px solid transparent;
  }
  .villa-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--terracotta); }
  .villa-card .photo {
    aspect-ratio: 4/3; overflow: hidden;
  }
  .villa-card .photo img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s ease;
  }
  .villa-card:hover .photo img { transform: scale(1.05); }
  .villa-card .body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
  .villa-card .code {
    font-size: 0.7rem; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--terracotta);
    margin-bottom: 10px; font-weight: 500;
  }
  .villa-card h4 {
    font-family: var(--display); font-size: 1.5rem;
    font-weight: 500; margin-bottom: 10px; color: var(--navy);
    letter-spacing: 0.02em;
  }
  .villa-card .meta {
    display: flex; gap: 14px; flex-wrap: wrap;
    margin-bottom: 16px; font-size: 0.82rem;
    color: var(--ink-soft);
  }
  .villa-card .meta span::after { content: ' · '; margin-left: 10px; color: var(--line); }
  .villa-card .meta span:last-child::after { display: none; }
  .villa-card p { font-size: 0.95rem; margin-bottom: 22px; flex: 1; }
  .villa-card .footer-row {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 20px; border-top: 1px solid var(--line);
  }
  .villa-card .price {
    font-family: var(--display); font-size: 1.4rem;
    font-weight: 500;
    color: var(--navy); letter-spacing: -0.01em;
    display: inline-flex; align-items: baseline; gap: 4px;
    white-space: nowrap;
  }
  .villa-card .price .range {
    font-size: 1rem; font-weight: 400;
    color: var(--ink-soft); letter-spacing: -0.005em;
  }
  .villa-card .price small {
    font-family: var(--sans); font-size: 0.62rem;
    color: var(--ink-soft); letter-spacing: 0.15em;
    text-transform: uppercase; margin-left: 6px; font-weight: 400;
  }
  .villa-card .link {
    font-size: 0.72rem; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--terracotta);
    border-bottom: 1px solid var(--terracotta);
    padding-bottom: 4px; font-weight: 500;
    transition: color 0.3s, border-color 0.3s;
  }
  .villa-card .link:hover { color: var(--navy); border-color: var(--navy); }

  /* AMENITIES */
  .amenities { background: var(--cream); }
  .amenities-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  }
  .amenities-list { list-style: none; }
  .amenities-list li {
    padding: 28px 0; border-bottom: 1px solid var(--line);
    display: grid; grid-template-columns: 60px 1fr; gap: 24px; align-items: start;
  }
  .amenities-list li:last-child { border-bottom: none; }
  .amenities-list .num {
    font-family: var(--display); font-size: 1.4rem;
    font-weight: 500;
    color: var(--terracotta); letter-spacing: 0.02em;
  }
  .amenities-list h4 {
    font-size: 1.25rem; margin-bottom: 8px; font-family: var(--display);
    font-weight: 500;
    color: var(--navy); letter-spacing: -0.005em;
  }
  .amenities-list p { font-size: 0.95rem; }
  .amenities-img {
    aspect-ratio: 3/4; overflow: hidden; box-shadow: var(--shadow);
  }
  .amenities-img img { width: 100%; height: 100%; object-fit: cover; }

  /* RATES banner */
  .rates-banner {
    background: var(--navy); color: var(--cream);
    padding: 120px 0; text-align: center;
    position: relative; overflow: hidden;
  }
  .rates-banner .pattern-bg { opacity: 0.06; }
  .rates-banner > .container { position: relative; z-index: 1; }
  .rates-banner h2 { color: var(--cream); }
  .rates-banner .eyebrow { color: var(--terracotta); }
  .rates-banner p { color: rgba(249,244,233,0.78); max-width: 620px; margin: 24px auto 40px; font-size: 1.05rem; }
  .rate-chips {
    display: flex; justify-content: center; gap: 64px;
    margin: 56px 0 48px; flex-wrap: wrap;
  }
  .rate-chip strong {
    display: block; font-family: var(--display);
    font-size: 1.9rem; font-weight: 500; line-height: 1;
    color: var(--terracotta); letter-spacing: -0.01em;
    white-space: nowrap;
  }
  .rate-chip span {
    display: block; font-size: 0.72rem;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: rgba(249,244,233,0.7); margin-top: 12px;
  }

  /* LOCATION */
  .location { background: var(--paper); }
  .location-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .location-map {
    aspect-ratio: 1/1; background: var(--navy);
    position: relative; overflow: hidden; box-shadow: var(--shadow);
  }
  .location-map iframe, .location-map img {
    width: 100%; height: 100%; display: block;
    border: 0;
  }
  .map-link {
    position: absolute; left: 20px; bottom: 20px;
    background: var(--cream); color: var(--navy);
    padding: 10px 18px;
    font-size: 0.7rem; letter-spacing: 0.22em;
    text-transform: uppercase; font-weight: 500;
    box-shadow: 0 8px 24px rgba(28,52,81,0.25);
    transition: all 0.3s ease;
    z-index: 2;
  }
  .map-link:hover {
    background: var(--terracotta); color: var(--cream);
  }
  .location-text h2 { margin-bottom: 24px; }
  .location-text > p { margin-bottom: 36px; font-size: 1.05rem; }
  .nearby { list-style: none; border-top: 1px solid var(--line); }
  .nearby li {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 0; border-bottom: 1px solid var(--line);
  }
  .nearby span:first-child {
    font-family: var(--display); font-size: 1.1rem; color: var(--navy);
    font-weight: 500; letter-spacing: -0.005em;
  }
  .nearby span:last-child {
    font-size: 0.75rem; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--terracotta); font-weight: 500;
  }

  /* REVIEWS */
  .reviews { background: var(--cream); }
  .review-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 40px;
  }
  .review {
    padding: 40px 0; border-top: 1px solid var(--line);
  }
  .review .stars {
    color: var(--terracotta); letter-spacing: 0.15em;
    font-size: 1rem; margin-bottom: 24px;
  }
  .review blockquote {
    font-family: var(--display); font-size: 1.2rem; line-height: 1.55;
    font-weight: 400; color: var(--navy); margin-bottom: 32px;
    letter-spacing: -0.005em;
  }
  .review-author {
    font-size: 0.74rem; letter-spacing: 0.24em;
    text-transform: uppercase; color: var(--terracotta);
    font-weight: 500;
  }
  .review-author small {
    display: block; margin-top: 6px; color: var(--ink-soft);
    letter-spacing: 0.12em; font-weight: 300;
  }

  /* HOST */
  .host { background: var(--paper); }
  .host-grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; align-items: center;
  }
  .host-img {
    aspect-ratio: 4/5; overflow: hidden; box-shadow: var(--shadow);
  }
  .host-img img { width: 100%; height: 100%; object-fit: cover; }
  .host-text h2 { margin-bottom: 28px; }
  .host-text p { margin-bottom: 20px; font-size: 1.05rem; }
  .host-sign { margin-top: 40px; }
  .host-sign-name {
    font-family: var(--display);
    font-size: 1.6rem; color: var(--terracotta);
    font-weight: 500; letter-spacing: -0.005em;
  }
  .host-sign small {
    display: block; font-family: var(--sans); font-style: normal;
    font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--navy); margin-top: 6px; font-weight: 500;
  }

  /* CONTACT */
  .contact { background: var(--cream); }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  }
  .contact-info h2 { margin-bottom: 24px; }
  .contact-info > p { margin-bottom: 40px; font-size: 1.05rem; }
  .contact-detail { margin-bottom: 32px; }
  .contact-detail span {
    display: block; font-size: 0.7rem;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--terracotta); margin-bottom: 8px; font-weight: 500;
  }
  .contact-detail p {
    font-family: var(--display); font-size: 1.2rem; color: var(--navy);
    font-weight: 500; letter-spacing: -0.005em;
  }
  .socials { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
  .socials a {
    font-size: 0.72rem; letter-spacing: 0.2em;
    text-transform: uppercase; padding: 8px 16px;
    border: 1px solid var(--navy); color: var(--navy);
    font-weight: 500; transition: all 0.3s;
  }
  .socials a:hover { background: var(--terracotta); border-color: var(--terracotta); color: var(--cream); }
  form { display: grid; gap: 22px; }
  .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  label {
    display: block; font-size: 0.7rem;
    letter-spacing: 0.26em; text-transform: uppercase;
    color: var(--terracotta); margin-bottom: 10px; font-weight: 500;
  }
  input, textarea, select {
    width: 100%; padding: 14px 0; background: transparent;
    border: none; border-bottom: 1px solid var(--line);
    font-family: var(--sans); font-size: 1rem; color: var(--navy);
    outline: none; transition: border-color 0.3s;
    font-weight: 300;
  }
  input:focus, textarea:focus, select:focus {
    border-bottom-color: var(--terracotta);
  }
  textarea { resize: vertical; min-height: 90px; }
  form button { justify-self: start; margin-top: 12px; }

  /* FOOTER */
  footer {
    background: var(--navy); color: var(--cream);
    padding: 100px 0 40px;
    position: relative; overflow: hidden;
  }
  footer .pattern-bg { opacity: 0.05; }
  footer > .container { position: relative; z-index: 1; }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
    margin-bottom: 60px; padding-bottom: 60px;
    border-bottom: 1px solid rgba(249,244,233,0.15);
  }
  footer h4 {
    color: var(--terracotta); font-family: var(--sans);
    font-size: 0.72rem; letter-spacing: 0.28em;
    text-transform: uppercase; font-weight: 500; margin-bottom: 24px;
  }
  footer .logo { color: var(--cream); margin-bottom: 24px; display: inline-flex; }
  footer p { color: rgba(249,244,233,0.7); font-size: 0.92rem; }
  footer ul { list-style: none; }
  footer ul li { margin-bottom: 12px; color: rgba(249,244,233,0.7); font-size: 0.92rem; }
  footer ul a {
    color: rgba(249,244,233,0.7); font-size: 0.92rem;
    transition: color 0.3s;
  }
  footer ul a:hover { color: var(--terracotta); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.74rem; color: rgba(249,244,233,0.5);
    letter-spacing: 0.2em; text-transform: uppercase;
  }

  /* ========== VILLA DETAIL PAGES ========== */
  .villa-hero {
    position: relative; height: 80vh; min-height: 620px;
    overflow: hidden; color: var(--cream);
    display: flex; align-items: flex-end;
  }
  .villa-hero-bg {
    position: absolute; inset: 0; z-index: -1;
    background-size: cover; background-position: center;
  }
  .villa-hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(28,52,81,0.4) 0%, rgba(28,52,81,0.15) 40%, rgba(28,52,81,0.8) 100%);
  }
  .villa-hero .hero-content { padding-bottom: 70px; }
  .villa-hero h1 {
    color: var(--cream); font-weight: 400;
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    margin-bottom: 8px; line-height: 1.05;
  }
  .villa-hero .villa-code-label {
    font-family: var(--sans); font-size: 0.72rem;
    letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--terra-soft); font-weight: 500;
    display: inline-block; margin-bottom: 1.25rem;
  }
  .villa-hero .hero-meta { margin-top: 36px; }

  .breadcrumb {
    font-size: 0.68rem; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--terra-soft);
    font-weight: 500; margin-bottom: 24px;
  }
  .breadcrumb a { color: var(--cream); opacity: 0.85; }
  .breadcrumb a:hover { opacity: 1; color: var(--terracotta); }
  .breadcrumb span { opacity: 0.5; margin: 0 10px; }

  .villa-detail { background: var(--paper); }
  .villa-detail-grid {
    display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: start;
  }
  .villa-detail-text h2 { margin-bottom: 24px; }
  .villa-detail-text p { margin-bottom: 20px; font-size: 1.05rem; }
  .villa-spec-list {
    list-style: none; margin-top: 36px;
    border-top: 1px solid var(--line);
  }
  .villa-spec-list li {
    display: grid; grid-template-columns: 160px 1fr;
    gap: 24px; padding: 18px 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
  }
  .villa-spec-list .label {
    font-size: 0.7rem; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--terracotta);
    font-weight: 500;
  }
  .villa-spec-list .value {
    font-family: var(--display); color: var(--navy);
    font-size: 1.1rem; font-weight: 500;
  }

  .villa-booking-card {
    background: var(--cream); padding: 40px 36px;
    box-shadow: var(--shadow); position: sticky; top: 100px;
    border: 1px solid var(--line);
  }
  .villa-booking-card .eyebrow { margin-bottom: 12px; }
  .villa-booking-card .price-large {
    font-family: var(--display); font-size: 2.2rem;
    color: var(--navy); letter-spacing: -0.01em;
    font-weight: 500; line-height: 1; margin-bottom: 8px;
    white-space: nowrap;
  }
  .villa-booking-card .price-large .range {
    color: var(--ink-soft); font-weight: 400; font-size: 1.4rem;
  }
  .villa-booking-card .per-night {
    font-size: 0.7rem; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--ink-soft);
    font-weight: 400; margin-bottom: 28px; display: block;
  }
  .villa-booking-card ul {
    list-style: none; margin-bottom: 28px;
    border-top: 1px solid var(--line);
  }
  .villa-booking-card ul li {
    padding: 14px 0; border-bottom: 1px solid var(--line);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.88rem; color: var(--ink-soft);
  }
  .villa-booking-card ul li strong {
    font-family: var(--display); color: var(--navy);
    font-weight: 500; font-size: 0.95rem;
  }
  .villa-booking-card .btn { width: 100%; text-align: center; }
  .villa-booking-card .btn + .btn { margin-top: 10px; }
  .villa-booking-card .quick-line {
    margin-top: 22px; padding-top: 20px;
    border-top: 1px solid var(--line);
    font-size: 0.78rem; color: var(--ink-soft);
    line-height: 1.6;
  }
  .villa-booking-card .quick-line a {
    color: var(--navy); border-bottom: 1px solid var(--line);
  }
  .villa-booking-card .quick-line a:hover {
    color: var(--terracotta); border-color: var(--terracotta);
  }

  .villa-gallery { background: var(--cream); }
  .villa-gallery-grid {
    display: grid; grid-template-columns: repeat(6, 1fr);
    gap: 14px;
  }
  .villa-gallery-grid .tile { overflow: hidden; background: var(--paper); }
  .villa-gallery-grid .tile img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s ease;
  }
  .villa-gallery-grid .tile:hover img { transform: scale(1.04); }
  .villa-gallery-grid .v1 { grid-column: span 4; aspect-ratio: 4/3; }
  .villa-gallery-grid .v2 { grid-column: span 2; aspect-ratio: 3/4; }
  .villa-gallery-grid .v3 { grid-column: span 2; aspect-ratio: 3/4; }
  .villa-gallery-grid .v4 { grid-column: span 2; aspect-ratio: 3/4; }
  .villa-gallery-grid .v5 { grid-column: span 2; aspect-ratio: 3/4; }
  .villa-gallery-grid .v6 { grid-column: span 6; aspect-ratio: 24/7; }

  .other-villas { background: var(--paper); padding: 120px 0; }
  .other-villas-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .enquire-banner {
    background: var(--navy); color: var(--cream);
    padding: 140px 0; text-align: center;
    position: relative; overflow: hidden;
  }
  .enquire-banner .pattern-bg { opacity: 0.06; }
  .enquire-banner > .container { position: relative; z-index: 1; max-width: 760px; }
  .enquire-banner .eyebrow { color: var(--terracotta); }
  .enquire-banner h2 { color: var(--cream); margin-bottom: 24px; }
  .enquire-banner p {
    color: rgba(249,244,233,0.78); margin-bottom: 36px;
    font-size: 1.05rem;
  }
  .enquire-banner .cta-row {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .container { padding: 0 24px; }
    nav { padding: 18px 24px; }
    .nav-links { display: none; }
    section { padding: 90px 0; }
    .overview-grid, .amenities-layout, .location-grid, .host-grid, .contact-grid {
      grid-template-columns: 1fr; gap: 48px;
    }
    .villa-row, .review-grid { grid-template-columns: 1fr; gap: 20px; }
    .gallery-grid { grid-template-columns: repeat(6, 1fr); }
    .t1, .t4 { grid-column: span 6; }
    .t2, .t3 { grid-column: span 3; }
    .t5, .t6, .t7 { grid-column: span 2; }
    .row-2, .stat-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .hero-content { padding: 0 24px 60px; }
    .hero-meta { gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 16px; }
    .scroll-hint { display: none; }
    .rate-chips { gap: 32px; }
    .villa-detail-grid { grid-template-columns: 1fr; gap: 48px; }
    .villa-booking-card { position: static; }
    .villa-spec-list li { grid-template-columns: 130px 1fr; gap: 16px; }
    .other-villas-row { grid-template-columns: 1fr; gap: 20px; }
    .villa-gallery-grid { grid-template-columns: repeat(4, 1fr); }
    .villa-gallery-grid .v1 { grid-column: span 4; }
    .villa-gallery-grid .v2, .villa-gallery-grid .v3,
    .villa-gallery-grid .v4, .villa-gallery-grid .v5 { grid-column: span 2; }
    .villa-gallery-grid .v6 { grid-column: span 4; aspect-ratio: 3/2; }
    .villa-hero { height: 70vh; min-height: 480px; }
  }
