html { font-size: 16px; -webkit-text-size-adjust: 100%; }
/* Grandview shared stylesheet — extracted from v8 design */
:root {
    --bg:        #F6F1E8;
    --bg-alt:   #EFE8DA;
    --ink:      #1F2A1F;
    --forest:   #2C3A2C;
    --forest-deep: #1A241A;
    --brass:    #A07740;
    --brass-light: #C49A6C;
    --brass-dark: #6E4F22;
    --muted:    #6B6258;
    --rule:     rgba(31, 42, 31, 0.12);
    --gold:     #C9A24F;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400; line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  .serif {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 300; letter-spacing: -0.02em;
    font-variation-settings: "opsz" 144, "SOFT" 50;
  }
  .eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--brass);
  }
  h1, h2, h3 { font-family: 'Fraunces', serif; font-weight: 300; letter-spacing: -0.02em; }
  a { color: inherit; text-decoration: none; }

  .container { max-width: 1380px; margin: 0 auto; padding: 0 48px; }
  @media (max-width: 768px) { .container { padding: 0 24px; } }

  .topbar {
    background: var(--forest-deep); color: var(--bg);
    font-size: 12px; letter-spacing: 0.08em;
    padding: 10px 0; text-align: center;
  }
  .topbar span { opacity: 0.85; }
  .topbar a { color: var(--brass-light); border-bottom: 1px solid rgba(196,154,108,0.4); padding-bottom: 1px; margin-left: 6px; }

  header {
    position: absolute; top: 38px; left: 0; right: 0;
    z-index: 50; color: var(--bg);
    background: rgba(20, 30, 22, 0.62);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(246, 241, 232, 0.06);
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  }
  header > .container { padding-top: 14px; padding-bottom: 14px; }
  .nav { display: flex; align-items: center; justify-content: space-between; }

  /* HEADER LOGO — clean text wordmark only */
  .logo {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    line-height: 1;
    transition: opacity 0.3s ease;
  }
  .logo:hover { opacity: 0.78; }
  .logo-name {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: 26px;
    letter-spacing: 0.04em;
    display: block;
  }
  .logo-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    margin-top: 7px;
    display: block;
    opacity: 0.85;
  }

  /* FOOTER LOGO — uses the real Grandview Property Management mark */
  .footer-logo {
    display: inline-block;
    margin-bottom: 28px;
    transition: opacity 0.3s ease;
  }
  .footer-logo:hover { opacity: 0.85; }
  .footer-logo img {
    width: 180px;
    height: auto;
    display: block;
    /* Logo is dark forest green on transparent — invert/lighten for dark footer bg */
    filter: brightness(0) invert(1);
    opacity: 0.92;
  }
  .nav-links { display: flex; gap: 40px; list-style: none; font-size: 13px; letter-spacing: 0.06em; }
  .nav-links a { padding: 6px 0; transition: color 0.3s ease; }
  .nav-links a:hover { color: var(--brass-light); }
  .nav-cta {
    border: 1px solid rgba(246, 241, 232, 0.4);
    padding: 12px 26px; font-size: 12px;
    letter-spacing: 0.14em; text-transform: uppercase;
    transition: all 0.3s ease;
  }
  .nav-cta:hover { background: var(--brass); border-color: var(--brass); color: var(--bg); }
  /* nav-links display:none lives in the 980px breakpoint block below */

  /* HERO */
  .hero {
    position: relative;
    height: 78vh; min-height: 620px;
    overflow: hidden; color: var(--bg);
  }
  /* Hero slideshow — stacked <picture>, crossfade rotation */
  .hero-slides {
    position: absolute; inset: 0;
    overflow: hidden;
  }
  .hero-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1500ms ease-in-out;
    will-change: opacity;
  }
  .hero-slide.is-active { opacity: 1; }
  .hero-slide picture,
  .hero-slide img {
    display: block;
    width: 100%; height: 100%;
  }
  .hero-slide img {
    object-fit: cover;
    object-position: center;
    /* Subtle saturation + contrast lift — keeps photo color popping under overlay */
    filter: brightness(0.78) saturate(1.18) contrast(1.05);
  }
  /* Overlay: clear in the top 60%, darken only the bottom band
     where headline + sub sit, so legibility stays high without washing color. */
  .hero-overlay {
    position: absolute; inset: 0;
    background:
      linear-gradient(
        180deg,
        rgba(15, 22, 16, 0.32) 0%,
        rgba(15, 22, 16, 0.10) 28%,
        rgba(15, 22, 16, 0.14) 48%,
        rgba(15, 22, 16, 0.55) 78%,
        rgba(15, 22, 16, 0.80) 100%
      );
    pointer-events: none;
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-slide { transition: none; }
  }
  .hero-content {
    position: relative; z-index: 10; height: 100%;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding-bottom: 110px;
  }
  .hero-eyebrow { text-shadow: 0 1px 8px rgba(0,0,0,0.65);
    color: var(--brass-light); margin-bottom: 28px;
    opacity: 1; animation: none;
  }
  .hero h1 { text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.45);
    font-size: clamp(48px, 7.5vw, 108px);
    line-height: 0.96; max-width: 1040px; margin-bottom: 36px;
    opacity: 1; animation: none;
  }
  .hero h1 em { font-style: italic; font-weight: 300; color: var(--brass-light); }
  .hero-sub { text-shadow: 0 1px 12px rgba(0,0,0,0.55);
    font-size: 18px; font-weight: 300; line-height: 1.55;
    max-width: 540px; color: rgba(246, 241, 232, 0.88);
    margin-bottom: 56px;
    opacity: 1; animation: none;
  }
  .seo-h2 { position: absolute; left: -9999px; }
  @keyframes fade-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* BOOKING BAR */
  .booking-bar {
    position: relative; z-index: 10;
    background: var(--bg); color: var(--ink);
    margin-top: -56px; padding: 28px 36px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
    align-items: center; gap: 32px;
    box-shadow: 0 30px 80px -30px rgba(26, 36, 26, 0.3);
    opacity: 0; animation: fade-up 1s ease-out 1.1s forwards;
  }
  .booking-field {
    display: flex; flex-direction: column; gap: 6px;
    border-right: 1px solid var(--rule); padding-right: 32px;
  }
  .booking-field:last-of-type { border-right: none; }
  .booking-field label {
    font-size: 10px; font-weight: 500; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--muted);
  }
  .booking-field .value {
    font-family: 'Fraunces', serif; font-weight: 400; font-size: 18px; color: var(--ink);
  }
  .booking-field .value.placeholder { color: var(--muted); font-weight: 300; }
  .booking-cta {
    background: var(--forest); color: var(--bg);
    padding: 18px 36px; font-size: 12px;
    letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
    cursor: pointer; transition: background 0.3s ease;
    border: none; font-family: inherit;
  }
  .booking-cta:hover { background: var(--brass); }
  @media (max-width: 1100px) { .booking-bar { display: none; } }

  /* TRUST STRIP — small, subtle, right under booking bar */
  .trust-strip {
    padding: 36px 0 0;
    background: var(--bg);
  }
  .trust-strip-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    text-align: center;
    flex-wrap: wrap;
  }
  .stars {
    display: inline-flex;
    gap: 2px;
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 1px;
  }
  .trust-text {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.04em;
  }
  .trust-text strong {
    font-weight: 500; color: var(--forest);
  }
  .trust-divider {
    color: var(--rule);
    margin: 0 4px;
  }

  /* INTRO */
  .intro { padding: 120px 0 140px; background: var(--bg); }
  .intro-grid {
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 120px; align-items: start;
  }
  .intro-eyebrow { margin-bottom: 24px; display: block; }
  .intro h2 {
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.05; color: var(--forest);
  }
  .intro p {
    font-size: 18px; line-height: 1.7; color: var(--muted);
    margin-bottom: 28px; max-width: 620px;
  }
  /* drop-cap removed per Greg */
  .intro-meta {
    margin-top: 56px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
    padding-top: 48px; border-top: 1px solid var(--rule);
  }
  .meta-item .num {
    font-family: 'Fraunces', serif; font-size: 42px; font-weight: 300;
    color: var(--forest); display: block; line-height: 1; margin-bottom: 8px;
  }
  .meta-item .label {
    font-size: 12px; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--muted);
  }
  @media (max-width: 900px) {
    .intro { padding: 100px 0 80px; }
    .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  /* COLLECTION */
  .collection { padding: 100px 0 160px; background: var(--bg-alt); }
  .section-head {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 80px; gap: 60px;
  }
  .section-head .title h2 {
    font-size: clamp(36px, 4.5vw, 64px);
    line-height: 1.02; color: var(--forest);
  }
  .section-head .title h2 em { font-style: italic; color: var(--brass); font-weight: 300; }
  .section-head .meta {
    text-align: right; color: var(--muted);
    font-size: 14px; line-height: 1.7; max-width: 360px;
  }
  .view-all {
    display: inline-flex; align-items: center; gap: 12px;
    margin-top: 16px; font-size: 12px;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--forest); font-weight: 500;
    border-bottom: 1px solid var(--forest);
    padding-bottom: 4px; transition: gap 0.3s ease;
  }
  .view-all:hover { gap: 18px; }

  .properties { display: grid; grid-template-columns: repeat(12, 1fr); gap: 40px 32px; }
  .property { cursor: pointer; grid-column: span 6; }
  .property:nth-child(1) { grid-column: 1 / span 7; }
  .property:nth-child(2) { grid-column: 8 / span 5; margin-top: 80px; }
  .property:nth-child(3) { grid-column: 2 / span 5; margin-top: 60px; }

  .property-img {
    position: relative; overflow: hidden;
    aspect-ratio: 4/3; margin-bottom: 24px;
    background: var(--forest-deep);
  }
  .property:nth-child(2) .property-img { aspect-ratio: 3/4; }
  .property-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .property:hover .property-img img { transform: scale(1.04); }

  .property-tag {
    position: absolute; top: 20px; left: 20px;
    background: var(--bg); color: var(--forest);
    font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
    padding: 8px 14px; font-weight: 500;
  }
  .property-info { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; }
  .property-info .location {
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--brass); margin-bottom: 8px; font-weight: 500;
  }
  .property-info h3 {
    font-size: 28px; font-weight: 300; line-height: 1.1;
    color: var(--forest); margin-bottom: 10px;
  }
  /* per-property review row */
  .prop-rating {
    display: inline-flex; align-items: center; gap: 8px;
    margin-bottom: 14px;
    font-size: 12px; color: var(--muted);
    letter-spacing: 0.04em;
  }
  .prop-rating .stars { font-size: 12px; color: var(--gold); }
  .prop-rating .count { color: var(--muted); }
  .prop-rating .count strong { color: var(--forest); font-weight: 500; }

  .property-stats { font-size: 13px; color: var(--muted); letter-spacing: 0.04em; }
  .property-stats span { margin-right: 14px; }
  .property-stats span::after { content: '·'; margin-left: 14px; color: var(--rule); }
  .property-stats span:last-child::after { display: none; }
  .property-price { text-align: right; flex-shrink: 0; }
  .property-price .from {
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--muted); display: block; margin-bottom: 4px;
  }
  .property-price .amount { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 400; color: var(--forest); }
  .property-price .per { font-size: 11px; color: var(--muted); margin-left: 4px; }

  @media (max-width: 900px) {
    .properties { display: flex; flex-direction: column; gap: 60px; }
    .property, .property:nth-child(1), .property:nth-child(2), .property:nth-child(3) { grid-column: auto; margin-top: 0; }
    .section-head { flex-direction: column; align-items: flex-start; }
    .section-head .meta { text-align: left; }
  }

  /* EDITORIAL PULL QUOTE — single big review as social proof */
  .pull-quote {
    background: var(--bg);
    padding: 160px 0;
    position: relative;
  }
  .pull-quote-inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
  }
  .quote-stars {
    display: inline-flex; gap: 4px; color: var(--gold);
    font-size: 18px; margin-bottom: 32px;
    letter-spacing: 2px;
  }
  .pull-quote blockquote {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(28px, 3.6vw, 46px);
    line-height: 1.25;
    color: var(--forest);
    letter-spacing: -0.015em;
    margin-bottom: 40px;
  }
  .pull-quote blockquote em { font-style: italic; color: var(--brass); font-weight: 300; }
  .pull-quote .attribution {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .pull-quote .attribution strong { color: var(--forest); font-weight: 500; }

  /* SETTING — replaces "Plan with Someone Local" — focuses on the place itself + content guides */
  .setting {
    background: var(--forest-deep); color: var(--bg);
    padding: 160px 0; position: relative; overflow: hidden;
  }
  .setting::before {
    content: ''; position: absolute;
    top: -300px; left: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(160,119,64,0.10) 0%, transparent 70%);
    pointer-events: none;
  }
  .setting-grid {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 100px; align-items: center;
  }
  .setting .eyebrow { color: var(--brass-light); }
  .setting h2 {
    font-size: clamp(38px, 4.5vw, 60px); line-height: 1.05;
    margin: 24px 0 32px;
  }
  .setting h2 em { font-style: italic; color: var(--brass-light); font-weight: 300; }
  .setting p {
    font-size: 17px; line-height: 1.75;
    color: rgba(246,241,232,0.78);
    margin-bottom: 22px; max-width: 540px;
  }
  .setting .features {
    list-style: none; margin-top: 40px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px 36px;
  }
  .setting .features li {
    display: flex; gap: 14px; align-items: flex-start;
    font-size: 14px; color: rgba(246,241,232,0.85);
    line-height: 1.5;
  }
  .setting .features li::before {
    content: ''; flex-shrink: 0;
    width: 6px; height: 6px;
    background: var(--brass-light);
    border-radius: 50%;
    margin-top: 7px;
  }
  .setting-image {
    position: relative; aspect-ratio: 4/5; overflow: hidden;
  }
  .setting-image img { width: 100%; height: 100%; object-fit: cover; }
  @media (max-width: 900px) {
    .setting { padding: 100px 0; }
    .setting-grid { grid-template-columns: 1fr; gap: 60px; }
    .setting .features { grid-template-columns: 1fr; }
  }

  /* TRIP PLANNING */
  .trip-planning {
    padding: 160px 0 140px;
    background: var(--bg);
  }
  .trip-head {
    max-width: 920px;
    margin: 0 auto 80px;
    text-align: center;
  }
  .trip-head h2 {
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.02;
    color: var(--forest);
    margin: 20px 0 28px;
  }
  .trip-head h2 em { font-style: italic; color: var(--brass); font-weight: 300; }
  .trip-head p {
    color: var(--muted); font-size: 18px;
    line-height: 1.65; max-width: 640px; margin: 0 auto;
  }
  .trip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .trip-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
    background: var(--forest-deep);
  }
  .trip-card-img {
    position: absolute; inset: 0;
    transition: transform 1.2s cubic-bezier(0.2,0.8,0.2,1);
  }
  .trip-card-img img { width: 100%; height: 100%; object-fit: cover; }
  .trip-card:hover .trip-card-img { transform: scale(1.06); }
  .trip-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      180deg,
      rgba(26, 36, 26, 0.10) 0%,
      rgba(26, 36, 26, 0.20) 40%,
      rgba(26, 36, 26, 0.85) 100%
    );
  }
  .trip-card-content {
    position: absolute;
    bottom: 32px; left: 28px; right: 28px;
    color: var(--bg);
    z-index: 2;
  }
  .trip-card-eyebrow {
    font-size: 10px; letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brass-light);
    margin-bottom: 10px;
    font-weight: 500;
  }
  .trip-card h3 {
    font-size: 26px;
    line-height: 1.05;
    margin-bottom: 14px;
    font-weight: 300;
  }
  .trip-card .preview {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(246,241,232,0.78);
    margin-bottom: 16px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease, margin-bottom 0.4s ease;
  }
  .trip-card:hover .preview { opacity: 1; max-height: 80px; }
  .trip-card .arrow {
    font-size: 11px; letter-spacing: 0.18em;
    color: var(--brass-light); font-weight: 500;
  }
  @media (max-width: 1100px) {
    .trip-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  }
  @media (max-width: 600px) {
    .trip-grid { grid-template-columns: 1fr; }
    .trip-planning { padding: 80px 0; }
  }

  /* INTERNAL LINKS */
  .internal-links {
    background: var(--bg-alt);
    padding: 100px 0;
  }
  .internal-links-head {
    text-align: center;
    margin-bottom: 56px;
  }
  .internal-links-head h2 {
    font-size: clamp(28px, 3.4vw, 44px);
    color: var(--forest);
    margin-top: 14px;
  }
  .links-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 36px;
  }
  .links-col h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--brass); font-weight: 600;
    margin-bottom: 22px;
  }
  .links-col ul { list-style: none; }
  .links-col li { margin-bottom: 14px; font-size: 16px; line-height: 1.55; }
  .links-col a { color: var(--forest); transition: color 0.3s ease; }
  .links-col a:hover { color: var(--brass); }
  @media (max-width: 1100px) {
    .links-grid { grid-template-columns: repeat(3, 1fr); gap: 36px; }
  }
  @media (max-width: 700px) {
    .links-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  }

  /* FAQ */
  .faq {
    background: var(--bg);
    padding: 140px 0;
  }
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 100px;
    align-items: start;
  }
  .faq-head .eyebrow { display: block; margin-bottom: 24px; }
  .faq-head h2 {
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.05;
    color: var(--forest);
    margin-bottom: 28px;
  }
  .faq-head h2 em { font-style: italic; color: var(--brass); font-weight: 300; }
  .faq-head p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--muted);
    margin-bottom: 32px;
  }
  .faq-head .contact-line {
    font-size: 14px;
    color: var(--muted);
    padding-top: 24px;
    border-top: 1px solid var(--rule);
  }
  .faq-head .contact-line strong { color: var(--forest); font-weight: 500; }

  .faq-list {
    list-style: none;
    border-top: 1px solid var(--rule);
  }
  .faq-item {
    border-bottom: 1px solid var(--rule);
  }
  .faq-question {
    padding: 28px 0;
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--forest);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    line-height: 1.3;
    list-style: none;
    transition: color 0.3s ease;
  }
  .faq-question::-webkit-details-marker { display: none; }
  .faq-question:hover { color: var(--brass); }
  .faq-question .toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: 1px solid var(--rule);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
  }
  .faq-question .toggle::before,
  .faq-question .toggle::after {
    content: '';
    position: absolute;
    background: var(--forest);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
  }
  .faq-question .toggle::before { width: 12px; height: 1px; }
  .faq-question .toggle::after { width: 1px; height: 12px; }
  .faq-item[open] .faq-question .toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
  .faq-item[open] .faq-question .toggle { border-color: var(--brass); }
  .faq-item[open] .faq-question .toggle::before { background: var(--brass); }
  .faq-answer {
    padding: 0 60px 32px 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
  }

  @media (max-width: 900px) {
    .faq { padding: 80px 0; }
    .faq-grid { grid-template-columns: 1fr; gap: 40px; }
    .faq-question { font-size: 18px; padding: 22px 0; }
    .faq-answer { padding-right: 0; }
  }

  /* SOURCES STRIP */
  .sources {
    background: var(--bg);
    padding: 60px 0 80px;
    border-top: 1px solid var(--rule);
  }
  .sources-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 24px;
  }
  .sources-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    margin-right: 8px;
  }
  .sources-list {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.02em;
  }
  .sources-list span {
    margin: 0 6px;
    color: var(--rule);
  }
  .sources-list a {
    color: var(--forest);
    transition: color 0.3s ease;
  }
  .sources-list a:hover { color: var(--brass); }
  @media (max-width: 700px) {
    .sources-inner { flex-direction: column; text-align: center; gap: 12px; }
  }

  /* FOOTER */
  footer { background: var(--forest-deep); color: var(--bg); padding: 100px 0 40px; }
  .footer-grid { align-items: start;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px; margin-bottom: 80px;
  }
  .footer-brand .logo { margin-bottom: 24px; display: block; }
  .footer-brand p {
    color: var(--bg); font-size: 16px; line-height: 1.7; max-width: 360px;
  }
  footer h4 { color: var(--bg); min-height: 2.6em; line-height: 1.3;
    font-family: 'DM Sans', sans-serif; font-size: 11px;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--brass-light); margin-bottom: 24px; font-weight: 500;
  }
  footer ul { list-style: none; }
  footer ul li {
    margin-bottom: 12px; font-size: 14px;
    color: rgba(246,241,232,0.75);
    transition: color 0.3s ease; cursor: pointer;
  }
  footer ul li:hover { color: var(--brass-light); }
  .footer-bottom {
    border-top: 1px solid rgba(246,241,232,0.12);
    padding-top: 28px;
    display: flex; justify-content: space-between;
    font-size: 12px; color: rgba(246,241,232,0.5); letter-spacing: 0.06em;
  }
  @media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 12px; }
  }

