/* ============================================
   CSS Variables — Artful Southwest Americana
   ============================================ */
:root {
  --linen:          #f5f0e8;
  --linen-dark:     #ece5d8;
  --white:          #ffffff;
  --terracotta:     #c44020;
  --terracotta-lt:  #d45a38;
  --marigold:       #d49020;
  --sage:           #5c6b40;
  --sage-lt:        #7a8f58;
  --dusty-blue:     #6b82a8;
  --navy:           #1a3050;
  --blush:          #c9b0a0;
  --gold:           #c4a040;
  --dark:           #1a3050;
  --medium:         #50607a;
  --light-text:     #8a7060;

  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'DM Sans', system-ui, sans-serif;

  --nav-h:    64px;
  --max-w:    1080px;
  --radius:   3px;
  --shadow:   0 2px 12px rgba(30,18,8,.08);
  --shadow-lg:0 6px 32px rgba(30,18,8,.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-body);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--terracotta); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============================================
   Typography
   ============================================ */
h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
}

.eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--light-text);
}

/* ============================================
   Navigation
   ============================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--white);
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  gap: 1rem;
  border-bottom: 1px solid var(--linen-dark);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  color: var(--terracotta);
  letter-spacing: .02em;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-brand:hover { opacity: .75; text-decoration: none; }

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  display: block;
  padding: .4rem .9rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--light-text);
  text-decoration: none;
  transition: color .2s;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--dark);
  border-bottom-color: var(--terracotta);
  text-decoration: none;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--medium);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   Hero — Home Page
   ============================================ */
.hero {
  background: var(--linen);
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem 4rem;
  position: relative;
}

.hero-tagline {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--light-text);
  margin-bottom: 2.5rem;
}

.hero-rule {
  width: 40px;
  height: 1px;
  background: var(--terracotta);
  margin: 0 auto 2.5rem;
}

.hero-names {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -.01em;
  margin-bottom: 1.5rem;
}

.hero-amp {
  font-size: .3em;
  font-style: normal;
  font-weight: 300;
  color: var(--light-text);
  display: block;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin: .5rem 0;
}

.hero-date {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--medium);
  line-height: 2;
}

.hero-intro {
  max-width: 520px;
  margin: 2rem auto 0;
  font-size: 1rem;
  color: var(--light-text);
  line-height: 1.75;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--blush);
  animation: bounce 2.5s ease-in-out infinite;
}
.hero-scroll::after { content: ' ↓'; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   Ticker
   ============================================ */
.ticker-wrap {
  background: var(--terracotta);
  overflow: hidden;
  padding: .65rem 0;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-track > span {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(245,240,232,.9);
  padding: 0 2.5rem;
}
/* Wave characters */
.ticker-track .wave-char {
  display: inline-block;
  letter-spacing: 0;
  margin-right: .18em;
  animation: wave-char 1.6s ease-in-out infinite;
}
.ticker-track .wave-space {
  margin-right: .9em;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes wave-char {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

/* ============================================
   Sections — shared
   ============================================ */
.section {
  padding: 5rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--navy);
  margin-top: .5rem;
}

/* ============================================
   Our Story
   ============================================ */
.story-wrap {
  background: var(--white);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem;
}
.story-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 1.75rem;
}
.story-text p {
  font-size: 1rem;
  color: var(--medium);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.story-text p:last-child { margin-bottom: 0; }

.story-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   Gallery strip
   ============================================ */
.gallery-strip {
  background: var(--dark);
  padding: 0;
}
.gallery-strip-inner {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 3px;
  cursor: grab;
  scrollbar-width: none;
}
.gallery-strip-inner::-webkit-scrollbar { display: none; }
.gallery-strip-inner.dragging { cursor: grabbing; user-select: none; }
.gallery-strip-item {
  flex: 0 0 auto;
  width: 380px;
  height: 440px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .5rem .85rem;
  background: linear-gradient(to top, rgba(26,48,80,.72) 0%, transparent 100%);
  color: rgba(245,240,232,.95);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  pointer-events: none;
}
.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform .4s ease, opacity .3s;
  opacity: .88;
}
.gallery-strip-item:hover img { transform: scale(1.05); opacity: 1; }

/* ============================================
   Weekend Schedule
   ============================================ */
.schedule-wrap {
  background: var(--terracotta);
}
.schedule-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem;
}
.schedule-inner .eyebrow { color: rgba(245,240,232,.6); }
.schedule-inner h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin: .5rem 0 3rem;
  text-align: center;
}
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.schedule-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 2rem;
}
.schedule-card-day {
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245,240,232,.6);
  margin-bottom: 1rem;
}
.schedule-card h3 {
  font-size: 1.7rem;
  color: var(--white);
  font-family: var(--font-display);
  margin-bottom: .75rem;
}
.schedule-event-row {
  display: flex;
  gap: .75rem;
  align-items: baseline;
  margin-bottom: .9rem;
}
.schedule-event-row:last-child { margin-bottom: 0; }
.schedule-time {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(245,240,232,.55);
  flex-shrink: 0;
  width: 3.75rem;
  padding-top: .15rem;
}
.schedule-card p {
  font-size: .92rem;
  color: rgba(245,240,232,.8);
  line-height: 1.75;
  margin-bottom: .4rem;
}
.schedule-card a {
  color: rgba(245,240,232,.92);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================
   Explore tiles (where to stay / things to do)
   ============================================ */
.explore-wrap {
  background: var(--linen);
}
.explore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem;
}
.explore-card {
  background: var(--white);
  border: 1px solid var(--linen-dark);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-decoration: none;
  display: block;
  transition: box-shadow .2s, transform .2s;
}
.explore-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  text-decoration: none;
}
.explore-card .eyebrow { margin-bottom: .75rem; }
.explore-card h3 {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: .75rem;
}
.explore-card p {
  font-size: .9rem;
  color: var(--light-text);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.explore-card .link-text {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracotta);
}

