/* ============================================
   T & H — 2026
   Shared styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  background: #FAFAF8;
  color: #1A1A1A;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: #E8E4DF; color: #1A1A1A; }
a { color: inherit; }

/* ---------- PASSWORD GATE ---------- */
#gate {
  position: fixed; inset: 0; z-index: 100;
  background: #FAFAF8;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease;
}
#gate.unlocked { opacity: 0; pointer-events: none; }
.gate-box { text-align: center; padding: 0 32px; }
.gate-box .lock-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: #8C8578; margin: 0 0 32px;
}
.gate-box .hint {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(20px, 5vw, 28px); font-weight: 400; font-style: italic;
  color: #1A1A1A; margin: 0 0 40px; line-height: 1.4;
}
.code-input { display: flex; gap: 12px; justify-content: center; }
.code-input input {
  width: 52px; height: 64px;
  border: 1px solid #E8E4DF; border-radius: 2px;
  background: transparent;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 28px; font-weight: 400; color: #1A1A1A;
  text-align: center; outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none; -moz-appearance: textfield;
}
.code-input input:focus { border-color: #B8704B; }
.code-input input.wrong { border-color: #B8704B; animation: shake 0.4s ease; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

/* ---------- PAGE WRAPPER ---------- */
.page-wrap {
  min-height: 100vh;
  padding: 0 clamp(24px, 6vw, 80px);
}
.page-wrap--center {
  display: flex; justify-content: center;
}

/* ---------- NAV ---------- */
.site-header {
  padding: clamp(32px, 5vw, 56px) 0 0;
  display: flex; justify-content: space-between; align-items: flex-start;
  max-width: 720px; margin: 0 auto;
}
.site-brand {
  text-align: left;
}
.site-brand .monogram {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(18px, 3vw, 22px);
  color: #1A1A1A; margin: 0; letter-spacing: 0.06em;
}
.site-brand .monogram a {
  text-decoration: none; color: inherit;
}
.site-brand .year {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: #8C8578; margin: 4px 0 0;
}
.site-nav {
  display: flex; gap: clamp(16px, 3vw, 28px);
  padding-top: 6px;
}
.site-nav a {
  font-size: 13px; letter-spacing: 0.04em;
  color: #8C8578; text-decoration: none;
  transition: color 0.2s;
}
.site-nav a:hover { color: #1A1A1A; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400; margin: 0;
}
h1 { font-size: clamp(36px, 8vw, 64px); line-height: 1.05; letter-spacing: -0.01em; }
h2 { font-size: clamp(28px, 6vw, 42px); line-height: 1.1; }
h3 { font-size: clamp(20px, 4vw, 26px); line-height: 1.2; }

.muted { color: #8C8578; }
.accent { color: #B8704B; }
.small-caps {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
}

/* ---------- THIS WEEK CARD ---------- */
.concierge-card {
  max-width: 720px; margin: 0 auto;
  padding: clamp(40px, 7vw, 72px) 0 clamp(32px, 5vw, 48px);
}
.concierge-label {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: #B8704B; margin: 0 0 20px;
}
.concierge-card h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(32px, 7vw, 52px);
  font-weight: 400; line-height: 1.08;
  color: #1A1A1A; margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.concierge-detail {
  font-size: clamp(14px, 2.5vw, 16px);
  color: #8C8578; margin: 0;
  line-height: 1.5;
}
.concierge-divider {
  width: 32px; height: 1px;
  background: #E8E4DF; margin: clamp(20px, 3vw, 28px) 0;
}
.weekend-day { padding: 4px 0; }
.day-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #B8704B; margin: 0 0 8px; font-weight: 500;
}
.concierge-highlight {
  font-size: clamp(14px, 2.5vw, 16px);
  color: #1A1A1A; margin: 10px 0 0;
  line-height: 1.5; font-weight: 500;
}

/* ---------- COUNTDOWN HERO ---------- */
.hero-countdown {
  max-width: 720px; margin: 0 auto;
  padding: clamp(48px, 8vw, 80px) 0 clamp(48px, 8vw, 80px);
}
.countdown-inner {
  display: flex; align-items: baseline; gap: clamp(16px, 3vw, 24px);
}
.hero-countdown .number {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(96px, 28vw, 200px);
  font-weight: 400; line-height: 0.85;
  color: #1A1A1A; margin: 0;
  letter-spacing: -0.04em;
}
.countdown-text {
  padding-bottom: clamp(12px, 2vw, 20px);
}
.countdown-text .label {
  font-size: clamp(12px, 2vw, 14px);
  color: #8C8578; margin: 0;
  line-height: 1.4;
}
.countdown-text .dest {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: clamp(16px, 3vw, 20px);
  color: #B8704B; margin: 4px 0 0;
}

/* ---------- TRIP LIST ---------- */
.trip-list {
  max-width: 720px; margin: 0 auto;
  padding-bottom: clamp(80px, 12vw, 140px);
}
.trip-entry {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  text-decoration: none;
  padding: clamp(28px, 4vw, 40px) 0;
  border-top: 1px solid #E8E4DF;
  transition: opacity 0.2s;
  gap: 16px;
}
.trip-entry:last-child { border-bottom: 1px solid #E8E4DF; }
.trip-entry:hover { opacity: 0.7; }
.trip-entry-left { flex: 1; }
.trip-name {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 400; color: #1A1A1A;
  margin: 0 0 4px; line-height: 1.15;
}
.trip-meta {
  font-size: clamp(12px, 2.2vw, 14px);
  color: #8C8578; margin: 0;
}
.trip-tag {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: #B8704B; white-space: nowrap;
  padding: 4px 10px;
  border: 1px solid #B8704B;
  border-radius: 1px;
  flex-shrink: 0;
}

/* ---------- SITE FOOTER ---------- */
.site-footer {
  text-align: center;
  padding: 0 0 clamp(40px, 6vw, 64px);
}
.site-footer p {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: #E8E4DF; margin: 0;
}

/* ---------- HERO IMAGE ---------- */
.trip-hero {
  width: 100vw;
  margin-left: calc(-1 * clamp(24px, 6vw, 80px));
  height: clamp(220px, 40vw, 380px);
  overflow: hidden;
  position: relative;
}
.trip-hero img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}

/* ---------- TRIP DETAIL PAGE ---------- */
.back-link {
  display: inline-block;
  font-size: 13px; color: #8C8578;
  text-decoration: none; letter-spacing: 0.02em;
  padding: clamp(24px, 4vw, 40px) 0;
  transition: color 0.2s;
}
.back-link:hover { color: #1A1A1A; }

.trip-header {
  max-width: 720px; margin: 0 auto;
  padding-bottom: clamp(32px, 5vw, 48px);
}
.trip-header h1 { margin-bottom: 8px; }
.trip-header .dates {
  font-size: clamp(14px, 2.5vw, 16px);
  color: #8C8578; margin: 0;
}

.facts-bar {
  display: flex; gap: clamp(24px, 5vw, 48px);
  max-width: 720px; margin: 0 auto;
  padding: clamp(20px, 3vw, 28px) 0;
  border-top: 1px solid #E8E4DF;
  border-bottom: 1px solid #E8E4DF;
  margin-bottom: clamp(40px, 6vw, 64px);
  flex-wrap: wrap;
}
.fact-item .fact-label {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: #8C8578; margin: 0 0 4px;
}
.fact-item .fact-value {
  font-size: clamp(14px, 2.5vw, 16px);
  color: #1A1A1A; margin: 0;
}

/* ---------- ITINERARY ---------- */
.itinerary {
  max-width: 720px; margin: 0 auto;
}
.day-block {
  margin-bottom: clamp(40px, 6vw, 56px);
}
.day-label {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(20px, 4vw, 26px);
  color: #1A1A1A; margin: 0 0 clamp(16px, 3vw, 24px);
  padding-bottom: 12px;
  border-bottom: 1px solid #E8E4DF;
}
.activity {
  margin-bottom: 16px;
  padding-left: 0;
}
.activity .time {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: #8C8578; margin: 0 0 2px;
}
.activity .name {
  font-weight: 500; color: #1A1A1A; margin: 0 0 2px;
  font-size: clamp(14px, 2.5vw, 16px);
}
.activity .name .restaurant {
  color: #B8704B; text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
  cursor: default;
}
.activity .name .restaurant:hover { border-bottom-color: #B8704B; }
.activity .desc {
  font-size: clamp(13px, 2.2vw, 14px);
  color: #8C8578; margin: 0;
  line-height: 1.5;
}

/* ---------- SECTION HEADINGS ---------- */
.section-heading {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(24px, 5vw, 32px);
  color: #1A1A1A; margin: clamp(48px, 8vw, 80px) auto clamp(24px, 4vw, 32px);
  max-width: 720px;
}

/* ---------- RESTAURANT LIST ---------- */
.resto-list {
  max-width: 720px; margin: 0 auto;
  list-style: none; padding: 0;
}
.resto-list li {
  padding: clamp(16px, 3vw, 24px) 0;
  border-bottom: 1px solid #E8E4DF;
}
.resto-list li:first-child { border-top: 1px solid #E8E4DF; }
.resto-name {
  font-weight: 500; font-size: clamp(15px, 2.5vw, 17px);
  color: #1A1A1A; margin: 0 0 2px;
}
.resto-cuisine {
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: #B8704B; margin: 0 0 6px;
}
.resto-detail {
  font-size: clamp(13px, 2.2vw, 14px);
  color: #8C8578; margin: 0; line-height: 1.5;
}

/* ---------- TIPS LIST ---------- */
.tips-list {
  max-width: 720px; margin: 0 auto;
  list-style: none; padding: 0;
}
.tips-list li {
  padding: 12px 0;
  font-size: clamp(13px, 2.5vw, 15px);
  color: #1A1A1A; line-height: 1.6;
  border-bottom: 1px solid #E8E4DF;
}
.tips-list li:first-child { border-top: 1px solid #E8E4DF; }

/* ---------- CHECKLIST ---------- */
.checklist {
  max-width: 720px; margin: 0 auto clamp(60px, 10vw, 100px);
  list-style: none; padding: 0;
}
.checklist li {
  padding: 10px 0;
  font-size: clamp(13px, 2.5vw, 15px);
  color: #1A1A1A; line-height: 1.5;
}
.checklist .done { color: #8C8578; }
.checklist .mark { margin-right: 10px; }

/* ---------- REVEAL (subtle) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- DATES PAGE ---------- */
.dates-hero {
  max-width: 720px; margin: 0 auto;
  padding: clamp(48px, 8vw, 80px) 0 clamp(24px, 4vw, 40px);
}
.dates-hero h1 {
  font-size: clamp(42px, 10vw, 72px);
  line-height: 1;
  margin-bottom: 16px;
}
.dates-intro {
  font-size: clamp(14px, 2.5vw, 16px);
  color: #8C8578; line-height: 1.6;
  margin: 0; max-width: 480px;
}

/* Featured pick */
.featured-pick {
  max-width: 720px; margin: 0 auto;
  padding: clamp(32px, 5vw, 48px) 0;
  border-top: 1px solid #E8E4DF;
  border-bottom: 1px solid #E8E4DF;
}
.featured-label {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: #B8704B; margin: 0 0 16px;
}
.featured-name {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 400; color: #1A1A1A;
  margin: 0 0 8px;
}
.featured-meta {
  font-size: clamp(13px, 2.2vw, 14px);
  color: #8C8578; margin: 0 0 12px;
}
.featured-desc {
  font-size: clamp(14px, 2.5vw, 16px);
  color: #1A1A1A; line-height: 1.6;
  margin: 0 0 16px; max-width: 520px;
}
.featured-link {
  font-size: 13px; color: #B8704B;
  text-decoration: none; letter-spacing: 0.02em;
  border-bottom: 1px solid #B8704B;
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.featured-link:hover { opacity: 0.7; }

/* Category sections */
.date-category {
  max-width: 720px; margin: 0 auto;
  padding-top: clamp(40px, 6vw, 64px);
}
.cat-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: clamp(16px, 3vw, 24px);
  flex-wrap: wrap; gap: 8px;
}
.cat-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(22px, 4.5vw, 30px);
  font-weight: 400; color: #1A1A1A; margin: 0;
}
.cat-price {
  font-size: 12px; color: #8C8578;
  letter-spacing: 0.04em;
}

/* Date entry (restaurant row) */
.date-entry {
  padding: clamp(14px, 2.5vw, 20px) 0;
  border-top: 1px solid #E8E4DF;
}
.date-entry:last-child { border-bottom: 1px solid #E8E4DF; }
.de-top {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px; flex-wrap: wrap;
}
.de-name {
  font-weight: 500; font-size: clamp(15px, 2.5vw, 17px);
  color: #1A1A1A; margin: 0;
}
.de-hood {
  font-size: 12px; color: #8C8578;
  white-space: nowrap;
}
.de-line2 {
  display: flex; gap: 16px; align-items: baseline;
  margin-top: 3px; flex-wrap: wrap;
}
.de-cuisine {
  font-size: 12px; letter-spacing: 0.04em;
  color: #B8704B;
}
.de-price {
  font-size: 12px; color: #8C8578;
}
.de-desc {
  font-size: clamp(13px, 2.2vw, 14px);
  color: #8C8578; margin: 6px 0 0; line-height: 1.5;
}
.de-reserve {
  display: inline-block; margin-top: 6px;
  font-size: 12px; color: #B8704B;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.de-reserve:hover { border-bottom-color: #B8704B; }

/* After dinner (simpler entries) */
.ad-entry {
  padding: clamp(10px, 2vw, 16px) 0;
  border-top: 1px solid #E8E4DF;
}
.ad-entry:last-child { border-bottom: 1px solid #E8E4DF; }
.ad-name {
  font-weight: 500; font-size: clamp(14px, 2.5vw, 16px);
  color: #1A1A1A; margin: 0;
}
.ad-meta {
  font-size: clamp(12px, 2vw, 13px);
  color: #8C8578; margin: 2px 0 0;
}

/* Pick for me button */
.pick-section {
  max-width: 720px; margin: 0 auto;
  padding: clamp(48px, 7vw, 72px) 0;
  text-align: center;
}
.pick-btn {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #FAFAF8;
  background: #B8704B;
  border: none; cursor: pointer;
  padding: 16px 40px;
  border-radius: 1px;
  transition: background 0.3s;
}
.pick-btn:hover { background: #9D5F3F; }
.pick-btn:active { background: #8A5337; }

.pick-result {
  margin-top: 24px;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(24px, 5vw, 32px);
  font-style: italic;
  color: #B8704B;
  min-height: 40px;
}

/* Combos */
.combos-section {
  max-width: 720px; margin: 0 auto;
  padding-bottom: clamp(60px, 10vw, 100px);
}
.combos-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(24px, 5vw, 32px);
  color: #1A1A1A; margin: 0 0 clamp(20px, 3vw, 32px);
}
.combo-entry {
  padding: clamp(16px, 3vw, 24px) 0;
  border-top: 1px solid #E8E4DF;
}
.combo-entry:last-child { border-bottom: 1px solid #E8E4DF; }
.combo-name {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(17px, 3vw, 20px);
  font-style: italic;
  color: #1A1A1A; margin: 0 0 4px;
}
.combo-route {
  font-size: clamp(13px, 2.2vw, 14px);
  color: #8C8578; margin: 0 0 2px;
  line-height: 1.5;
}
.combo-price {
  font-size: 12px; color: #B8704B;
}

/* Highlighted pick result */
.date-entry.highlighted {
  background: #F5F0EB;
  margin: 0 -16px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 2px;
  transition: background 0.4s ease;
}