/* ============================================
   PROPERTY PAGE — extends v8 design system
   ============================================ */

.property-hero { position: relative; height: 80vh; min-height: 620px; overflow: hidden; color: var(--bg); }
.property-hero-image { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); animation: slow-zoom 22s ease-out forwards; }
.property-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,36,26,0.30) 0%, rgba(26,36,26,0.20) 40%, rgba(26,36,26,0.75) 100%); }
.property-hero-content { position: relative; z-index: 10; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 80px; }
.property-hero h1 { font-size: clamp(40px, 6vw, 84px); line-height: 1.0; max-width: 900px; margin: 24px 0 18px; font-family: 'Fraunces', serif; font-weight: 300; letter-spacing: -0.02em; }
.property-hero h1 em { font-style: italic; font-weight: 300; color: var(--brass-light); }
.property-hero .location-line { font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass-light); font-weight: 500; margin-bottom: 4px; }
.property-hero .stats-line { display: flex; gap: 28px; font-size: 14px; color: rgba(246,241,232,0.92); letter-spacing: 0.04em; margin-top: 12px; flex-wrap: wrap; }
.property-hero .stats-line span::after { content: '·'; margin-left: 28px; color: rgba(246,241,232,0.4); }
.property-hero .stats-line span:last-child::after { display: none; }

