/* ============================================================
   ST WINEFRIDE'S GUEST HOUSE — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Jost:wght@300;400;500&display=swap');

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

:root {
  --stone:       #f5f0e8;
  --stone-dark:  #e0d8c8;
  --earth:       #8b7355;
  --earth-dark:  #5c4a2e;
  --abbey:       #2c3e2d;
  --abbey-light: #4a6741;
  --gold:        #c9a96e;
  --gold-light:  #e8d5b0;
  --cream:       #faf7f0;
  --text:        #2a2218;
  --text-muted:  #6b5d4e;
  --white:       #ffffff;
  --red:         #8b2c2c;
  --green:       #2e7d32;
  --blue:        #1565c0;
  --radius:      2px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
}

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

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 2rem; border-radius: var(--radius);
  font-family: 'Jost', sans-serif; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; transition: all .2s; border: none;
  font-weight: 500; text-decoration: none;
}
.btn-primary  { background: var(--gold); color: var(--abbey); }
.btn-primary:hover { background: var(--gold-light); }
.btn-abbey    { background: var(--abbey); color: var(--white); }
.btn-abbey:hover { background: var(--abbey-light); }
.btn-outline  { background: transparent; border: 1px solid rgba(201,169,110,.5); color: var(--gold); }
.btn-outline:hover { background: rgba(201,169,110,.1); }
.btn-ghost    { background: transparent; border: 1px solid var(--stone-dark); color: var(--text); }
.btn-ghost:hover { background: var(--stone); }
.btn-danger   { background: var(--red); color: var(--white); }
.btn-danger:hover { opacity: .85; }
.btn-success  { background: var(--green); color: var(--white); }
.btn-sm { padding: .45rem 1.1rem; font-size: .78rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: .9rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── NAV ──────────────────────────────────────────────────── */
.site-nav {
  background: var(--abbey);
  padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-brand {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 500;
  letter-spacing: .06em; display: flex; align-items: center; gap: .6rem;
}
.nav-brand .cross { font-size: 1rem; opacity: .8; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--stone); font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; opacity: .75; transition: opacity .2s, color .2s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--gold); }
.nav-cta { display: flex; gap: .75rem; align-items: center; }
.admin-link {
  background: rgba(201,169,110,.15); border: 1px solid rgba(201,169,110,.3);
  color: var(--gold); font-size: .72rem; padding: .35rem 1rem;
  border-radius: 20px; letter-spacing: .08em; cursor: pointer;
  transition: background .2s;
}
.admin-link:hover { background: rgba(201,169,110,.25); }
.nav-toggle { display: none; background: none; border: none; color: var(--gold); font-size: 1.5rem; cursor: pointer; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(165deg, #1a2e1b 0%, var(--abbey) 60%, #2a3d2b 100%);
  min-height: 620px; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 5rem 2rem; position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a96e' fill-opacity='0.035'%3E%3Cpath d='M44 44v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-40V0h-2v4h-4v2h4v4h2V6h4V4h-4zM4 44v-4H2v4H-2v2h4v4h2v-4h4v-2H4zM4 4V0H2v4h-4v2h4v4h2V6h4V4H4z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; max-width: 700px; }
.hero-icon { color: var(--gold); font-size: 1.8rem; opacity: .6; margin-bottom: 1.5rem; letter-spacing: .5em; }
.hero-eyebrow { color: var(--stone); font-size: .75rem; letter-spacing: .25em; text-transform: uppercase; margin-bottom: .75rem; opacity: .7; }
.hero h1 { color: var(--white); font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 300; font-style: italic; margin-bottom: .5rem; }
.hero h1 strong { font-weight: 600; font-style: normal; color: var(--gold); display: block; }
.hero-tagline { color: var(--stone-dark); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.15rem; margin: 1.5rem auto; max-width: 520px; line-height: 1.8; opacity: .9; }
.hero-divider { width: 50px; height: 1px; background: var(--gold); margin: 1.75rem auto; opacity: .5; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: .5rem; }

/* ── QUICK SEARCH ────────────────────────────────────────── */
.quick-search-wrap { background: var(--white); padding: 2rem; }
.quick-search {
  max-width: 960px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius);
  padding: 2rem 2.5rem;
  box-shadow: 0 -4px 0 0 var(--gold), 0 8px 40px rgba(44,62,45,.15);
  margin-top: -4rem; position: relative; z-index: 10;
}
.quick-search h3 {
  font-size: 1.2rem; color: var(--abbey); text-align: center;
  margin-bottom: 1.5rem; letter-spacing: .03em;
}
.search-grid { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 1rem; align-items: end; }
.field label { display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .4rem; font-weight: 500; }
.field input, .field select {
  width: 100%; border: 1px solid var(--stone-dark); border-radius: var(--radius);
  padding: .65rem .9rem; font-family: 'Jost', sans-serif; font-size: .9rem;
  background: var(--cream); color: var(--text); outline: none; transition: border-color .2s;
}
.field input:focus, .field select:focus { border-color: var(--earth); }

