/* ============================================================
   ANDRUSS MOTEL — GLOBAL BRAND SYSTEM
   Walker, California · US Highway 395 · Est. 1958
   ============================================================

   PALETTE
   --black:       #0e0e0e   (headers, footers, nav)
   --charcoal:    #1f1f1f   (dark section backgrounds)
   --red:         #b01c1c   (brand accent, CTAs)
   --red-dark:    #8f1616   (hover state)
   --cream:       #f5f0e8   (page background)
   --warm-white:  #fdfaf5   (card backgrounds)
   --tan:         #e8dfd0   (subtle dividers)
   --text:        #1a1a1a   (body text)
   --muted:       #666666   (secondary text)
   --light:       #999999   (labels, eyebrows)

   FONTS
   Headings:  Georgia, Times New Roman, serif
   Body/UI:   Helvetica Neue, Helvetica, Arial, sans-serif

   SPACING
   Section padding: 80px 0 on desktop, 52px 0 on mobile
   Max content width: 1140px
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #0e0e0e;
  --charcoal: #1f1f1f;
  --red: #b01c1c;
  --red-dark: #8f1616;
  --cream: #f5f0e8;
  --warm-white: #fdfaf5;
  --tan: #e8dfd0;
  --text: #1a1a1a;
  --muted: #666666;
  --light: #999999;
  --max-w: 1140px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.1;
  color: var(--text);
}

.eyebrow {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--light);
  display: block;
  margin-bottom: 12px;
}

.eyebrow-red { color: var(--red); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 38px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  border: none;
}

.btn-red {
  background: var(--red);
  color: #fff;
}
.btn-red:hover { background: var(--red-dark); color: #fff; }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
}
.btn-outline-dark:hover { background: var(--text); color: #fff; }

/* ── SITE NAV ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--black);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.nav-logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-logo span {
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  margin-left: 10px;
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}
.nav-links a:hover { color: #fff; }

.nav-book {
  background: var(--red);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 2px;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
}
.nav-book:hover { background: var(--red-dark) !important; color: #fff !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: 64px;
  background-size: cover;
  background-position: center;
  background-color: var(--black);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.25) 55%,
    rgba(0,0,0,0.12) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 56px 72px 56px;
  max-width: 760px;
}

.hero-content .eyebrow { color: rgba(255,255,255,0.55); }

.hero h1 {
  font-size: clamp(42px, 6.5vw, 80px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.hero-sub {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(17px, 2vw, 22px);
  font-style: italic;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ── SECTION STANDARD ── */
.section { padding: 88px 0; }
.section-sm { padding: 60px 0; }
.section-dark { background: var(--charcoal); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .eyebrow { color: rgba(255,255,255,0.4); }
.section-black { background: var(--black); color: #fff; }
.section-black h2, .section-black h3 { color: #fff; }

.section-header { margin-bottom: 56px; }
.section-header h2 { font-size: clamp(28px, 4vw, 44px); }
.section-header p {
  font-size: 17px;
  color: var(--muted);
  margin-top: 12px;
  max-width: 560px;
}
.section-dark .section-header p,
.section-black .section-header p { color: rgba(255,255,255,0.55); }

/* ── CARDS ── */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.card {
  background: var(--warm-white);
  border-radius: 3px;
  overflow: hidden;
}

.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.card-body { padding: 28px; }
.card-body h3 { font-size: 20px; margin-bottom: 8px; }
.card-body p { font-size: 15px; color: var(--muted); line-height: 1.65; }
.card-price {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

/* ── AMENITY GRID ── */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--tan);
}

.amenity-item {
  background: var(--warm-white);
  padding: 36px 32px;
}

.amenity-icon { font-size: 28px; margin-bottom: 14px; }
.amenity-item h3 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text);
}
.amenity-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--warm-white);
  padding: 32px 28px;
  border-radius: 3px;
}

.review-stars { color: #d4a017; font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }

.review-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
  font-style: italic;
  line-height: 1.75;
  color: #333;
  margin-bottom: 20px;
}

.review-author {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light);
}
.review-source { font-size: 11px; color: #bbb; margin-top: 3px; }

/* ── SPLIT SECTION ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
}

.split-img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.split-body {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-body h2 { font-size: clamp(26px, 3.5vw, 40px); margin-bottom: 16px; }
.split-body p { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }

/* ── QUOTE BANNER ── */
.quote-banner {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}
.quote-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.58);
}
.quote-banner-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}
.quote-banner blockquote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(20px, 2.8vw, 30px);
  font-style: italic;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 20px;
}
.quote-banner cite {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-style: normal;
}