/* ============================================
   Page tiles nav (home page 5-tile grid)
   ============================================ */
.tiles-wrap {
  background: var(--white);
}
.tiles-header {
  text-align: center;
  padding: 5rem 2rem 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.tiles-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--navy);
  margin-top: .5rem;
}
.page-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--linen-dark);
  border-top: 1px solid var(--linen-dark);
}
.page-tile {
  background: var(--white);
  padding: 2.5rem 1.5rem;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  transition: background .2s;
}
.page-tile:hover { background: var(--linen); text-decoration: none; }
.page-tile-icon { font-size: 1.8rem; }
.page-tile h3 {
  font-size: 1rem;
  color: var(--navy);
  font-family: var(--font-display);
}
.page-tile p {
  font-size: .8rem;
  color: var(--light-text);
  line-height: 1.5;
}

/* ============================================
   Lightbox
   ============================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: white; font-size: 2rem;
  cursor: pointer; opacity: .6; line-height: 1;
}
.lightbox-close:hover { opacity: 1; }

/* ============================================
   Inner Page Hero
   ============================================ */
.page-hero {
  background: var(--linen);
  padding: 4.5rem 2rem 3.5rem;
  text-align: center;
  border-bottom: 1px solid var(--linen-dark);
}
.page-hero .eyebrow { margin-bottom: .6rem; }
.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--navy);
  margin-bottom: .75rem;
}
.page-hero p {
  font-size: .98rem;
  color: var(--light-text);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ============================================
   Content body
   ============================================ */
.content-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

/* ============================================
   Category headers
   ============================================ */
.category-header {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  margin: 3.5rem 0 1.75rem;
  padding-bottom: .75rem;
  border-bottom: 1.5px solid var(--linen-dark);
}
.category-header:first-child { margin-top: 0; }
.category-header h2 {
  font-size: 1.6rem;
  color: var(--navy);
}
.category-icon { font-size: 1.1rem; }

.subcategory {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 2rem 0 1rem;
}

/* ============================================
   Listing cards
   ============================================ */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.listing-card {
  background: var(--white);
  border: 1px solid var(--linen-dark);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: box-shadow .2s;
}
.listing-card:hover { box-shadow: var(--shadow); }

.listing-card-tag {
  display: inline-block;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(196,64,32,.08);
  border-radius: 2px;
  padding: .2rem .5rem;
  margin-bottom: .6rem;
}

.listing-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: .2rem;
}
.listing-card h3 a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--blush);
  transition: color .2s, border-color .2s;
}
.listing-card h3 a:hover {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
  text-decoration: none;
}
.listing-card .listing-sub {
  font-size: .78rem;
  color: var(--light-text);
  margin-bottom: .6rem;
  font-style: italic;
}
.listing-card p {
  font-size: .88rem;
  color: var(--medium);
  line-height: 1.65;
}
.listing-card ul {
  font-size: .88rem;
  color: var(--medium);
  line-height: 1.65;
  padding-left: 1.2rem;
  margin-top: .4rem;
}
.listing-card li {
  margin-bottom: .4rem;
}
.listing-card a { color: var(--terracotta); }

