:root {
    --pine-dark: #1a2e1a;
    --pine: #2d4a2d;
    --lake-deep: #1a3a4a;
    --lake: #2a5a6a;
    --sand: #e8dcc8;
    --sand-light: #f5f0e6;
    --warm: #c47a3a;
    --warm-light: #d4944a;
    --copper: #b87333;
    --cream: #faf6ee;
    --bark: #3d2b1f;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { background: var(--cream); font-family: 'DM Sans', sans-serif; color: #4a4a4a; overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: linear-gradient(180deg, rgba(26,46,26,0.95), rgba(26,46,26,0.85));
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45,74,45,0.27);
  }
  .nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 14px 24px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .nav-logo {
    font-family: 'Playfair Display', Georgia, serif; font-size: 20px; font-weight: 800;
    color: var(--sand-light); letter-spacing: 1px; cursor: pointer; text-decoration: none;
  }
  .nav-logo em { color: var(--warm); font-style: normal; }
  .nav-links { display: flex; gap: 28px; align-items: center; }
  .nav-link {
    color: var(--sand-light); text-decoration: none; font-size: 13px; font-weight: 500;
    letter-spacing: 1.5px; text-transform: uppercase; padding: 8px 0;
    border-bottom: 2px solid transparent; transition: border-color 0.3s;
  }
  .nav-link:hover { border-bottom-color: var(--warm); }
  .nav-btn {
    background: var(--warm); color: white; text-decoration: none; font-size: 13px;
    font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 10px 24px; border-radius: 6px; transition: background 0.3s;
  }
  .nav-btn:hover { background: var(--warm-light); }

  /* HERO */
  .hero {
    position: relative; min-height: 100vh; display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    background: linear-gradient(170deg, var(--pine-dark) 0%, var(--lake-deep) 50%, var(--lake) 100%);
    overflow: hidden; padding: 0 24px;
  }
  .hero-water {
    position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
    background: linear-gradient(180deg, transparent 0%, rgba(26,58,74,0.2) 50%, rgba(42,90,106,0.27) 100%);
    opacity: 0.5;
  }
  .star { position: absolute; background: white; border-radius: 50%; animation: twinkle 3s ease-in-out infinite; }
  @keyframes twinkle { 0%, 100% { opacity: 0.2; } 50% { opacity: 0.8; } }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
  .hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; }
  .hero-tag {
    font-size: 13px; font-weight: 500; letter-spacing: 5px; text-transform: uppercase;
    color: var(--copper); margin-bottom: 20px; animation: fadeUp 1s ease-out;
  }
  .hero-title {
    font-family: 'Playfair Display', Georgia, serif; font-size: clamp(42px, 8vw, 86px);
    font-weight: 900; color: var(--cream); line-height: 1.05; margin-bottom: 24px;
    animation: fadeUp 1s ease-out 0.2s both;
  }
  .hero-title em { color: var(--warm); font-style: normal; }
  .hero-sub {
    font-size: 18px; font-weight: 300; color: rgba(232,220,200,0.8);
    max-width: 560px; margin: 0 auto 40px; line-height: 1.7;
    animation: fadeUp 1s ease-out 0.4s both;
  }
  .hero-cta-wrap {
    animation: fadeUp 1s ease-out 0.6s both;
    display: flex; flex-direction: column; align-items: center; gap: 14px;
  }
  .hero-cta {
    display: inline-block; background: var(--warm); color: white; text-decoration: none;
    font-size: 14px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    padding: 16px 48px; border-radius: 8px; transition: all 0.3s;
    box-shadow: 0 4px 24px rgba(196,122,58,0.27);
  }
  .hero-cta:hover {
    background: #e0943a; transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(196,122,58,0.45);
  }
  .hero-cta--secondary {
    background: transparent; border: 2px solid rgba(232,220,200,0.35);
    box-shadow: none; font-size: 13px; padding: 12px 36px;
  }
  .hero-cta--secondary:hover {
    background: rgba(232,220,200,0.15); border-color: var(--cream);
    transform: translateY(-3px); box-shadow: 0 6px 24px rgba(232,220,200,0.12);
  }
  .treeline { position: absolute; bottom: 0; left: 0; right: 0; }
  .treeline svg { display: block; width: 100%; height: 80px; }

  /* SHARED */
  .section { padding: 100px 24px 80px; max-width: 900px; margin: 0 auto; }
  .section-tag {
    font-size: 14px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
    color: var(--warm); margin-bottom: 4px;
  }
  .section-tag.light { color: var(--copper); }
  .section-title {
    font-family: 'Playfair Display', Georgia, serif; font-size: clamp(28px, 4vw, 42px);
    font-weight: 700; color: var(--pine-dark); margin-bottom: 8px; line-height: 1.2;
  }
  .section-title.light { color: var(--cream); }
  .accent-bar { width: 60px; height: 3px; background: var(--warm); margin: 20px 0 32px; border-radius: 2px; }
  .accent-bar.center { margin: 20px auto 24px; }
  .body-text { font-size: 17px; line-height: 1.9; }
  .body-text p { margin-bottom: 20px; }
  .body-text p:last-child { margin-bottom: 0; }

  /* WAVES */
  .waves svg { display: block; width: 100%; height: 60px; }

  /* DINING */
  .dining-section { background: var(--cream); padding: 20px 24px 60px; }
  .dining-inner { max-width: 1000px; margin: 0 auto; }
  .dining-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .dining-card {
    background: white; border-radius: 14px; padding: 28px;
    box-shadow: 0 3px 16px rgba(0,0,0,0.05); border: 1px solid #e8e0d4;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .dining-card:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(0,0,0,0.08); }
  .dining-card.featured { border-top: 4px solid var(--warm); }
  .dining-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
  .dining-name {
    font-family: 'Playfair Display', Georgia, serif; font-size: 20px; font-weight: 700; color: var(--bark);
  }
  .dining-loc { font-size: 12px; color: #999; margin-top: 3px; letter-spacing: 0.5px; }
  .dining-badge {
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 4px 10px; border-radius: 20px; white-space: nowrap;
  }
  .dining-badge.challenge { background: #fef3e2; color: var(--warm); }
  .dining-badge.gotospot { background: #f0f7f0; color: var(--pine); }
  .dining-desc { font-size: 14px; line-height: 1.7; color: #555; }
  .dining-tip {
    margin-top: 14px; padding: 12px 16px; background: var(--sand-light); border-radius: 8px;
    font-size: 13px; line-height: 1.6; color: #666; border-left: 3px solid var(--warm);
  }
  .dining-tip strong { color: var(--bark); }

  /* CHALLENGE */
  .challenge-section {
    background: linear-gradient(170deg, var(--pine-dark), var(--lake-deep));
    padding: 100px 24px;
  }
  .challenge-inner { max-width: 900px; margin: 0 auto; }
  .challenge-desc {
    font-size: 17px; line-height: 1.8; color: rgba(232,220,200,0.8);
    max-width: 700px; margin: 0 auto 48px; text-align: center;
  }
  .challenge-desc strong { color: var(--cream); }
  .challenge-matchup {
    display: flex; gap: 24px; align-items: stretch; margin-bottom: 40px;
  }
  .challenger {
    flex: 1; background: rgba(250,246,238,0.06); border-radius: 16px; padding: 32px;
    border: 1px solid rgba(250,246,238,0.1); text-align: center;
  }
  .challenger-name {
    font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 700;
    color: var(--cream); margin-bottom: 4px;
  }
  .challenger-loc { font-size: 12px; color: rgba(232,220,200,0.5); margin-bottom: 16px; letter-spacing: 1px; }
  .challenger-item {
    font-family: 'DM Serif Display', Georgia, serif; font-size: 18px;
    color: var(--warm); margin-bottom: 4px;
  }
  .challenger-detail { font-size: 13px; color: rgba(232,220,200,0.6); line-height: 1.6; }
  .challenge-vs {
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', Georgia, serif; font-size: 24px; font-weight: 800;
    color: var(--warm); min-width: 50px;
  }

  /* SCORECARD */
  .scorecard {
    background: rgba(250,246,238,0.08); border-radius: 16px; padding: 36px;
    border: 1px solid rgba(250,246,238,0.1);
  }
  .scorecard-title {
    font-family: 'Playfair Display', Georgia, serif; font-size: 24px; font-weight: 700;
    color: var(--cream); text-align: center; margin-bottom: 4px;
  }
  .scorecard-subtitle {
    font-size: 13px; color: rgba(232,220,200,0.5); text-align: center; margin-bottom: 28px;
  }
  .score-row {
    display: flex; align-items: center; padding: 14px 0;
    border-bottom: 1px solid rgba(250,246,238,0.06);
  }
  .score-row:last-of-type { border-bottom: none; }
  .score-label {
    font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    color: rgba(232,220,200,0.7); width: 140px; flex-shrink: 0;
  }
  .score-bar-wrap { flex: 1; display: flex; align-items: center; gap: 12px; }
  .score-bar {
    flex: 1; height: 10px; border-radius: 5px; overflow: hidden; display: flex;
    background: rgba(250,246,238,0.06);
  }
  .bar-mickey { background: linear-gradient(90deg, #dc2626, #ef4444); transition: width 0.8s ease; border-radius: 5px 0 0 5px; }
  .bar-joz { background: linear-gradient(90deg, var(--lake), #3a7a9a); transition: width 0.8s ease; border-radius: 0 5px 5px 0; }
  .score-count {
    font-family: 'DM Serif Display', Georgia, serif; font-size: 14px; min-width: 60px; text-align: center;
  }
  .score-count.mickey { color: #ef4444; }
  .score-count.joz { color: #6ab0cc; }

  .scorecard-footer {
    margin-top: 28px; text-align: center; padding: 20px;
    background: rgba(196,122,58,0.1); border-radius: 12px;
  }
  .scorecard-footer p {
    font-size: 15px; color: var(--cream); line-height: 1.7;
  }
  .scorecard-footer strong { color: var(--warm); }
  .scorecard-total {
    font-size: 12px; color: rgba(232,220,200,0.4); text-align: center; margin-top: 16px;
  }

  /* BINARY SCORECARD */
  .binary-matchup {
    display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 32px;
  }
  .binary-side {
    flex: 1; text-align: center; padding: 24px 16px;
  }
  .binary-votes {
    font-family: 'Playfair Display', Georgia, serif; font-size: clamp(48px, 8vw, 72px);
    font-weight: 900; line-height: 1;  margin-bottom: 8px;
  }
  .binary-side.mickey .binary-votes { color: #ef4444; }
  .binary-side.joz .binary-votes { color: #6ab0cc; }
  .binary-name {
    font-family: 'Playfair Display', Georgia, serif; font-size: 20px; font-weight: 700;
    color: var(--cream); margin-bottom: 2px;
  }
  .binary-loc { font-size: 12px; color: rgba(232,220,200,0.45); letter-spacing: 1px; }
  .binary-center { text-align: center; padding: 0 16px; flex-shrink: 0; }
  .binary-vs {
    font-family: 'Playfair Display', Georgia, serif; font-size: 20px; font-weight: 800;
    color: var(--warm); margin-bottom: 4px;
  }
  .binary-total { font-size: 12px; color: rgba(232,220,200,0.4); white-space: nowrap; }
  .binary-bar-wrap { margin-bottom: 28px; padding: 0 16px; }
  .binary-bar {
    display: flex; height: 14px; border-radius: 7px; overflow: hidden;
    background: rgba(250,246,238,0.06);
  }
  .binary-fill.mickey {
    background: linear-gradient(90deg, #dc2626, #ef4444);
    transition: width 0.8s ease; border-radius: 7px 0 0 7px;
  }
  .binary-fill.joz {
    background: linear-gradient(90deg, var(--lake), #6ab0cc);
    transition: width 0.8s ease; border-radius: 0 7px 7px 0;
  }
  .binary-labels { display: flex; justify-content: space-between; margin-top: 8px; }
  .binary-pct { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; }
  .binary-pct.mickey { color: #ef4444; }
  .binary-pct.joz { color: #6ab0cc; }

  /* GUEST QUOTES */
  .guest-quotes {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px;
  }
  .guest-quote {
    background: rgba(250,246,238,0.06); border-radius: 12px; padding: 20px;
    border: 1px solid rgba(250,246,238,0.08);
  }
  .guest-quote p {
    font-size: 14px; font-style: italic; color: rgba(232,220,200,0.7); line-height: 1.7;
    margin-bottom: 8px;
  }
  .guest-quote cite {
    font-size: 12px; color: rgba(232,220,200,0.4); font-style: normal;
  }

  /* HIKING */
  .hiking-section { background: var(--cream); padding: 40px 24px 100px; }
  .hiking-inner { max-width: 1000px; margin: 0 auto; }
  .hiking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .hike-card {
    background: white; border-radius: 14px; padding: 28px;
    box-shadow: 0 3px 16px rgba(0,0,0,0.05); border: 1px solid #e8e0d4;
    transition: transform 0.3s;
  }
  .hike-card:hover { transform: translateY(-3px); }
  .hike-card.full-width { grid-column: 1 / -1; }
  .hike-name {
    font-family: 'Playfair Display', Georgia, serif; font-size: 18px; font-weight: 700;
    color: var(--bark); margin-bottom: 4px;
  }
  .hike-distance {
    font-size: 12px; color: var(--warm); font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 10px;
  }
  .hike-desc { font-size: 14px; line-height: 1.7; color: #555; }
  .hike-tip {
    margin-top: 12px; padding: 10px 14px; background: var(--sand-light); border-radius: 8px;
    font-size: 13px; color: #666; border-left: 3px solid var(--pine);
  }
  .hike-tip strong { color: var(--bark); }
  .hike-tags { margin-top: 12px; display: flex; gap: 6px; flex-wrap: wrap; }
  .hike-tag {
    font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px;
    background: #f0f7f0; color: var(--pine); letter-spacing: 0.5px;
  }

  /* GOLF */
  .golf-section { background: var(--sand-light); padding: 100px 24px; }
  .golf-inner { max-width: 1000px; margin: 0 auto; }
  .golf-group-label {
    font-family: 'Playfair Display', Georgia, serif; font-size: 20px; font-weight: 700;
    color: var(--bark); margin: 40px 0 16px; padding-bottom: 8px;
    border-bottom: 2px solid #e8e0d4;
  }
  .golf-group-label:first-of-type { margin-top: 0; }
  .golf-group-sub { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 400; color: #999; }
  .golf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 8px; }
  .golf-card {
    background: white; border-radius: 14px; padding: 28px;
    box-shadow: 0 3px 16px rgba(0,0,0,0.05); border: 1px solid #e8e0d4;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .golf-card:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(0,0,0,0.08); }
  .golf-card.featured { border-top: 4px solid var(--pine); }
  .golf-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
  .golf-name {
    font-family: 'Playfair Display', Georgia, serif; font-size: 20px; font-weight: 700; color: var(--bark);
  }
  .golf-loc { font-size: 12px; color: #999; margin-top: 3px; letter-spacing: 0.5px; }
  .golf-meta { flex-shrink: 0; }
  .golf-badge {
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 4px 10px; border-radius: 20px; white-space: nowrap;
  }
  .golf-badge.nearby { background: #e8f5e9; color: var(--pine); }
  .golf-badge.historic { background: #fef3e2; color: var(--warm); }
  .golf-badge.long { background: #e3f2fd; color: #1565c0; }
  .golf-badge.championship { background: #fce4ec; color: #c62828; }
  .golf-details {
    display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 10px;
  }
  .golf-details span {
    font-size: 12px; font-weight: 600; color: var(--pine); letter-spacing: 0.5px;
    background: #f0f7f0; padding: 3px 10px; border-radius: 20px;
  }
  .golf-desc { font-size: 14px; line-height: 1.7; color: #555; }
  .golf-link {
    display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 600;
    color: var(--warm); text-decoration: none; letter-spacing: 0.5px;
    border-bottom: 1px solid transparent; transition: border-color 0.2s;
  }
  .golf-link:hover { border-bottom-color: var(--warm); }
  .golf-footer-note {
    margin-top: 40px; text-align: center;
    padding: 20px; background: white; border-radius: 12px;
    border: 1px solid #e8e0d4;
  }
  .golf-footer-note p { font-size: 14px; color: #888; line-height: 1.6; }

  /* GALLERY */
  .gallery-section { background: var(--sand-light); padding: 100px 24px; }
  .gallery-inner { max-width: 1000px; margin: 0 auto; }
  .gallery-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  }
  .gallery-item {
    position: relative; border-radius: 14px; overflow: hidden;
    box-shadow: 0 3px 16px rgba(0,0,0,0.08);
  }
  .gallery-item.large { grid-column: 1 / -1; }
  .gallery-item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.5s ease;
  }
  .gallery-item.large img { max-height: 480px; }
  .gallery-item:not(.large) img { height: 260px; }
  .gallery-item:hover img { transform: scale(1.03); }
  .gallery-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    font-size: 14px; font-weight: 500; color: white;
    opacity: 0; transition: opacity 0.3s;
  }
  .gallery-item:hover .gallery-caption { opacity: 1; }
  .gallery-item { cursor: pointer; }

  /* LIGHTBOX */
  .lightbox {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 200;
    background: rgba(0,0,0,0.92); display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
  }
  .lightbox.active { opacity: 1; visibility: visible; }
  .lightbox img {
    max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px;
    box-shadow: 0 8px 48px rgba(0,0,0,0.5);
  }
  .lightbox-close {
    position: absolute; top: 20px; right: 24px;
    background: none; border: none; color: white; font-size: 32px;
    cursor: pointer; opacity: 0.7; transition: opacity 0.2s;
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  }
  .lightbox-close:hover { opacity: 1; }
  .lightbox-prev, .lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.1); border: none; color: white; font-size: 28px;
    cursor: pointer; width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    opacity: 0.6; transition: opacity 0.2s, background 0.2s;
  }
  .lightbox-prev:hover, .lightbox-next:hover { opacity: 1; background: rgba(255,255,255,0.2); }
  .lightbox-prev { left: 20px; }
  .lightbox-next { right: 20px; }
  .lightbox-caption {
    position: absolute; bottom: 24px; left: 0; right: 0; text-align: center;
    color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500;
  }
  .lightbox-counter {
    position: absolute; top: 24px; left: 24px;
    color: rgba(255,255,255,0.5); font-size: 13px;
  }

  /* BOOK */
  .book-section {
    padding: 100px 24px; text-align: center;
    background: linear-gradient(170deg, var(--pine-dark), var(--lake-deep));
  }
  .book-inner { max-width: 600px; margin: 0 auto; }
  .book-inner--wide { max-width: 960px; }
  .book-desc {
    font-size: 17px; line-height: 1.8; color: rgba(232,220,200,0.8); margin-bottom: 36px;
  }
  .book-cta {
    display: inline-block; background: var(--warm); color: white; text-decoration: none;
    font-size: 14px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    padding: 18px 56px; border-radius: 8px; transition: all 0.3s;
    box-shadow: 0 4px 24px rgba(196,122,58,0.27);
  }
  .book-cta:hover { background: var(--warm-light); transform: translateY(-2px); }

  /* CALENDAR WIDGET */
  .cal-widget {
    background: rgba(250,246,238,0.08); border-radius: 16px; padding: 32px;
    border: 1px solid rgba(250,246,238,0.1); position: relative;
  }
  .cal-nav {
    display: flex; justify-content: space-between; margin-bottom: 20px;
  }
  .cal-nav-btn {
    background: rgba(250,246,238,0.1); border: 1px solid rgba(250,246,238,0.15);
    color: var(--cream); font-size: 18px; width: 40px; height: 40px;
    border-radius: 8px; cursor: pointer; transition: background 0.2s;
    display: flex; align-items: center; justify-content: center;
  }
  .cal-nav-btn:hover { background: rgba(250,246,238,0.18); }
  .cal-nav-btn:disabled { opacity: 0.3; cursor: default; }
  .cal-nav-btn:disabled:hover { background: rgba(250,246,238,0.1); }

  .cal-loading {
    text-align: center; padding: 40px 0; color: rgba(232,220,200,0.6);
    font-size: 15px; display: none;
  }
  .cal-loading.active { display: block; }

  .cal-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  }

  .cal-month-title {
    font-family: 'Playfair Display', Georgia, serif; font-size: 20px; font-weight: 700;
    color: var(--cream); text-align: center; margin-bottom: 12px;
  }
  .cal-dow {
    display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 4px;
  }
  .cal-dow span {
    text-align: center; font-size: 11px; font-weight: 600; color: rgba(232,220,200,0.4);
    letter-spacing: 1px; text-transform: uppercase; padding: 4px 0;
  }
  .cal-days {
    display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px;
  }
  .cal-day {
    position: relative; text-align: center; padding: 6px 2px;
    border-radius: 6px; min-height: 48px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
  }
  .cal-day-num {
    font-size: 14px; font-weight: 600; line-height: 1.2;
  }
  .cal-day-rate {
    font-size: 9px; color: rgba(232,220,200,0.5); line-height: 1; margin-top: 1px;
  }

  /* Day states */
  .cal-day--available {
    background: rgba(45,120,45,0.2); border: 1px solid rgba(45,120,45,0.3);
  }
  .cal-day--available .cal-day-num { color: #6fcf6f; }
  .cal-day--available .cal-day-rate { color: rgba(111,207,111,0.6); }

  .cal-day--booked {
    background: rgba(180,50,50,0.15); border: 1px solid rgba(180,50,50,0.25);
  }
  .cal-day--booked .cal-day-num {
    color: rgba(220,100,100,0.7); text-decoration: line-through;
  }

  .cal-day--past {
    opacity: 0.3;
  }
  .cal-day--past .cal-day-num { color: rgba(232,220,200,0.5); }

  .cal-day--today {
    outline: 2px solid var(--warm); outline-offset: -1px;
  }

  .cal-day--empty { min-height: 0; }

  /* Legend */
  .cal-legend {
    display: flex; justify-content: center; gap: 20px; margin-top: 24px;
    flex-wrap: wrap;
  }
  .cal-legend-item {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; color: rgba(232,220,200,0.6);
  }
  .cal-swatch {
    width: 14px; height: 14px; border-radius: 4px; display: inline-block;
  }
  .cal-swatch--available {
    background: rgba(45,120,45,0.35); border: 1px solid rgba(45,120,45,0.5);
  }
  .cal-swatch--booked {
    background: rgba(180,50,50,0.3); border: 1px solid rgba(180,50,50,0.4);
  }
  .cal-swatch--today {
    background: rgba(250,246,238,0.1); border: 2px solid var(--warm);
  }
  .cal-swatch--past {
    background: rgba(250,246,238,0.08); border: 1px solid rgba(250,246,238,0.12);
    opacity: 0.4;
  }

  /* Info bar */
  .cal-info {
    display: flex; justify-content: center; gap: 24px; margin-top: 16px;
    flex-wrap: wrap;
  }
  .cal-info span {
    font-size: 12px; color: rgba(232,220,200,0.4); letter-spacing: 0.5px;
  }

  /* Fallback */
  .cal-fallback {
    text-align: center; padding: 40px 0; color: rgba(232,220,200,0.6);
    font-size: 15px;
  }

  /* PASTY PAGE */
  .pasty-hero {
    padding: 160px 24px 80px; text-align: center;
    background: linear-gradient(170deg, var(--pine-dark) 0%, var(--lake-deep) 50%, var(--lake) 100%);
  }
  .pasty-hero-content { max-width: 700px; margin: 0 auto; }
  .pasty-hero-sub {
    font-size: 18px; font-weight: 300; color: rgba(232,220,200,0.8);
    max-width: 600px; margin: 0 auto; line-height: 1.8;
  }

  .pasty-history-section {
    background: linear-gradient(170deg, var(--pine-dark), var(--lake-deep));
    padding: 100px 24px;
  }
  .pasty-history-inner { max-width: 800px; margin: 0 auto; }
  .pasty-timeline { display: flex; flex-direction: column; gap: 32px; }
  .pasty-era {
    display: flex; gap: 28px; align-items: flex-start;
    background: rgba(250,246,238,0.06); border-radius: 14px; padding: 28px;
    border: 1px solid rgba(250,246,238,0.1);
  }
  .pasty-era-date {
    font-family: 'Playfair Display', Georgia, serif; font-size: 18px; font-weight: 800;
    color: var(--warm); min-width: 100px; flex-shrink: 0; padding-top: 2px;
  }
  .pasty-era-text h3 {
    font-family: 'Playfair Display', Georgia, serif; font-size: 20px; font-weight: 700;
    color: var(--cream); margin-bottom: 8px;
  }
  .pasty-era-text p {
    font-size: 15px; line-height: 1.8; color: rgba(232,220,200,0.7);
  }

  .pasty-debates { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .pasty-debate-card {
    background: white; border-radius: 14px; padding: 28px;
    box-shadow: 0 3px 16px rgba(0,0,0,0.05); border: 1px solid #e8e0d4;
    border-top: 4px solid var(--warm);
  }
  .pasty-debate-title {
    font-family: 'Playfair Display', Georgia, serif; font-size: 18px; font-weight: 700;
    color: var(--bark); margin-bottom: 10px;
  }
  .pasty-debate-desc { font-size: 14px; line-height: 1.7; color: #555; }

  .pasty-shops-section { background: var(--cream); padding: 60px 24px 100px; }
  .pasty-shops-inner { max-width: 1000px; margin: 0 auto; }

  .pasty-fest-section {
    background: linear-gradient(170deg, var(--pine-dark), var(--lake-deep));
    padding: 80px 24px; text-align: center;
  }
  .pasty-fest-inner { max-width: 700px; margin: 0 auto; }
  .pasty-fest-desc {
    font-size: 17px; line-height: 1.8; color: rgba(232,220,200,0.8);
  }
  .pasty-fest-desc strong { color: var(--cream); }

  @media (max-width: 768px) {
    .pasty-era { flex-direction: column; gap: 8px; }
    .pasty-era-date { min-width: auto; }
    .pasty-debates { grid-template-columns: 1fr; }
  }

  /* FOOTER */
  footer { background: var(--pine-dark); padding: 48px 24px; text-align: center; }
  .footer-logo {
    font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 800;
    color: var(--sand-light); margin-bottom: 8px;
  }
  .footer-logo em { color: var(--warm); font-style: normal; }
  .footer-loc { font-size: 13px; color: rgba(232,220,200,0.53); }
  .footer-copy { font-size: 12px; color: rgba(232,220,200,0.33); margin-top: 16px; }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .dining-grid { grid-template-columns: 1fr; }
    .challenge-matchup { flex-direction: column; }
    .challenge-vs { transform: rotate(90deg); margin: -8px 0; }
    .guest-quotes { grid-template-columns: 1fr; }
    .hiking-grid { grid-template-columns: 1fr; }
    .hike-card.full-width { grid-column: auto; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.large { grid-column: auto; }
    .gallery-item:not(.large) img { height: 220px; }
    .gallery-caption { opacity: 1; }
    .score-label { width: 100px; font-size: 11px; }
    .binary-votes { font-size: 48px; }
    .binary-name { font-size: 16px; }
    .golf-grid { grid-template-columns: 1fr; }
    .cal-grid { grid-template-columns: 1fr; }
    .cal-widget { padding: 20px 14px; }
    .cal-info { gap: 12px; }
  }