/* ── STAT BAR ── */
.stat-bar {
  background: var(--red);
  padding: 32px 0;
}
.stat-bar-inner {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  display: block;
}
.stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ── ROOM LIST (Rooms page) ── */
.room-list { display: flex; flex-direction: column; gap: 2px; }

.room-item {
  display: grid;
  grid-template-columns: 420px 1fr;
  background: var(--warm-white);
}

.room-item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.room-item-body {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-item-body h3 { font-size: 26px; margin-bottom: 8px; }
.room-item-body p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.room-feature {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--tan);
  padding: 5px 12px;
  border-radius: 2px;
}

/* ── THINGS TO DO TABS ── */
.tabs { display: flex; gap: 4px; margin-bottom: 48px; flex-wrap: wrap; }
.tab-btn {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  background: var(--tan);
  color: var(--muted);
  transition: background 0.15s, color 0.15s;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--black);
  color: #fff;
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.place-list { display: flex; flex-direction: column; gap: 20px; }
.place-item {
  background: var(--warm-white);
  padding: 28px 32px;
  border-radius: 3px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.place-item-body h3 { font-size: 18px; margin-bottom: 6px; }
.place-item-body p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.place-distance {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light);
  white-space: nowrap;
  padding-top: 4px;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 { font-size: 22px; margin-bottom: 20px; }
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-detail-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-detail-text h4 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 4px;
}
.contact-detail-text p { font-size: 15px; color: var(--text); line-height: 1.5; }
.contact-detail-text a { color: var(--red); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 16px;
  border: 1px solid var(--tan);
  border-radius: 2px;
  font-size: 15px;
  font-family: inherit;
  background: var(--warm-white);
  color: var(--text);
  transition: border-color 0.15s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
}
.form-group textarea { min-height: 130px; resize: vertical; }

.map-embed {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: 3px;
  margin-top: 56px;
}

/* ── GUEST APP PAGE ── */
.app-hero {
  background: var(--black);
  padding: 120px 0 80px;
  text-align: center;
}
.app-hero h1 { color: #fff; font-size: clamp(32px, 5vw, 56px); margin-bottom: 16px; }
.app-hero p { color: rgba(255,255,255,0.6); font-size: 18px; font-style: italic; max-width: 560px; margin: 0 auto 36px; }

.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--tan);
  margin-bottom: 2px;
}

.app-card {
  background: var(--warm-white);
  padding: 40px 36px;
  text-align: center;
}
.app-card-icon { font-size: 36px; margin-bottom: 16px; }
.app-card h3 { font-size: 18px; margin-bottom: 10px; }
.app-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.app-card a {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--black);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-col ul a:hover { color: #fff; }

.footer-social { display: flex; gap: 16px; margin-top: 20px; }
.footer-social a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.15s;
}
.footer-social a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.35); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding-top: 64px;
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-color: var(--charcoal);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 56px 48px;
}
.page-hero-content h1 { font-size: clamp(30px, 4.5vw, 52px); color: #fff; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .cards-3, .cards-2, .reviews-grid { grid-template-columns: 1fr; }
  .amenity-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-img { height: 280px; min-height: unset; }
  .split-body { padding: 40px 32px; }
  .room-item { grid-template-columns: 1fr; }
  .room-item-img { height: 240px; }
  .room-item-body { padding: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .app-grid { grid-template-columns: 1fr 1fr; }
  .stat-bar-inner { gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding: 0 24px 52px; }
  .page-hero-content { padding: 0 24px 36px; }
  .container { padding: 0 20px; }
  .section { padding: 60px 0; }
}

@media (max-width: 540px) {
  .amenity-grid { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-nav { padding: 0 20px; }
}

/* ── Guest Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
.review-card {
  background: #fff;
  border: 1px solid var(--tan);
  border-radius: 4px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-stars {
  color: #c8a84b;
  font-size: 16px;
  letter-spacing: 2px;
}
.review-text {
  font-family: Georgia, serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--charcoal);
  margin: 0;
  flex: 1;
}
.review-author {
  border-top: 1px solid var(--tan);
  padding-top: 14px;
}
.review-name {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--black);
}
.review-meta {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 12px;
  color: #888;
  margin-top: 3px;
}
.review-platform {
  color: var(--red);
  font-weight: 600;
}