/* Price tag */
.price {
  font-size: .72rem;
  color: var(--sage);
  font-weight: 700;
  margin-left: .3rem;
}

/* ============================================
   Hotel cards
   ============================================ */
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}
.hotel-card {
  background: var(--white);
  border: 1px solid var(--linen-dark);
  border-top: 2px solid var(--terracotta);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow .2s;
}
.hotel-card:hover { box-shadow: var(--shadow); }
.hotel-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: .2rem; }
.hotel-card h3 a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--blush);
  transition: color .2s, border-color .2s;
}
.hotel-card h3 a:hover {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
  text-decoration: none;
}
.hotel-card .hotel-rate {
  font-size: .72rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: .15rem;
}
.hotel-card .hotel-location {
  font-size: .78rem;
  color: var(--light-text);
  margin-bottom: .75rem;
}
.hotel-card p {
  font-size: .88rem;
  color: var(--medium);
  line-height: 1.65;
  margin-bottom: .4rem;
}
.hotel-card a { color: var(--terracotta); }

/* ============================================
   Info box
   ============================================ */
.info-box {
  background: var(--linen);
  border-left: 3px solid var(--terracotta);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.4rem;
  margin: 1.25rem 0;
}
.info-box h4 {
  font-size: .88rem;
  color: var(--terracotta);
  font-family: var(--font-display);
  margin-bottom: .3rem;
}
.info-box p, .info-box li {
  font-size: .88rem;
  color: var(--medium);
  line-height: 1.65;
}
.info-box ul { padding-left: 1.2rem; }
.info-box li { margin-bottom: .2rem; }

/* ============================================
   Simple list (for restaurants etc.)
   ============================================ */
.simple-list { list-style: none; margin-bottom: 1.5rem; }
.simple-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--linen-dark);
  display: flex;
  gap: 1rem;
  align-items: baseline;
}
.simple-list li:last-child { border-bottom: none; }
.simple-list h3 {
  font-size: 1.05rem;
  color: var(--navy);
  flex-shrink: 0;
}
.simple-list p {
  font-size: .88rem;
  color: var(--medium);
  line-height: 1.6;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--linen-dark); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  transition: color .2s;
}
.faq-question:hover { color: var(--terracotta); }
.faq-icon {
  flex-shrink: 0;
  font-size: .85rem;
  color: var(--light-text);
  transition: transform .25s;
  font-style: normal;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--terracotta); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer-inner {
  padding: 0 0 1.5rem;
  font-size: .95rem;
  color: var(--medium);
  line-height: 1.8;
}
.faq-answer-inner p { margin-bottom: .75rem; }
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-answer-inner ul { padding-left: 1.4rem; }
.faq-answer-inner li { margin-bottom: .3rem; }
.faq-answer-inner a { color: var(--terracotta); }

/* ============================================
   Message Board
   ============================================ */