.property-intro { padding: 100px 0 80px; background: var(--bg); }
.property-intro-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 100px; align-items: start; }
.property-intro h2 { font-size: clamp(32px, 3.5vw, 48px); line-height: 1.1; color: var(--forest); font-family: 'Fraunces', serif; font-weight: 300; }
.property-intro h2 em { font-style: italic; color: var(--brass); font-weight: 300; }
.property-intro p { font-size: 17px; line-height: 1.75; color: var(--muted); margin-bottom: 22px; max-width: 600px; }
@media (max-width: 900px) { .property-intro-grid { grid-template-columns: 1fr; gap: 32px; } .property-intro { padding: 60px 0; } }

.property-gallery { background: var(--bg-alt); padding: 80px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--forest-deep);
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item--lg,
.gallery-item--md,
.gallery-item--tall { /* size variants removed in simplified grid */ }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { aspect-ratio: 16/10; }
}

.amenities { padding: 100px 0; background: var(--bg); }
.amenities-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.amenities-head h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.05; color: var(--forest); font-family: 'Fraunces', serif; font-weight: 300; margin-top: 16px; }
.amenities-head h2 em { font-style: italic; color: var(--brass); font-weight: 300; }
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 56px; }
.amenities-col h3 { font-family: 'DM Sans', sans-serif; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); font-weight: 500; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--rule); }
.amenities-col ul { list-style: none; }
.amenities-col li { font-size: 15px; line-height: 1.6; color: var(--ink); padding: 8px 0; }
@media (max-width: 900px) { .amenities-grid { grid-template-columns: 1fr; gap: 32px; } }

.property-location { background: var(--forest-deep); color: var(--bg); padding: 100px 0; }
.location-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.location-grid .eyebrow { color: var(--brass-light); }
.location-grid h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.05; margin: 18px 0 24px; font-family: 'Fraunces', serif; font-weight: 300; }
.location-grid h2 em { font-style: italic; color: var(--brass-light); font-weight: 300; }
.location-grid p { font-size: 16px; line-height: 1.75; color: rgba(246,241,232,0.78); margin-bottom: 16px; max-width: 540px; }
.location-distances { list-style: none; margin-top: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px 32px; }
.location-distances li { display: flex; gap: 14px; align-items: flex-start; font-size: 14px; color: rgba(246,241,232,0.85); line-height: 1.5; }
.location-distances .miles { font-family: 'Fraunces', serif; font-weight: 400; color: var(--brass-light); flex-shrink: 0; min-width: 64px; }
.location-map { position: relative; aspect-ratio: 5/4; overflow: hidden; background: var(--forest); border: 1px solid rgba(196,154,108,0.2); }
.location-map iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 900px) { .location-grid { grid-template-columns: 1fr; gap: 40px; } .property-location { padding: 60px 0; } }

.booking-cta-section { background: var(--bg); padding: 120px 0; text-align: center; }
.booking-cta-section h2 { font-size: clamp(36px, 4.5vw, 60px); line-height: 1.05; color: var(--forest); font-family: 'Fraunces', serif; font-weight: 300; margin-bottom: 24px; max-width: 760px; margin-left: auto; margin-right: auto; }
.booking-cta-section h2 em { font-style: italic; color: var(--brass); font-weight: 300; }
.booking-cta-section p { font-size: 18px; line-height: 1.65; color: var(--muted); max-width: 580px; margin: 0 auto 40px; }
.booking-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary, .btn-secondary { padding: 18px 36px; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; cursor: pointer; transition: all 0.3s ease; border: 1px solid var(--forest); font-family: 'DM Sans', sans-serif; display: inline-block; }
.btn-primary { background: var(--forest); color: var(--bg); }
.btn-primary:hover { background: var(--brass); border-color: var(--brass); }
.btn-secondary { background: transparent; color: var(--forest); }
.btn-secondary:hover { background: var(--forest); color: var(--bg); }

.booking-widget-wrap { position: relative; }
.booking-widget { background: var(--bg); border: 1px solid var(--rule); padding: 28px; position: sticky; top: 120px; box-shadow: 0 30px 80px -40px rgba(26,36,26,0.25); }
.booking-widget__price { display: flex; align-items: baseline; gap: 8px; padding-bottom: 18px; border-bottom: 1px solid var(--rule); margin-bottom: 22px; }
.booking-widget__price .from { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.booking-widget__price .amount { font-family: 'Fraunces', serif; font-size: 32px; font-weight: 400; color: var(--forest); line-height: 1; }
.booking-widget__price .per { font-size: 13px; color: var(--muted); }
.booking-widget__field { display: flex; flex-direction: column; margin-bottom: 16px; }
.booking-widget__field label { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-bottom: 6px; }
.booking-widget__field input, .booking-widget__field select { font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--ink); border: 1px solid var(--rule); background: var(--bg); padding: 12px 14px; width: 100%; border-radius: 0; -webkit-appearance: none; appearance: none; cursor: pointer; }
.booking-widget__field input:focus, .booking-widget__field select:focus { outline: none; border-color: var(--brass); }
.booking-widget__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booking-widget__cta { display: block; width: 100%; background: var(--forest); color: var(--bg); padding: 18px 24px; font-family: 'DM Sans', sans-serif; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; border: none; cursor: pointer; transition: background 0.3s ease; text-align: center; text-decoration: none; margin-top: 8px; }
.booking-widget__cta:hover { background: var(--brass); color: var(--bg); }
.booking-widget__cta--ghost { background: transparent; color: var(--forest); border: 1px solid var(--forest); margin-top: 10px; }
.booking-widget__cta--ghost:hover { background: var(--forest); color: var(--bg); }
.booking-widget__note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 18px; line-height: 1.5; }
.booking-widget__note strong { color: var(--forest); font-weight: 500; }