/* ── SECTIONS ────────────────────────────────────────────── */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1120px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .eyebrow { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--earth); margin-bottom: .75rem; display: block; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--abbey); }
.section-header p { color: var(--text-muted); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; margin-top: .5rem; }
.gold-bar { width: 50px; height: 2px; background: var(--gold); margin: 1rem auto 0; }

/* ── ROOM CARDS ──────────────────────────────────────────── */
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.room-card {
  background: var(--white); border: 1px solid var(--stone-dark);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.room-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(44,62,45,.14); }
.room-thumb {
  height: 210px; display: flex; align-items: center; justify-content: center;
  position: relative; font-size: 3.5rem;
}
.room-thumb.ensuite { background: linear-gradient(135deg, #e8ede8, #c8d8c8); }
.room-thumb.single  { background: linear-gradient(135deg, #ede8e0, #dfd4c4); }
.room-thumb.twin    { background: linear-gradient(135deg, #e0e8ee, #c4d4df); }
.room-thumb.family  { background: linear-gradient(135deg, #ede0e8, #dfc4d4); }
.room-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--abbey); color: var(--gold);
  font-size: .68rem; padding: 3px 11px; letter-spacing: .08em;
  text-transform: uppercase; border-radius: 20px;
}
.room-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.room-body h3 { font-size: 1.35rem; color: var(--abbey); margin-bottom: .4rem; }
.room-body p { font-size: .88rem; color: var(--text-muted); line-height: 1.75; flex: 1; }
.room-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin: .9rem 0; }
.tag { background: var(--stone); color: var(--earth-dark); font-size: .68rem; padding: 3px 9px; border-radius: 20px; }
.room-price { display: flex; align-items: baseline; gap: .35rem; margin: .5rem 0 1rem; }
.room-price .amount { font-size: 1.75rem; font-family: 'Cormorant Garamond', serif; color: var(--abbey); font-weight: 600; }
.room-price .per { color: var(--text-muted); font-size: .82rem; }
.avail-row { display: flex; align-items: center; justify-content: space-between; }
.avail { display: flex; align-items: center; gap: .45rem; font-size: .8rem; color: var(--text-muted); }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot-green { background: #4a6741; }
.dot-amber { background: var(--gold); }
.dot-red   { background: var(--red); }

/* ── QUOTE BAND ──────────────────────────────────────────── */
.quote-band {
  background: var(--abbey); padding: 5rem 2rem; text-align: center;
}
.quote-band blockquote {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.6rem); color: var(--stone);
  max-width: 680px; margin: 0 auto; line-height: 1.8;
}
.quote-band cite { display: block; color: var(--gold); font-style: normal; font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; margin-top: 1.5rem; }

/* ── ABOUT STRIP ─────────────────────────────────────────── */
.about-strip { background: var(--stone); padding: 5rem 2rem; }
.about-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text h2 { font-size: 2.2rem; color: var(--abbey); margin-bottom: 1rem; }
.about-text p { color: var(--text-muted); line-height: 1.9; margin-bottom: 1rem; font-size: .93rem; }
.info-list { list-style: none; margin-top: 1.5rem; }
.info-list li { display: flex; gap: .8rem; align-items: flex-start; padding: .6rem 0; border-bottom: 1px solid var(--stone-dark); font-size: .88rem; }
.info-list li .icon { color: var(--gold); flex-shrink: 0; width: 20px; text-align: center; }
.about-panel {
  background: var(--abbey); border-radius: var(--radius);
  padding: 3rem 2rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.about-panel .cross-lg { color: var(--gold); font-size: 4rem; opacity: .7; }
.about-panel p { color: var(--stone); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.15rem; line-height: 1.8; }
.about-panel .latin { color: var(--gold); font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; margin-top: .5rem; }

/* ── BOOKING FORM ────────────────────────────────────────── */
.booking-page { padding: 4rem 2rem; }
.booking-layout { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; align-items: start; }
.form-card {
  background: var(--white); border: 1px solid var(--stone-dark);
  border-radius: var(--radius); padding: 2.5rem;
}
.form-card h2 { font-size: 2rem; color: var(--abbey); margin-bottom: .25rem; }
.form-card .subtitle { color: var(--text-muted); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; margin-bottom: 2rem; }
.form-section { margin-bottom: 2rem; }
.form-section-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
  color: var(--abbey); border-bottom: 1px solid var(--stone-dark);
  padding-bottom: .5rem; margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: .6rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row.full { grid-template-columns: 1fr; }
.form-row.three { grid-template-columns: 1fr 1fr 1fr; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .4rem; font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; border: 1px solid var(--stone-dark); border-radius: var(--radius);
  padding: .65rem .9rem; font-family: 'Jost', sans-serif; font-size: .9rem;
  background: var(--cream); color: var(--text); outline: none; transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--earth); box-shadow: 0 0 0 3px rgba(139,115,85,.1); }
.form-group input.error,
.form-group select.error { border-color: var(--red); }
.form-group textarea { min-height: 90px; resize: vertical; }
.form-group .hint { font-size: .75rem; color: var(--text-muted); margin-top: .3rem; }
.checkbox-group { display: flex; gap: 1rem; flex-wrap: wrap; padding: .5rem 0; }
.checkbox-group label { display: flex; align-items: center; gap: .4rem; font-size: .85rem; cursor: pointer; }
.checkbox-group input[type=checkbox] { width: auto; accent-color: var(--abbey); }

/* Booking sidebar */
.booking-sidebar { position: sticky; top: 88px; }
.summary-card {
  background: var(--abbey); color: var(--white);
  border-radius: var(--radius); padding: 2rem; margin-bottom: 1.5rem;
}
.summary-card h3 { color: var(--gold); font-size: 1.2rem; margin-bottom: 1.5rem; text-align: center; }
.summary-line { display: flex; justify-content: space-between; padding: .5rem 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .88rem; }
.summary-line:last-child { border: none; font-weight: 500; font-size: 1rem; padding-top: 1rem; color: var(--gold); }
.summary-line span:first-child { color: var(--stone); }
.policy-card { background: var(--stone); border: 1px solid var(--stone-dark); border-radius: var(--radius); padding: 1.5rem; }
.policy-card h4 { color: var(--abbey); font-size: 1rem; margin-bottom: .75rem; }
.policy-card ul { list-style: none; }
.policy-card ul li { font-size: .82rem; color: var(--text-muted); padding: .3rem 0; display: flex; gap: .5rem; }
.policy-card ul li::before { content: '✝'; color: var(--gold); flex-shrink: 0; }

/* ── SUCCESS PAGE ────────────────────────────────────────── */
.success-wrap { max-width: 640px; margin: 0 auto; padding: 5rem 2rem; text-align: center; }
.success-icon { font-size: 4rem; margin-bottom: 1rem; }
.success-wrap h2 { font-size: 2.5rem; color: var(--abbey); margin-bottom: .5rem; }
.success-wrap .lead { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.15rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.8; }
.ref-box { background: var(--stone); border: 2px solid var(--gold); border-radius: var(--radius); padding: 1.5rem; margin: 2rem 0; }
.ref-box .label { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .5rem; }
.ref-box .ref { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--abbey); letter-spacing: .15em; font-weight: 600; }
.next-steps { background: var(--white); border: 1px solid var(--stone-dark); border-radius: var(--radius); padding: 1.5rem; margin: 2rem 0; text-align: left; }
.next-steps h4 { color: var(--abbey); margin-bottom: 1rem; }
.next-steps ol { list-style: none; counter-reset: steps; }
.next-steps ol li { counter-increment: steps; display: flex; gap: .75rem; align-items: flex-start; padding: .5rem 0; font-size: .88rem; color: var(--text-muted); border-bottom: 1px solid var(--stone); }
.next-steps ol li::before { content: counter(steps); background: var(--abbey); color: var(--gold); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; flex-shrink: 0; margin-top: 1px; }
.next-steps ol li:last-child { border: none; }

/* ── ADMIN ───────────────────────────────────────────────── */
.admin-nav { background: #1a2617; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 60px; }
.admin-nav .brand { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; }
.admin-nav .tabs { display: flex; gap: 0; }
.admin-nav .tabs a { color: var(--stone); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; padding: 0 1.25rem; height: 60px; display: flex; align-items: center; border-bottom: 3px solid transparent; transition: all .2s; opacity: .7; cursor: pointer; }
.admin-nav .tabs a:hover, .admin-nav .tabs a.active { opacity: 1; color: var(--gold); border-bottom-color: var(--gold); }
.admin-body { max-width: 1300px; margin: 2rem auto; padding: 0 2rem; }
.admin-header-bar { background: var(--abbey); color: var(--white); padding: 2.5rem; margin-bottom: 2rem; border-radius: var(--radius); }
.admin-header-bar h2 { color: var(--gold); font-size: 1.8rem; margin-bottom: .25rem; }
.admin-header-bar p { color: var(--stone); font-size: .85rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2rem; }
.stat-card { background: var(--white); border: 1px solid var(--stone-dark); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.stat-card .num { font-size: 2.2rem; font-family: 'Cormorant Garamond', serif; color: var(--abbey); font-weight: 600; line-height: 1; }
.stat-card .lbl { font-size: .72rem; color: var(--text-muted); letter-spacing: .1em; text-transform: uppercase; margin-top: .4rem; }
.stat-card.highlight { background: var(--abbey); border-color: var(--abbey); }
.stat-card.highlight .num { color: var(--gold); }
.stat-card.highlight .lbl { color: var(--stone); }
.toolbar { display: flex; gap: 1rem; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; justify-content: space-between; }
.filter-pills { display: flex; gap: .5rem; flex-wrap: wrap; }
.pill { background: var(--stone); border: 1px solid var(--stone-dark); border-radius: 20px; padding: .3rem 1rem; font-size: .75rem; cursor: pointer; transition: all .2s; letter-spacing: .05em; }
.pill.active { background: var(--abbey); color: var(--white); border-color: var(--abbey); }
.search-box { border: 1px solid var(--stone-dark); border-radius: var(--radius); padding: .55rem 1rem; font-family: 'Jost', sans-serif; font-size: .85rem; background: var(--cream); outline: none; min-width: 220px; }
.search-box:focus { border-color: var(--earth); }
.table-wrap { overflow-x: auto; border-radius: var(--radius); }
.res-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--stone-dark); }
.res-table th { background: var(--abbey); color: var(--gold); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; padding: .85rem 1rem; text-align: left; font-weight: 400; white-space: nowrap; }
.res-table td { padding: .9rem 1rem; border-bottom: 1px solid var(--stone); font-size: .88rem; vertical-align: middle; }
.res-table tr:last-child td { border-bottom: none; }
.res-table tr:hover td { background: #fdfaf5; }
.ref-cell { font-family: monospace; font-size: .8rem; color: var(--text-muted); }
.actions { display: flex; gap: .4rem; flex-wrap: wrap; }
.status-pill { display: inline-block; font-size: .7rem; padding: 3px 10px; border-radius: 20px; font-weight: 500; letter-spacing: .03em; white-space: nowrap; }
.s-pending     { background: #fff8e1; color: #f57f17; }
.s-confirmed   { background: #e8f5e9; color: #2e7d32; }
.s-checked-in  { background: #e3f2fd; color: #1565c0; }
.s-cancelled   { background: #ffebee; color: #c62828; }
.s-completed   { background: #f3e5f5; color: #6a1b9a; }

/* Calendar / Availability view */
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-top: 1rem; }
.cal-header { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-top: 1rem; }
.cal-header div { text-align: center; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); padding: .5rem 0; font-weight: 500; }
.cal-day { background: var(--white); border: 1px solid var(--stone-dark); border-radius: 2px; min-height: 80px; padding: .4rem; font-size: .75rem; }
.cal-day .day-num { font-weight: 500; color: var(--abbey); margin-bottom: .3rem; }
.cal-day.today { border-color: var(--gold); }
.cal-day.other-month .day-num { color: var(--stone-dark); }
.cal-booking { font-size: .65rem; padding: 1px 5px; border-radius: 2px; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cal-confirmed { background: #e8f5e9; color: #2e7d32; }
.cal-pending   { background: #fff8e1; color: #f57f17; }
.cal-checked   { background: #e3f2fd; color: #1565c0; }

/* Modal */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 500; align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.open { display: flex; }
.modal { background: var(--white); border-radius: var(--radius); padding: 2.5rem; max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; }
.modal-close { position: absolute; top: 1rem; right: 1.25rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-muted); line-height: 1; }
.modal-close:hover { color: var(--text); }
.modal h3 { color: var(--abbey); font-size: 1.6rem; margin-bottom: .25rem; }
.modal .ref-small { font-family: monospace; font-size: .8rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem 1.5rem; margin-bottom: 1.5rem; }
.detail-item .dl { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .2rem; }
.detail-item .dv { font-size: .9rem; color: var(--text); }
.detail-item.full { grid-column: 1 / -1; }
.modal-actions { display: flex; gap: .75rem; justify-content: flex-end; padding-top: 1.5rem; border-top: 1px solid var(--stone-dark); }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: #1a2617; color: var(--stone); padding: 3.5rem 2rem 2rem; margin-top: auto; }
.footer-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--gold); margin-bottom: .75rem; }
.footer-tagline { font-size: .85rem; opacity: .65; line-height: 1.7; font-style: italic; }
.footer-col h4 { color: var(--gold); font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 400; }
.footer-col ul { list-style: none; }
.footer-col ul li { padding: .3rem 0; font-size: .85rem; opacity: .7; }
.footer-col ul li a { opacity: 1; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { max-width: 1120px; margin: 2.5rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; font-size: .78rem; opacity: .5; flex-wrap: wrap; gap: .5rem; }

/* ── TOASTS ──────────────────────────────────────────────── */
.toast-container { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; display: flex; flex-direction: column; gap: .75rem; }
.toast { background: var(--abbey); color: var(--white); padding: 1rem 1.5rem; border-radius: var(--radius); font-size: .85rem; box-shadow: 0 4px 20px rgba(0,0,0,.3); border-left: 4px solid var(--gold); max-width: 320px; animation: slideIn .3s ease; }
.toast.success { border-left-color: var(--green); }
.toast.error { border-left-color: var(--red); }
@keyframes slideIn { from { transform: translateX(120%); opacity: 0; } to { transform: none; opacity: 1; } }

/* ── PAGE HEADER ─────────────────────────────────────────── */
.page-header { background: var(--abbey); padding: 3.5rem 2rem; text-align: center; }
.page-header h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3rem); font-style: italic; }
.page-header .sub { color: var(--gold); font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; margin-top: .5rem; }

/* ── UTILITIES ───────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.hidden { display: none !important; }
.alert { padding: 1rem 1.25rem; border-radius: var(--radius); font-size: .88rem; margin-bottom: 1rem; }
.alert-info { background: #e3f2fd; color: #1565c0; border: 1px solid #bbdefb; }
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.alert-warning { background: #fff8e1; color: #f57f17; border: 1px solid #ffe0b2; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .search-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-row.three { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}