.message-form-wrap {
  background: var(--linen);
  border: 1px solid var(--linen-dark);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-bottom: 3rem;
}
.message-form-wrap h2 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--light-text);
}
.form-group input,
.form-group textarea {
  padding: .7rem 1rem;
  border: 1px solid var(--linen-dark);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.photo-upload-label {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem 1rem;
  border: 1.5px dashed var(--linen-dark);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: .88rem;
  color: var(--light-text);
  background: var(--white);
  transition: border-color .2s, color .2s;
}
.photo-upload-label:hover { border-color: var(--terracotta); color: var(--terracotta); }
.photo-upload-label input { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 2rem;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary { background: var(--dark); color: var(--linen); }
.btn-primary:hover { background: var(--medium); color: var(--linen); }
.btn-terracotta { background: var(--terracotta); color: var(--white); }
.btn-terracotta:hover { background: var(--terracotta-lt); }

.messages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.message-card {
  background: var(--white);
  border: 1px solid var(--linen-dark);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.message-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .5rem;
}
.message-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
}
.message-card-date { font-size: .7rem; color: var(--light-text); }
.message-card-text { font-size: .92rem; color: var(--medium); line-height: 1.7; }
.message-card-photo { border-radius: var(--radius); overflow: hidden; }
.message-card-photo img { width: 100%; object-fit: cover; max-height: 260px; }

.messages-empty { text-align: center; padding: 4rem 2rem; color: var(--light-text); }
.messages-empty p { font-size: 1.1rem; margin-top: .5rem; }

.form-status {
  padding: .7rem 1rem;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 600;
  margin-top: 1rem;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(92,107,64,.1);
  color: var(--sage);
  border: 1px solid var(--sage);
}
.form-status.error {
  display: block;
  background: rgba(196,64,32,.08);
  color: var(--terracotta);
  border: 1px solid var(--terracotta);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--linen-dark);
  border-top: 1px solid var(--blush);
  padding: 3.5rem 2rem;
  text-align: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  font-style: italic;
  color: var(--terracotta);
  margin-bottom: .4rem;
}
.footer-names {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--light-text);
  letter-spacing: .05em;
  margin-bottom: 2rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin-bottom: 2rem;
}
.footer-links a {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--light-text);
  padding: .3rem .7rem;
  transition: color .2s;
  text-decoration: none;
}
.footer-links a:hover { color: var(--terracotta); }
.footer-copy {
  font-size: .68rem;
  color: var(--blush);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    padding: .5rem 0;
    border-bottom: 1px solid var(--linen-dark);
    box-shadow: 0 4px 12px rgba(30,18,8,.08);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: .9rem 2rem;
    border-bottom: none;
    border-left: 3px solid transparent;
  }
  .nav-links a:hover, .nav-links a.active {
    border-left-color: var(--terracotta);
    background: var(--linen);
    color: var(--dark);
  }
  .nav-toggle { display: flex; }

  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-image { order: -1; }
  .story-image img { aspect-ratio: 4/3; object-position: top; }

  .schedule-grid { grid-template-columns: 1fr; }

  .explore-grid { grid-template-columns: 1fr; padding: 3rem 1.25rem; }

  .gallery-strip-item { width: 280px; height: 360px; }

  .page-tiles { grid-template-columns: repeat(2, 1fr); }

  .form-row { grid-template-columns: 1fr; }

  .content-body { padding: 2.5rem 1.25rem 4rem; }

  .hotels-grid, .listings-grid, .messages-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .gallery-strip-item { width: 220px; height: 300px; }
  .page-tiles { grid-template-columns: 1fr; }
  .hero-names { font-size: clamp(3rem, 14vw, 5rem); }
}

/* ============================================
   Colorful Dots
   ============================================ */
.dot {
  display: inline-block;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-terracotta { background: var(--terracotta); }
.dot-sage       { background: var(--sage); }
.dot-marigold   { background: var(--marigold); }
.dot-blue       { background: var(--dusty-blue); }
.dot-blush      { background: var(--blush); }
.dot-gold       { background: var(--gold); }

.page-tile-icon .dot { width: 20px; height: 20px; }
.category-icon  .dot { width: 11px; height: 11px; }
.ticker-dot          { width: 8px;  height: 8px; vertical-align: middle; }

/* ============================================
   Utility
   ============================================ */
.text-center { text-align: center; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