.property-detail { padding: 80px 0 100px; background: var(--bg); }
.property-detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 80px; align-items: start; }
.property-detail-content h2 { font-family: 'Fraunces', serif; font-size: clamp(28px, 3.5vw, 40px); font-weight: 300; letter-spacing: -0.02em; color: var(--forest); line-height: 1.1; margin: 32px 0 20px; }
.property-detail-content h2:first-child { margin-top: 0; }
.property-detail-content h2 em { font-style: italic; color: var(--brass); font-weight: 300; }
.property-detail-content p { font-size: 17px; line-height: 1.75; color: var(--muted); margin-bottom: 18px; }
.property-detail-content ul { list-style: none; margin: 0 0 24px; padding: 0; }
.property-detail-content li { font-size: 15px; line-height: 1.6; color: var(--ink); padding: 6px 0 6px 22px; position: relative; }
.property-detail-content li::before { content: ""; position: absolute; left: 0; top: 16px; width: 8px; height: 1px; background: var(--brass); }

@media (max-width: 1100px) {
  .property-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .booking-widget { position: relative; top: auto; }
  .booking-widget-mobile-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 100; background: var(--bg); border-top: 1px solid var(--rule); padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; box-shadow: 0 -10px 30px -15px rgba(26,36,26,0.25); }
  .booking-widget-mobile-bar .price { font-family: 'Fraunces', serif; font-size: 20px; color: var(--forest); }
  .booking-widget-mobile-bar .price .per { font-size: 12px; color: var(--muted); margin-left: 4px; }
  .booking-widget-mobile-bar a { background: var(--forest); color: var(--bg); padding: 14px 22px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; text-decoration: none; }
  body { padding-bottom: 80px; }
}
@media (min-width: 1101px) { .booking-widget-mobile-bar { display: none; } }

/* ============================================
   LIGHTBOX
   ============================================ */
#gv-lightbox {
  position: fixed; inset: 0;
  z-index: 1000;
  display: none;
}
#gv-lightbox.open { display: block; }
.gv-lb-overlay {
  position: absolute; inset: 0;
  background: rgba(15, 22, 15, 0.96);
}
.gv-lb-close, .gv-lb-prev, .gv-lb-next {
  position: absolute;
  background: rgba(246, 241, 232, 0.08);
  border: 1px solid rgba(246, 241, 232, 0.15);
  color: var(--bg);
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease;
  font-family: 'DM Sans', sans-serif;
}
.gv-lb-close:hover, .gv-lb-prev:hover, .gv-lb-next:hover {
  background: rgba(246, 241, 232, 0.18);
}
.gv-lb-close {
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  font-size: 28px; line-height: 1;
}
.gv-lb-prev, .gv-lb-next {
  top: 50%; transform: translateY(-50%);
  width: 56px; height: 80px;
  font-size: 32px; line-height: 1;
}
.gv-lb-prev { left: 24px; }
.gv-lb-next { right: 24px; }
.gv-lb-stage {
  position: absolute;
  top: 8%; left: 8%; right: 8%; bottom: 25%;
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
}
.gv-lb-image {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.8);
}
.gv-lb-caption {
  position: absolute;
  bottom: 22%; left: 8%; right: 8%;
  color: rgba(246, 241, 232, 0.85);
  font-size: 13px;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.04em;
  z-index: 5;
}
.gv-lb-thumbs {
  position: absolute;
  bottom: 24px; left: 0; right: 0;
  display: flex; gap: 8px;
  padding: 0 24px;
  overflow-x: auto;
  z-index: 10;
  scrollbar-width: thin;
  scrollbar-color: rgba(246,241,232,0.2) transparent;
}
.gv-lb-thumbs::-webkit-scrollbar { height: 6px; }
.gv-lb-thumbs::-webkit-scrollbar-thumb { background: rgba(246,241,232,0.2); border-radius: 3px; }
.gv-lb-thumb {
  flex: 0 0 auto;
  width: 100px; height: 70px;
  border: 2px solid transparent;
  background: transparent;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.55;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.gv-lb-thumb:hover { opacity: 0.85; }
.gv-lb-thumb.active {
  opacity: 1;
  border-color: var(--brass);
}
.gv-lb-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .gv-lb-prev, .gv-lb-next { width: 44px; height: 56px; font-size: 24px; }
  .gv-lb-thumb { width: 70px; height: 50px; }
  .gv-lb-stage { top: 12%; bottom: 30%; }
}

/* ============================================
   READABILITY + DENSITY PASS — Greg feedback 2026-05-27
   Larger body text, tighter spacing, less drama
   ============================================ */

/* Larger, more readable body text */
body { font-size: 16px; line-height: 1.55; }
.property-detail-content p,
.property-intro p,
.intro p,
section p { font-size: 17px; line-height: 1.6; }
.property-detail-content li,
.amenities-col li { font-size: 16px; line-height: 1.6; padding: 6px 0; }

/* Tighter hero — less massive */
.property-hero { height: 56vh; min-height: 420px; }
.property-hero h1 { font-size: clamp(34px, 4.5vw, 56px) !important; margin: 16px 0 12px !important; max-width: 760px; }
.property-hero .stats-line { font-size: 13px; margin-top: 10px; }
.property-hero .stats-line span { white-space: nowrap; }
.property-hero .stats-line span::after { margin-left: 16px; }
.property-hero-content { padding-bottom: 48px; }
.property-hero p { font-size: 16px !important; line-height: 1.5 !important; max-width: 560px !important; }

/* Tighter section padding everywhere */
.property-detail { padding: 56px 0 64px; }
.property-gallery { padding: 56px 0; }
.amenities { padding: 64px 0; }
.property-location { padding: 64px 0; }
.faq { padding: 64px 0; }
.amenities-head { margin-bottom: 40px; }
.amenities-head h2 { font-size: clamp(26px, 3vw, 36px); }
.property-detail-content h2 { font-size: clamp(24px, 2.8vw, 32px) !important; margin: 24px 0 14px !important; }
.property-detail-content h2:first-child { margin-top: 0 !important; }

/* Amenities — denser grid */
.amenities-grid { gap: 28px 40px; }
.amenities-col h3 { font-size: 11px; margin-bottom: 12px; padding-bottom: 8px; }

/* FAQ — denser */
.faq-grid { gap: 60px; }
.faq-question { padding: 20px 0; font-size: 18px; }
.faq-answer { padding: 0 40px 24px 0; font-size: 15px; line-height: 1.6; }

/* Booking widget — more compact */
.booking-widget { padding: 22px; top: 100px; }
.booking-widget__price .amount { font-size: 28px; }
.booking-widget__field { margin-bottom: 12px; }
.booking-widget__field input, .booking-widget__field select { padding: 10px 12px; font-size: 14px; }
.booking-widget__cta { padding: 14px 20px; }

/* Gallery — uniform grid, no auto-rows */

/* Less section padding on FAB / interior link blocks */
section[style*="padding:100px 0"], section[style*="padding: 100px 0"] { padding: 56px 0 !important; }
section[style*="padding:80px 0 100px"] { padding: 48px 0 64px !important; }

/* Center alignment header text scale */
.amenities-head h2,
section h2.serif {
  font-size: clamp(24px, 3vw, 36px);
}

/* ============================================
   PREMIUM DESIGN PASS — Airbnb-grid hero, sticky nav, single display
   ============================================ */

/* --- Sticky condensing nav --- */
body.has-sticky-nav header {
  position: fixed;
  top: 38px;
  left: 0; right: 0;
  transition: background 0.3s ease, padding 0.3s ease, top 0.3s ease;
  background: transparent;
  padding: 8px 0;
}
body.has-sticky-nav.scrolled header {
  top: 0;
  background: rgba(31, 42, 31, 0.94);
  backdrop-filter: blur(12px);
  padding: 6px 0;
  border-bottom: 1px solid rgba(196, 154, 108, 0.15);
}

/* Property pages: the .ab-hero shows cream around the photo grid, so a
   transparent cream-on-cream nav goes invisible at the top. Give the header
   a permanent dark backdrop on these pages. Both .has-photo-grid-hero (set
   by JS for explicitness) and the :has(.ab-hero) selector cover this. */
body.has-sticky-nav.has-photo-grid-hero header,
body.has-sticky-nav:has(.ab-hero) header {
  background: rgba(31, 42, 31, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 154, 108, 0.15);
}
body.has-sticky-nav.has-photo-grid-hero.scrolled header,
body.has-sticky-nav:has(.ab-hero).scrolled header {
  top: 0;
  padding: 6px 0;
}

/* Collection page and any cream-hero page also need dark nav backdrop */
body.has-sticky-nav.has-dark-nav header {
  background: rgba(31, 42, 31, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 154, 108, 0.15);
}
body.has-sticky-nav.scrolled .topbar { transform: translateY(-100%); transition: transform 0.3s ease; }
body.has-sticky-nav .topbar { transition: transform 0.3s ease; position: fixed; top: 0; left: 0; right: 0; z-index: 51; }
body.has-sticky-nav { padding-top: 38px; }

/* Nav text color stays cream when over hero or scrolled (because bg becomes dark) */
body.has-sticky-nav header .logo-name,
body.has-sticky-nav header .logo-sub,
body.has-sticky-nav header .nav-links a { color: var(--bg); }
body.has-sticky-nav header .nav-cta { color: var(--bg); border-color: rgba(246,241,232,0.4); }

/* --- AIRBNB-STYLE PHOTO GRID HERO --- */
.ab-hero { padding-top: 130px !important;
  background: var(--bg);
  padding: 0;
}
.ab-hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  aspect-ratio: 24/10;
  max-height: 560px;
  overflow: hidden;
}
.ab-hero-grid > a {
  position: relative;
  overflow: hidden;
  background: var(--forest-deep);
  cursor: pointer;
  border: 0;
}
.ab-hero-grid > a:first-child {
  grid-row: 1 / span 2;
}
.ab-hero-grid picture { display: block; width: 100%; height: 100%; }
.ab-hero-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.3s ease;
}
.ab-hero-grid > a:hover img { transform: scale(1.03); filter: brightness(1.05); }
/* Show all photos — inline editorial button under the hero grid.
   Anchored to the grid's bottom-left corner with a brass underline accent
   so it reads as part of the site's label system, not a floating widget. */
.ab-hero-show-all {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(31, 42, 31, 0.86);
  backdrop-filter: blur(8px);
  color: var(--bg);
  padding: 10px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid rgba(196, 154, 108, 0.45);
  cursor: pointer;
  z-index: 20;
  transition: background 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ab-hero-show-all::after {
  content: '→';
  font-size: 14px;
  color: var(--brass-light);
  transition: transform 0.2s ease;
}
.ab-hero-show-all:hover {
  background: var(--forest);
  border-color: var(--brass);
}
.ab-hero-show-all:hover::after { transform: translateX(3px); }

@media (max-width: 900px) {
  .ab-hero-grid {
    aspect-ratio: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 240px 120px 120px;
    max-height: 480px;
  }
  .ab-hero-grid > a:first-child { grid-row: 1; }
  .ab-hero-grid > a:nth-child(4),
  .ab-hero-grid > a:nth-child(5) { display: none; }
}

/* --- COMPACT PROPERTY SUMMARY BAR (right below hero grid) --- */
.ab-summary {
  background: var(--bg);
  padding: 32px 0 16px;
  border-bottom: 1px solid var(--rule);
}
.ab-summary-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.ab-summary-left .location-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin-bottom: 12px;
}
.ab-summary-left .location-pill::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--brass);
  border-radius: 50%;
}
.ab-summary-left h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  color: var(--forest);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.ab-summary-left .quick-stats {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.02em;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.ab-summary-left .quick-stats span:not(:last-child)::after {
  content: '·'; margin-left: 16px; color: var(--rule);
}
.ab-summary-left .trust-row {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--muted);
  padding-top: 8px;
}
.ab-summary-left .trust-row .stars { color: var(--gold); letter-spacing: 1px; font-size: 14px; }
.ab-summary-left .trust-row strong { color: var(--forest); font-weight: 500; }

.ab-summary-right {
  text-align: right;
  border-left: 1px solid var(--rule);
  padding-left: 56px;
}
.ab-summary-right .price-row {
  display: flex; align-items: baseline; justify-content: flex-end;
  gap: 6px; margin-bottom: 14px;
}
.ab-summary-right .price-from {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.ab-summary-right .price-amount {
  font-family: 'Fraunces', serif;
  font-size: 32px; font-weight: 400; color: var(--forest); line-height: 1;
}
.ab-summary-right .price-per { font-size: 13px; color: var(--muted); }
.ab-summary-right a.btn {
  display: inline-block;
  background: var(--forest);
  color: var(--bg);
  padding: 14px 28px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease;
}
.ab-summary-right a.btn:hover { background: var(--brass); }
.ab-summary-right a.btn--ghost {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
  margin-left: 10px;
}
.ab-summary-right a.btn--ghost:hover { background: var(--forest); color: var(--bg); }
.ab-summary-right .secondary-line {
  font-size: 12px; color: var(--muted); margin-top: 12px;
}

@media (max-width: 900px) {
  .ab-summary-grid { grid-template-columns: 1fr; gap: 24px; }
  .ab-summary-right { border-left: none; padding-left: 0; text-align: left; }
  .ab-summary-right .price-row { justify-content: flex-start; }
}

/* --- DEDESIGN F.A.B. blocks: plain headlines, no numbered labels --- */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 64px 0;
}
.highlights-grid > div h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 12px;
}
.highlights-grid > div p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 800px) {
  .highlights-grid { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
}

/* --- Reduce italic-emphasis overload globally --- */
/* Keep italic accent on hero h1 + collection h2 only */
.property-detail-content h2 em,
.amenities-head h2 em,
.faq-head h2 em,
.collection-card-content h2 em { font-style: normal; color: var(--forest); }

/* --- Cleaner section spacing --- */
.property-detail, .property-gallery, .amenities, .property-location, .faq {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

/* --- Mobile improvements --- */
@media (max-width: 768px) {
  .property-hero h1 { font-size: 32px !important; }
  .ab-summary-left h1 { font-size: 28px; }
  body { font-size: 15px; line-height: 1.55; }
  .property-detail-content p, section p { font-size: 16px; }
}

/* --- Premium polish: sticky nav class trigger via JS --- */
body.scrolled .topbar { transform: translateY(-100%); }
body.has-sticky-nav .topbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 60;
}
body.has-sticky-nav header { position: fixed; }

/* Spacer when nav is fixed */
body.has-sticky-nav { padding-top: 0; }
body.has-sticky-nav.scrolled .ab-hero { padding-top: 60px; }

/* Cleaner top of ab-hero — no awkward whitespace */
.ab-hero .container { padding-top: 96px !important; padding-bottom: 0 !important; }

/* Improve property-detail body — single column option with sticky widget */
.property-detail-grid { grid-template-columns: 1.6fr 1fr; gap: 64px; }

/* Wrap "What makes this stay different" → cleaner */
section[style*="background:var(--bg-alt)"] h2.serif { font-size: clamp(28px, 3.2vw, 40px) !important; }

/* Strip italic-em emphasis remaining */
h2 em, h3 em { font-style: italic; }

/* Ensure highlights grid blocks render cleanly */
.highlights-grid h3 { margin-top: 0; }

/* Property detail body becomes single column when summary CTA is present */
.property-detail-grid.single-col { grid-template-columns: 1fr; max-width: 820px; margin: 0 auto; }
.property-detail.single-col { padding: 56px 0 64px; }

/* SHOW ALL PHOTOS floating button — only when present */
.ab-hero-show-all { font-family: 'DM Sans', sans-serif; }

/* Final italic-restraint pass — only hero h1 keeps italic emphasis */
.property-detail-content h2 em,
.amenities-head h2 em,
.faq-head h2 em,
section h2.serif em {
  font-style: normal;
  color: inherit;
  font-weight: inherit;
}

/* Cleaner highlights wrapper */
section[style*="background:var(--bg-alt)"][style*="padding:100px 0"],
section[style*="background: var(--bg-alt)"][style*="padding:100px 0"] {
  padding: 64px 0 !important;
}

/* ============================================
   FIELD GUIDE ARTICLE TEMPLATE
   Long-form prose, affiliate cards, restaurant cards, TOC, FTC disclosure
   ============================================ */

/* --- Article hero --- */
.article-hero {
  position: relative;
  height: 60vh;
  min-height: 520px;
  overflow: hidden;
  margin-top: 0;
}
.article-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,22,16,0.40) 0%, rgba(15,22,16,0.22) 35%, rgba(15,22,16,0.30) 58%, rgba(15,22,16,0.65) 80%, rgba(15,22,16,0.82) 100%);
}
.article-hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 168px;
  padding-bottom: 60px;
  color: var(--bg);
}
.article-hero-content .article-eyebrow {
  text-shadow: 0 1px 8px rgba(0,0,0,0.65);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-light);
  font-weight: 500;
  margin-bottom: 12px;
}
.article-hero-content h1 {
  text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.45);
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.02em;
  max-width: 920px;
  margin-bottom: 18px;
}
.article-hero-content .article-dek {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  max-width: 680px;
  color: rgba(246,241,232,0.85);
  font-weight: 300;
}
.article-hero-content .article-meta {
  margin-top: 28px;
  font-size: 13px;
  color: rgba(246,241,232,0.7);
  letter-spacing: 0.04em;
}

/* --- Article body layout (two-column with sticky TOC) --- */
.article-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 48px;
}
@media (max-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 60px 24px;
  }
}
.article-toc {
  position: sticky;
  top: 100px;
  align-self: start;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.6;
}
.article-toc h4 {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
  font-weight: 500;
}
.article-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.article-toc ol li {
  margin-bottom: 10px;
  padding-left: 12px;
  border-left: 2px solid var(--rule);
  transition: border-color 0.2s ease;
}
.article-toc ol li:hover { border-left-color: var(--brass); }
.article-toc ol li a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.article-toc ol li a:hover { color: var(--forest); }
@media (max-width: 1024px) {
  .article-toc { display: none; }
}

/* --- Article prose typography --- */
.article-body {
  max-width: 720px;
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
}
.article-body > * + * { margin-top: 1.5em; }
.article-body h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  font-weight: 300;
  letter-spacing: -0.015em;
  color: var(--forest);
  margin-top: 2.6em !important;
  margin-bottom: 0.4em;
  scroll-margin-top: 80px;
}
.article-body h2:first-child { margin-top: 0 !important; }
.article-body h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.2vw, 26px);
  line-height: 1.25;
  font-weight: 400;
  color: var(--forest);
  margin-top: 2em !important;
  margin-bottom: 0.3em;
  scroll-margin-top: 80px;
}
.article-body h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--brass);
  margin-top: 2em !important;
  margin-bottom: 0.2em;
}
.article-body p { margin-bottom: 1.2em; }
.article-body a {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-color: var(--brass);
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.article-body a:hover {
  color: var(--brass);
  text-decoration-color: var(--brass);
}
.article-body ul, .article-body ol {
  padding-left: 1.5em;
  margin-bottom: 1.4em;
}
.article-body li {
  margin-bottom: 0.6em;
  line-height: 1.7;
}
.article-body strong { font-weight: 500; color: var(--forest); }
.article-body em { font-style: italic; }
.article-body figure {
  margin: 2.4em 0;
}
.article-body figure img {
  width: 100%;
  height: auto;
  display: block;
}
.article-body figcaption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  font-style: italic;
  text-align: left;
  letter-spacing: 0.01em;
}

/* --- Pull quote --- */
.article-body .pullquote {
  border-left: 3px solid var(--brass);
  padding: 4px 0 4px 24px;
  margin: 2.4em 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.4;
  color: var(--forest);
}
.article-body .pullquote .attribution {
  display: block;
  margin-top: 12px;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: none;
}

/* --- Affiliate cards (editorial Wirecutter-style) --- */
.affiliate-card {
  margin: 2.6em 0;
  border: 1px solid var(--rule);
  background: var(--bg-alt);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 24px;
  align-items: center;
}
.affiliate-card.full-width {
  grid-template-columns: 1fr;
}
.affiliate-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
}
.affiliate-card-meta .pill {
  display: inline-block;
  padding: 3px 9px;
  background: var(--brass);
  color: var(--bg);
  font-size: 9px;
  letter-spacing: 0.16em;
}
.affiliate-card h4 {
  font-family: 'Fraunces', serif !important;
  font-size: 21px !important;
  font-weight: 400 !important;
  color: var(--forest) !important;
  margin: 0 0 8px 0 !important;
  letter-spacing: -0.005em;
  text-transform: none !important;
}
.affiliate-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 14px 0;
}
.affiliate-card .cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--forest);
  text-decoration: none !important;
  background: transparent !important;
  padding: 10px 18px;
  border: 1px solid var(--forest);
  transition: background 0.2s ease, color 0.2s ease;
}
.affiliate-card .cta:hover {
  background: var(--forest);
  color: var(--bg);
}
.affiliate-card .cta::after { content: '→'; }
.affiliate-card-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--forest-deep);
}
.affiliate-card-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.affiliate-card.placeholder {
  border-style: dashed;
  border-color: var(--rule);
  opacity: 0.92;
}
.affiliate-card.placeholder .cta {
  pointer-events: none;
  opacity: 0.6;
}
@media (max-width: 700px) {
  .affiliate-card {
    grid-template-columns: 1fr;
  }
  .affiliate-card-image { aspect-ratio: 16 / 9; }
}

/* --- Restaurant / business card (informational, no affiliate) --- */
.business-card {
  margin: 1.6em 0;
  border-top: 1px solid var(--rule);
  padding: 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.business-card-info h4 {
  font-family: 'Fraunces', serif !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  color: var(--forest) !important;
  margin: 0 0 6px 0 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.business-card-info .business-tags {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--brass);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.business-card-info p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 12px 0;
}
.business-card-info .business-links {
  font-size: 13px;
  color: var(--muted);
}
.business-card-info .business-links a {
  color: var(--forest);
  margin-right: 16px;
  text-decoration: underline;
  text-decoration-color: var(--brass);
  text-underline-offset: 3px;
}
.business-card-info .quote-preview {
  margin-top: 12px;
  padding-left: 14px;
  border-left: 2px solid var(--rule);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.business-card-info .quote-preview cite {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.04em;
}
.business-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--forest-deep);
}
.business-card-image img {
  width: 100%; height: 100%; object-fit: cover;
}
@media (max-width: 700px) {
  .business-card { grid-template-columns: 1fr; gap: 16px; }
}

/* --- Source / citation block --- */
.article-sources {
  margin-top: 80px;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.article-sources h4 {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--brass) !important;
  margin: 0 0 16px 0 !important;
  font-weight: 500 !important;
}
.article-sources ul {
  list-style: none;
  padding: 0 !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.7;
}
.article-sources ul li {
  padding: 4px 0;
  color: var(--muted);
  margin-bottom: 0 !important;
}
.article-sources ul li a {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-color: var(--brass);
  text-underline-offset: 3px;
}

/* --- FTC affiliate disclosure --- */
.affiliate-disclosure {
  margin-top: 48px;
  padding: 18px 24px;
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  font-style: italic;
}
.affiliate-disclosure strong {
  font-style: normal;
  font-weight: 500;
  color: var(--forest);
}

/* --- Related articles + property cross-link section --- */
.article-cross-links {
  background: var(--bg-alt);
  padding: 80px 0;
  margin-top: 80px;
  border-top: 1px solid var(--rule);
}
.article-cross-links h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.article-cross-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.article-cross-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 24px;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
  display: block;
}
.article-cross-card:hover {
  border-color: var(--brass);
  transform: translateY(-2px);
}
.article-cross-card .eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin-bottom: 10px;
}
.article-cross-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.25;
  margin: 0;
}


/* Business card map embed */
.business-card-map {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--forest-deep);
  border: 1px solid var(--rule);
}
.business-card-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


/* Article hero — picture element absolute fill */
.article-hero .article-hero-img-pic {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.article-hero .article-hero-img-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Crisp rendering for high-DPI scaling */
img, picture { image-rendering: -webkit-optimize-contrast; }


/* === Find-a-Stay form (homepage hero booking bar) === */
.booking-bar form.search-form { display: contents; }
.booking-bar input[type="date"],
.booking-bar input[type="number"] {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  width: 100%;
  letter-spacing: 0.01em;
}
.booking-bar input[type="date"]:focus,
.booking-bar input[type="number"]:focus {
  color: var(--brass);
}
.booking-bar input::-webkit-datetime-edit-fields-wrapper { padding: 0; }
.booking-bar input::-webkit-calendar-picker-indicator { opacity: 0.5; cursor: pointer; }
.booking-bar input::-webkit-calendar-picker-indicator:hover { opacity: 1; }
/* prevent the field labels from looking different above an input vs a span */
.booking-bar .booking-field { display: flex; flex-direction: column; }
.booking-bar button[type="submit"] { border: none; cursor: pointer; }

/* === /cabins/ filter banner === */
.cabin-filter-banner[hidden] { display: none !important; }
.cabin-filter-banner {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 16px 22px;
  margin: 24px 0 36px;
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; justify-content: space-between;
  font-size: 14px; color: var(--ink);
}
.cabin-filter-banner strong { color: var(--brass-dark); font-weight: 600; }
.cabin-filter-banner a.clear-filter {
  color: var(--brass); font-size: 13px; text-decoration: underline;
  letter-spacing: 0.04em;
}
.col-card.is-filtered-out { display: none !important; }


/* Topbar — Owners Portal link */
.topbar-sep { color: rgba(246,241,232,0.35); margin: 0 6px; }
.topbar a + .topbar-sep + a { color: var(--brass-light); }


/* HERO IMAGE UNIVERSAL FILTER — guarantees white-text-on-image legibility */
.article-hero picture img,
.article-hero-img-pic img,
.article-hero-img {
  filter: brightness(0.78) saturate(1.18) contrast(1.05);
}
/* Also catches the legacy inline-styled hero on /cabins/ */
section[style*="hero"] > div[style*="background-image"],
.collection-hero-img,
section.collection-list-hero > div[style*="background-image"] {
  filter: brightness(0.78) saturate(1.18) contrast(1.05);
}


/* EYEBROW — strong text-shadow, no overpowering pill */
.article-hero-content .article-eyebrow,
.hero-content .hero-eyebrow {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
  border: none;
  border-radius: 0;
  color: var(--brass-light);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-shadow:
    0 1px 2px rgba(0,0,0,0.85),
    0 2px 12px rgba(0,0,0,0.75),
    0 0 24px rgba(0,0,0,0.5);
  margin-bottom: 14px;
}


/* TRIP-CARD: skip universal brightness filter — these are content thumbnails, not heros */
.trip-card-img img,
.col-card img,
.cabin-card img,
.collection-card-img img,
.footer-logo img,
header .logo img,
.links-grid img {
  filter: none !important;
}

/* TRIP-CARD overlay — lighten so photo shows clearly, dark only where text sits */
.trip-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(15, 22, 16, 0.00) 0%,
    rgba(15, 22, 16, 0.04) 45%,
    rgba(15, 22, 16, 0.55) 78%,
    rgba(15, 22, 16, 0.88) 100%
  ) !important;
}


/* =========================
   BATCH 6: A11Y + CRO STYLES
   ========================= */

/* Skip-to-content — first focusable element on every page */
.skip-to-content {
  position: absolute;
  top: 0; left: 0;
  background: var(--forest-deep);
  color: var(--bg);
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.18s ease;
}
.skip-to-content:focus {
  transform: translateY(0);
  outline: 3px solid var(--brass-light);
  outline-offset: 2px;
}

/* Universal focus indicators — keyboard users need to see where they are */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--brass-light);
  outline-offset: 3px;
  border-radius: 2px;
}

/* aria-current — active nav item gets a brass underline */
.nav-links a[aria-current="page"] {
  color: var(--brass-light);
  border-bottom: 2px solid var(--brass-light);
  padding-bottom: 4px;
}

/* Color contrast — body text using brass on cream should use brass-dark */
.body-link { color: var(--brass-dark); text-decoration: underline; }

/* Whitespace bump on major sections (luxury rhythm) */
.intro, .collection, .pull-quote, .setting, .trip-planning, .internal-links, .footer-inner {
  padding-top: clamp(72px, 9vw, 112px);
  padding-bottom: clamp(72px, 9vw, 112px);
}

/* ============ BUTTON SYSTEM (canonical) ============ */
.btn-primary,
.btn-primary:link,
.btn-primary:visited {
  display: inline-block;
  background: var(--brass);
  color: var(--bg);
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--brass);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  cursor: pointer;
}
.btn-primary:hover { background: var(--brass-dark); border-color: var(--brass-dark); }
.btn-primary:active { transform: translateY(1px); }

.btn-secondary,
.btn-secondary:link,
.btn-secondary:visited {
  display: inline-block;
  background: transparent;
  color: var(--forest);
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--forest);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.btn-secondary:hover { background: var(--forest); color: var(--bg); }
/* Reverse on dark backgrounds */
.btn-secondary--light,
.btn-secondary--light:link,
.btn-secondary--light:visited {
  color: var(--bg);
  border-color: rgba(246,241,232,0.55);
}
.btn-secondary--light:hover { background: var(--bg); color: var(--forest); border-color: var(--bg); }

/* ============ PROPERTY PAGE: LARGE PRICE DISPLAY ============ */
.ab-summary-right { text-align: right; }
.ab-summary-right .price-row { display: flex; align-items: baseline; justify-content: flex-end; gap: 8px; margin-bottom: 6px; }
.ab-summary-right .price-from { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.14em; }
.ab-summary-right .price-amount { font-family: 'Fraunces', serif; font-size: 52px; font-weight: 400; color: var(--ink); line-height: 1; }
.ab-summary-right .price-per { font-size: 16px; color: var(--muted); }
.ab-summary-right .cancellation-badge {
  display: block;
  padding: 12px 16px;
  background: rgba(160, 119, 64, 0.08);
  border: 1px solid rgba(160, 119, 64, 0.22);
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--brass-dark);
  letter-spacing: 0.02em;
  margin-top: 16px;
  text-align: right;
}
.ab-summary-right .cancellation-badge strong { color: var(--brass-dark); font-weight: 700; display: inline; }
.ab-summary-right .cancellation-badge-line { display: block; margin-top: 4px; }

/* ============ PROPERTY PAGE: WHY THIS CABIN PULL-QUOTE ============ */
.why-this-cabin {
  background: var(--bg-alt);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 56px 0;
}
.why-this-cabin-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.why-this-cabin .eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-dark);
  font-weight: 600;
  margin-bottom: 18px;
  display: block;
}
.why-this-cabin h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 22px;
  letter-spacing: -0.015em;
}
.why-this-cabin .why-detail {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  max-width: 720px;
  margin: 0 auto;
}

/* ============ STICKY MINI-CTA BAR ============ */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--forest-deep);
  color: var(--bg);
  padding: 14px 18px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.32);
  z-index: 100;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  max-width: calc(100vw - 48px);
}
.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta-price { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 500; color: var(--bg); white-space: nowrap; }
.sticky-cta-price small { font-size: 11px; color: var(--brass-light); letter-spacing: 0.1em; text-transform: uppercase; }
.sticky-cta-btn {
  background: var(--brass);
  color: var(--bg);
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  white-space: nowrap;
  transition: background 0.2s;
}
.sticky-cta-btn:hover { background: var(--brass-dark); }
@media (max-width: 640px) {
  .sticky-cta { bottom: 12px; right: 12px; left: 12px; padding: 10px 14px; }
  .sticky-cta-price { font-size: 15px; }
}

/* ============ CAPACITY RECOMMENDATION ============ */
.recommendation-banner {
  background: linear-gradient(135deg, var(--forest-deep), var(--forest));
  color: var(--bg);
  padding: 28px 32px;
  border-radius: 4px;
  margin: 24px 0 36px;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.recommendation-banner-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-light);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.recommendation-banner-text { font-size: 17px; line-height: 1.55; flex: 1; min-width: 280px; }
.recommendation-banner strong { color: var(--brass-light); }

/* ============ COL-CARD: PROMINENT PRICE ============ */
.col-card .col-card-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  margin-top: 14px;
}
.col-card .col-card-price {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  color: var(--ink);
  font-weight: 400;
}
.col-card .col-card-price-from { font-size: 11px; color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase; }
.col-card .col-card-capacity {
  font-size: 14px;
  color: var(--brass-dark);
  font-weight: 600;
  letter-spacing: 0.04em;
}


/* ARTICLE HERO IMAGES — stronger darkening so white text + brass eyebrow always read */
.article-hero-img-pic img,
.article-hero picture img {
  filter: brightness(0.68) saturate(1.15) contrast(1.04) !important;
}
.article-hero picture { position: absolute; inset: 0; width: 100%; height: 100%; }
.article-hero picture img { width: 100%; height: 100%; object-fit: cover; }





/* FOOTER LOGO WHITE KNOCKOUT — Squarespace PNG is green; invert to white */
.footer-logo img {
  height: 106px !important;
  max-width: 290px !important;
  display: block;
}

/* FOOTER BOTTOM — opaque text + Snake River Strategies credit */
.footer-bottom { color: var(--bg); font-size: 14px; letter-spacing: 0.04em; }
.footer-bottom a { color: var(--bg); }
.footer-credit {
  text-align: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(246,241,232,0.18);
  font-size: 13px;
  color: var(--bg);
  letter-spacing: 0.04em;
}
.footer-credit a {
  color: var(--bg);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.footer-credit a:hover { color: var(--brass-light); }


/* NAV ACTIONS GROUP — Reserve + Owners Portal sit tight together on right */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
header .nav { justify-content: space-between; gap: 24px; }
header .nav-links { flex: 0 1 auto; }
@media (max-width: 1200px) {
  .nav-actions .nav-cta--secondary { display: none; }
}
@media (max-width: 980px) {
  .nav-links { display: none; }
}


/* =========================
   BATCH 10: MOBILE + CRO
   ========================= */

/* MOBILE HAMBURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(246,241,232,0.4);
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  position: relative;
  border-radius: 3px;
}
.mobile-menu-toggle span {
  display: block;
  position: absolute;
  left: 10px;
  width: 22px;
  height: 1.5px;
  background: var(--bg);
  transition: transform 0.25s, opacity 0.25s, top 0.25s;
}
.mobile-menu-toggle span:nth-child(1) { top: 14px; }
.mobile-menu-toggle span:nth-child(2) { top: 21px; }
.mobile-menu-toggle span:nth-child(3) { top: 28px; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: min(85vw, 380px);
  height: 100vh;
  background: var(--forest-deep);
  color: var(--bg);
  padding: 96px 28px 40px;
  box-shadow: -16px 0 48px rgba(0,0,0,0.45);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.2,0.8,0.2,1);
  z-index: 9000;
  overflow-y: auto;
  pointer-events: none;  /* don't steal clicks when off-screen */
}
.mobile-menu.is-open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,22,16,0.55);
  backdrop-filter: blur(4px);
  z-index: 8999;
  opacity: 0;
  pointer-events: none;  /* invisible when closed — must not steal clicks (especially from the hamburger) */
  transition: opacity 0.32s;
}
.mobile-menu-backdrop.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu ul { list-style: none; padding: 0; margin: 0 0 32px; }
.mobile-menu li { margin: 0; padding: 0; border-bottom: 1px solid rgba(246,241,232,0.12); }
.mobile-menu li a {
  display: block;
  padding: 18px 0;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--bg);
  text-decoration: none;
}
.mobile-menu li a:hover { color: var(--brass-light); }
.mobile-menu-cta {
  display: block;
  background: var(--brass);
  color: var(--bg);
  padding: 18px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  margin-bottom: 14px;
  border-radius: 3px;
}
.mobile-menu-secondary {
  display: block;
  background: transparent;
  color: var(--bg);
  padding: 16px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(246,241,232,0.4);
  border-radius: 3px;
}

@media (max-width: 980px) {
  .mobile-menu-toggle { display: block; }
  .mobile-menu, .mobile-menu-backdrop { display: block; }
  /* Don't show desktop nav-actions buttons on mobile — replaced by hamburger */
  .nav-links { display: none; }
  .nav-actions .nav-cta { display: none; }
}
/* Body scroll lock when mobile menu open */
body.mobile-menu-open { overflow: hidden; }

/* TOUCH TARGETS — minimum 44x44 on interactive elements */
@media (max-width: 980px) {
  .booking-bar button[type="submit"] { min-height: 48px; }
  .nav-cta { min-height: 44px; padding: 12px 22px !important; }
  footer ul li a { padding: 6px 0; }
  .article-toc a { padding: 8px 0; min-height: 36px; }
}

/* ARTICLE — INLINE PROPERTY RECOMMENDATION (editorial pullout) */
.article-cabin-rec {
  margin: 56px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: transparent;
  padding: 0;
}
.article-cabin-rec a.article-cabin-rec-link {
  display: grid;
  grid-template-columns: minmax(260px, 38%) 1fr;
  gap: 36px;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  padding: 36px 0;
  transition: opacity 0.25s ease;
}
.article-cabin-rec a.article-cabin-rec-link:hover { opacity: 0.88; }
.article-cabin-rec-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--forest-deep);
}
.article-cabin-rec-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1);
  filter: none !important;
}
.article-cabin-rec a.article-cabin-rec-link:hover .article-cabin-rec-photo img {
  transform: scale(1.03);
}
.article-cabin-rec-body { padding: 4px 0; }
.article-cabin-rec-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-bottom: 14px;
}
.article-cabin-rec-name {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 12px;
}
.article-cabin-rec-pitch {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--forest);
  margin: 0 0 22px;
  font-weight: 300;
}
.article-cabin-rec-meta {
  display: flex;
  gap: 28px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  margin-bottom: 18px;
}
.article-cabin-rec-meta strong { color: var(--ink); font-weight: 500; }
.article-cabin-rec-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-dark);
  border-bottom: 1px solid var(--brass-dark);
  padding-bottom: 4px;
}
.article-cabin-rec-cta::after { content: '→'; font-size: 14px; }

.article-cabin-rec-cta-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px 24px;
  margin-top: 4px;
}
.article-cabin-rec-cta-secondary {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: color 0.2s;
}
.article-cabin-rec-cta-secondary:hover { color: var(--brass-dark); }

@media (max-width: 760px) {
  .article-cabin-rec a.article-cabin-rec-link {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 0;
  }
  .article-cabin-rec-photo { aspect-ratio: 16/10; }
  .article-cabin-rec-meta { gap: 18px; flex-wrap: wrap; }
}

/* ARTICLE FLOATING STICKY CTA */
.article-sticky-cta {
  position: fixed;
  bottom: 22px; right: 22px;
  background: var(--forest-deep);
  color: var(--bg);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.32);
  z-index: 90;
  opacity: 0; transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  max-width: calc(100vw - 44px);
  text-decoration: none;
}
.article-sticky-cta.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.article-sticky-cta-text { font-size: 13px; color: var(--bg); line-height: 1.35; max-width: 200px; }
.article-sticky-cta-text strong { display: block; font-family: 'Fraunces', serif; font-size: 16px; font-weight: 400; }
.article-sticky-cta-btn {
  background: var(--brass);
  color: var(--bg);
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .article-sticky-cta { left: 12px; right: 12px; bottom: 14px; padding: 10px 12px; }
}

/* Email modal CSS removed 2026-06-16 — feature was killed in Batch 11; no markup used .gv-modal* */


/* Picture wrapper fix — picture defaults to inline, so child img collapses to 0 height.
   Required when ab-hero-grid or gallery-grid items use <picture> for srcset. */
.ab-hero-grid picture,
.gallery-grid picture,
.gallery-item picture {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
}


/* gallery hover caption (added with brief 2.1 curation) */
.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px 16px 14px;
  background: linear-gradient(to top, rgba(20, 28, 24, 0.85), rgba(20, 28, 24, 0));
  color: var(--bg);
  font-family: var(--font-body, system-ui);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.gallery-item:hover .gallery-caption,
.gallery-item:focus-within .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  /* on touch devices: show caption always at slight opacity */
  .gallery-caption { opacity: 0.92; transform: translateY(0); font-size: 12px; padding: 10px 12px; }
}


/* 3.6 phone CTAs — header phone + sticky CTA phone icon */
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--bg);
  text-decoration: none;
  font-family: var(--font-body, system-ui);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 8px 10px;
  border-radius: 4px;
  margin-right: 4px;
  transition: opacity 0.2s ease;
}
.nav-phone:hover { opacity: 0.75; }
.nav-phone svg { flex-shrink: 0; }
.nav-phone-text { white-space: nowrap; }
@media (max-width: 1100px) {
  .nav-phone-text { display: none; }
  .nav-phone { padding: 6px 8px; }
}
@media (max-width: 600px) {
  /* on phone: hide header phone — sticky CTA covers it */
  .nav-phone { display: none; }
}

.sticky-cta-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-right: 8px;
  border: 1px solid var(--brass);
  background: transparent;
  color: var(--brass);
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.sticky-cta-phone:hover {
  background: var(--brass);
  color: var(--bg);
}


/* 3.5 book-direct value module */
.value-prop {
  max-width: 980px;
  margin: 0 auto 56px;
  padding: 32px 24px;
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-radius: 4px;
}
.value-prop-head { text-align: center; margin-bottom: 28px; }
.value-prop-head .eyebrow {
  display: block;
  color: var(--brass);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.value-prop-head h3 {
  font-size: clamp(22px, 2.5vw, 28px);
  color: var(--forest);
  margin: 0;
  line-height: 1.25;
}
.value-prop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 700px) {
  .value-prop-grid { grid-template-columns: 1fr; }
}
.value-prop-col {
  padding: 22px 20px;
  border-radius: 4px;
}
.value-prop-col--us {
  background: var(--bg);
  border: 1.5px solid var(--brass);
}
.value-prop-col--them {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--rule);
  opacity: 0.92;
}
.value-prop-col-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.value-prop-col--them .value-prop-col-label { color: var(--muted); }
.value-prop-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  color: var(--ink);
  padding: 6px 0;
}
.value-prop-row strong {
  font-family: var(--font-display, Fraunces), serif;
  font-weight: 400;
  color: var(--forest);
  font-size: 16px;
}
.value-prop-row--total {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}
.value-prop-row--total strong { font-size: 20px; }
.value-prop-features {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.value-prop-features li {
  position: relative;
  padding: 6px 0 6px 18px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink);
}
.value-prop-col--us .value-prop-features li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--brass);
  font-weight: 500;
}
.value-prop-col--them .value-prop-features li::before {
  content: "−";
  position: absolute;
  left: 0;
  color: var(--muted);
}
.value-prop-savings {
  text-align: center;
  margin: 16px 0 0;
  font-size: 15px;
  color: var(--ink);
  font-style: italic;
}
.value-prop-savings strong {
  font-style: normal;
  color: var(--brass-dark);
  font-weight: 500;
}


/* 3.1 comparison table */
.comparison-table-section {
  background: var(--bg-alt);
  padding: 80px 0;
  border-top: 1px solid var(--rule);
}
.comparison-table-head {
  text-align: center;
  margin-bottom: 36px;
}
.comparison-table-head .eyebrow {
  display: block;
  color: var(--brass);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.comparison-table-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--forest);
  margin: 0 0 8px;
  font-weight: 300;
}
.comparison-table-head p {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 20px;
}
.comparison-sort {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.comparison-sort-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 4px;
}
.comparison-sort-btn {
  font-family: inherit;
  font-size: 13px;
  padding: 8px 14px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.comparison-sort-btn:hover {
  background: var(--bg);
  border-color: var(--brass);
}
.comparison-sort-btn.is-active {
  background: var(--brass);
  color: var(--bg);
  border-color: var(--brass);
}
.comparison-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 900px;
  background: var(--bg);
}
.comparison-table thead {
  background: var(--forest);
  color: var(--bg);
}
.comparison-table th,
.comparison-table td {
  text-align: left;
  padding: 14px 12px;
  vertical-align: middle;
  border-bottom: 1px solid var(--rule);
}
.comparison-table thead th {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 0;
}
.comparison-table tbody tr:hover {
  background: var(--bg-alt);
}
.comparison-table th.ct-name {
  text-align: left;
  position: sticky;
  left: 0;
  background: inherit;
  z-index: 1;
}
.comparison-table tbody th.ct-name {
  background: var(--bg);
  font-weight: 400;
  font-family: var(--font-display, Fraunces), serif;
  font-size: 16px;
  color: var(--forest);
}
.comparison-table tbody tr:hover th.ct-name { background: var(--bg-alt); }
.comparison-table th.ct-name a { color: inherit; border: none; text-decoration: none; }
.comparison-table th.ct-name a:hover { color: var(--brass-dark); }
.comparison-table .ct-num {
  text-align: center;
  font-family: var(--font-display, Fraunces), serif;
  font-size: 17px;
  color: var(--forest);
  font-weight: 300;
}
.comparison-table .ct-cta { text-align: center; }
.ct-cta-btn {
  display: inline-block;
  padding: 8px 12px;
  background: var(--brass);
  color: var(--bg);
  border: 0;
  border-radius: 3px;
  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}
.ct-cta-btn:hover { background: var(--brass-dark); color: var(--bg); }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


