/* =========================================
   1. THEME TOKENS & GLOBAL
   ========================================= */
:root {
  --green:#0e4d2e;    /* primary dark green */
  --purple:#4b1d63;   /* primary dark purple */
  --bg:#0b0b0f;
  --ink:#f3f4f6;
  --muted:#cbd5e1;
  --card:#16161c;
  --ok:#16a34a;       /* success button color */
  --no:#dc2626;       /* danger button color */
  --gold:#c8ad7f;     /* accent for separators/pills */
}

*{box-sizing:border-box}

body {
  margin:0; color:var(--ink);
  font-family:Cormorant Garamond, system-ui,-apple-system, Segoe UI, Roboto, Inter, Ubuntu, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at -10% -20%, rgba(255,255,255,.06), transparent 55%),
    radial-gradient(1000px 500px at 110% 120%, rgba(255,255,255,.06), transparent 55%),
    linear-gradient(135deg,var(--green), var(--purple));
}

/* Add this to force links to stay white */
a, a:visited {
  color: #ffffff;
  text-decoration-color: var(--gold); /* Optional: keeps the underline gold if you like that style */
}

a:hover {
  color: #ffffff;
  /* You can add text-decoration: underline; here if you want hover effects globally */
}


/* =========================================
   2. NAVBAR (STICKY)
   ========================================= */
.topnav {
  position:sticky; top:0; z-index:1000;
  backdrop-filter: blur(8px);
  background:linear-gradient(135deg, rgba(14,77,46,.75), rgba(75,29,99,.75));
  border-bottom:1px solid rgba(255,255,255,.14);
}
.topnav .inner {
  max-width:1120px; margin:0 auto; padding:10px 20px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.brand {
  display:flex; align-items:center; gap:10px; color:#fff; text-decoration:none;
  font-weight:700; letter-spacing:.3px; font-size:24px;
}
.brand .script {font-family:'Great Vibes', cursive; font-size:28px}
.navlinks {display:flex; gap:10px; flex-wrap:wrap}
.navlinks a {
  text-decoration:none; color:#fff; font-weight:700;
  padding:8px 12px; border-radius:999px;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14);
}
.navlinks a:hover {background:rgba(255,255,255,.14)}
.navlinks a.active {
    background: var(--green);
    color: var(--ink);
    border-color: rgba(255,255,255,.4);
    box-shadow: 0 2px 10px rgba(0,0,0,.25);
}

/* Admin Link in Nav (Hidden by default) */
header #admin-link { display:none; }

/* =========================================
   3. HEADER / HERO
   ========================================= */
header { padding:56px 20px 28px; text-align:center; position:relative; }
header:before {
  content:""; position:absolute; inset:auto 0 0 0; height:10px;
  background:linear-gradient(90deg, transparent, var(--gold), transparent); opacity:.7;
}
.title {font-weight:700; letter-spacing:0.5px}
.title .names {
  display:block; font-family:'Great Vibes', cursive;
  font-size: clamp(36px, 7vw, 84px); color:#fff; margin:0
}
.title .date {
  display:block; font-size: clamp(14px, 2.5vw, 18px);
  color:var(--muted); margin-top:8px
}

/* =========================================
   4. CONTENT & CARDS
   ========================================= */
.container {max-width:1120px; margin:0 auto; padding:0 20px 80px}
.grid {display:grid; gap:16px}
@media(min-width:880px){.grid{grid-template-columns:1.2fr 1fr}}
.admin-wrap {max-width:1120px; margin:0 auto; padding:0 20px 80px}

.card {
  background:rgba(0,0,0,.28); backdrop-filter: blur(8px);
  border:1px solid rgba(255,255,255,.10); border-radius:24px;
  padding:24px; box-shadow:0 12px 30px rgba(0,0,0,.35)
}
.stack {display:grid; gap:16px}
h1 {margin:0 0 12px 0; font-size:32px}
h2 {margin:0 0 12px 0; font-size:24px}
h3 {margin:0 0 8px 0; font-size:20px}
p {margin:0 0 10px 0}
.small {font-size:12px; color:var(--muted)}

.pill {display:inline-block; padding:6px 10px; border-radius:999px; border:1px solid rgba(255,255,255,.15); background:rgba(255,255,255,.06); font-size:12px}
.role {display:inline-block; font-weight:700; letter-spacing:.2px; color:#fff; background:rgba(200,173,127,.18); border:1px solid rgba(200,173,127,.45); padding:6px 10px; border-radius:999px; margin-bottom:8px}

/* Admin status badges */
.pill.ok {background:rgba(22,163,74,.15); border-color:rgba(22,163,74,.45)}
.pill.no {background:rgba(220,38,38,.15); border-color:rgba(220,38,38,.45)}
.pill.na {background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.25)}
.party-item.declined {border-color:rgba(220,38,38,.45)}

/* =========================================
   5. FORMS & BUTTONS
   ========================================= */
.field {display:grid; gap:8px; margin-bottom:12px}
.row {display:grid; gap:12px}
@media(min-width:640px){.row{grid-template-columns:1fr 1fr}}

input[type="text"], select, textarea, 
input[type="password"], input[type="number"], input[type="url"] {
  width:100%; padding:12px 14px; border-radius:12px;
  border:1px solid rgba(255,255,255,.14); background:#0b1220; color:var(--ink);
  font-family:inherit; font-size:1rem;
}
input[type="file"] { color:var(--muted); font-size:1rem; }
textarea {min-height:84px}

.btn {
  cursor:pointer; padding:12px 16px; border:none; border-radius:14px; font-weight:700; color:white;
  background:linear-gradient(135deg,var(--green),var(--purple)); box-shadow:0 6px 18px rgba(0,0,0,.3);
  transition: transform .06s ease, box-shadow .06s ease;
  display:inline-flex; align-items:center; justify-content:center; gap:6px; text-decoration:none;
}
.btn:hover {transform:translateY(-1px); box-shadow:0 10px 22px rgba(0,0,0,.35)}
.btn.secondary, .btn.btn-secondary {background:#27304a}
.btn.danger {background:var(--no)}
.btn.ok {background:var(--ok)}
.btn[disabled] {opacity:.6; cursor:not-allowed}

.btn.ghost {
  background: transparent; border: 1px solid rgba(255, 255, 255, 0.2); box-shadow: none; color: var(--muted);
}
.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.05); border-color: #fff; color: #fff; transform: translateY(0);
}

/* =========================================
   6. MODULES: PARTY, MAP, COUNTDOWN
   ========================================= */
.party-item {background:var(--card); border:1px solid rgba(255,255,255,.08); border-radius:16px; padding:16px}
.party-grid {display:grid; gap:12px}

.mapwrap {border-radius:16px; overflow:hidden; border:1px solid rgba(255,255,255,.08)}

.countdown {display:flex; justify-content:center; gap:14px; flex-wrap:wrap; margin-top:16px}
.timebox {min-width:92px; text-align:center; background:var(--card); border:1px solid rgba(255,255,255,.10); border-radius:16px; padding:16px}
.timebox .num {font-size:32px; font-weight:800}
.timebox .label {font-size:12px; letter-spacing:1px; text-transform:uppercase; color:var(--muted)}

/* =========================================
   7. LISTS: ATTRACTIONS, HOTELS, RESTAURANTS
   ========================================= */
/* Grid Layouts */
.attractions, .hotels {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px;
}

/* Card Base */
.attraction, .hotel {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px; padding: 12px; transition: background 0.2s ease;
}
.attraction:hover, .hotel:hover { background: rgba(255, 255, 255, 0.06); }

/* Images */
.attraction img, .hotel img {
  width: 80px; height: 80px; object-fit: cover; border-radius: 12px; flex-shrink: 0; background: #000;
}
/* Hotel/Restaurant images slightly bigger/different ratio */
.hotel img, .restaurants .attraction img { width: 96px; height: 72px; border-radius: 8px; }
.restaurants .attraction img { object-fit:contain; background:#fff; padding:4px; }

/* Text Content */
.attraction .info, .hotel .info {
  flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; min-height: 80px;
}
.attraction .title, .hotel .title { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 6px; }
.attraction .title a, .hotel .title a {
  color: #fff; font-weight: 700; font-size: 18px; text-decoration: none; font-family: 'Cormorant Garamond', serif;
}
.attraction .title a:hover, .hotel .title a:hover { text-decoration: underline; text-decoration-color: var(--gold); }

/* Badges & Meta */
.attraction .meta, .hotel .meta { font-size: 13px; color: var(--muted); }
.badge { background: rgba(255, 255, 255, 0.1); padding: 2px 8px; border-radius: 6px; font-size: 12px; }
.hotel .badge.star, .stars { color: #fbbf24; font-weight:700; }
.stars { font-size: 15px; text-shadow: 0 1px 2px rgba(0,0,0,0.5); margin-bottom: 4px; }

/* List Buttons */
.chipbtn.infobtn {
  background: rgba(200, 173, 127, 0.2); color: var(--gold); border: 1px solid rgba(200, 173, 127, 0.4);
  width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: sans-serif; font-weight: bold; font-size: 12px; cursor: pointer; flex-shrink: 0;
}
.chipbtn.infobtn:hover { background: var(--gold); color: #000; }

.dirbtn { color: var(--gold); text-decoration: none; font-weight: 600; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; }
.dirbtn:hover { text-decoration: underline; }

.attraction .meta .btn, .hotel .meta .btn {
  font-size: 11px; padding: 4px 10px; border-radius: 6px; margin-top: 8px; margin-right:4px; display: inline-block; line-height: 1.2;
}

/* =========================================
   8. REGISTRY SPECIFIC STYLES
   ========================================= */
/* Registry Grid (reusing generic list styles but specific class) */
.item-list {
  list-style:none; padding:0; margin:16px 0;
  display:grid; grid-template-columns:repeat(auto-fit, minmax(300px, 1fr)); gap:16px;
}
.item-card {
  display:flex; flex-direction:column; gap:12px; padding:12px;
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.10); border-radius:16px;
}
.item-card .item-image img {
  width:100%; height:200px; object-fit:cover; border-radius:10px; background:#fff; cursor:pointer;
}
.item-details { display:flex; flex-direction:column; gap:8px; min-width:0; flex-grow:1; }
.item-card h2 { font-size:1.25rem; font-weight:700; line-height:1.2; margin:0; color:var(--ink); }
.item-price { color:var(--ink); font-size:1.1rem; font-weight:700; }

.card-section-categories { display:flex; gap:6px; align-items:center; flex-wrap:wrap; min-height:24px; }
.item-category {
  display:inline-block; padding:2px 8px; border-radius:999px; font-size:.85rem;
  border:1px solid rgba(255,255,255,.16); background:rgba(255,255,255,.06);
}
.item-actions {
  display:flex; gap:10px; align-items:center; flex-wrap:wrap; margin-top:auto; padding-top:12px; border-top:1px solid rgba(255,255,255,.1);
}
.item-actions form { margin:0; }

/* Filter Form */
.filter-form {
  background:transparent; padding:0; margin-bottom:0;
  display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; align-items:start;
}
.filter-form label { font-weight:600; display:block; margin-bottom:0.5rem; }
.filter-form select {
  padding:0.75rem; border-radius:8px; border:1px solid rgba(255,255,255,.2); font-size:1rem; width:100%;
  background-color:rgba(255,255,255,.1); color:var(--ink); font-family:inherit;
}
.filter-form .category-group, .filter-form .submit-group { grid-column:1 / -1; }
.category-list { display:flex; flex-wrap:wrap; gap:0.75rem; }
.category-checkbox {
  font-weight:normal; display:flex; align-items:center; gap:0.25rem; cursor:pointer;
  background:rgba(255,255,255,.05); padding:4px 8px; border-radius:6px; border:1px solid rgba(255,255,255,.1);
}

/* Sticky Filter Toggle */
#sticky-filter-section {
  position:sticky; top:80px; z-index:100; background:var(--card);
  padding:1.5rem; margin-bottom:2rem; border-radius:24px; border:1px solid rgba(255,255,255,.10);
  transition:padding 0.3s ease;
}
#sticky-filter-section.filters-collapsed { padding-top:1.5rem; padding-bottom:1.5rem; }
#sticky-filter-section.filters-collapsed .filter-form { display:none; }

/* Range Slider */
.dual-slider-container { width:100%; }
.range-slider { position:relative; height:8px; background:rgba(255,255,255,.2); border-radius:5px; }
.range-fill { position:absolute; height:100%; background:var(--green); border-radius:5px; }
.range-slider input[type="range"] {
  position:absolute; width:100%; top:-4px; height:16px; -webkit-appearance:none; appearance:none; background:transparent; pointer-events:none;
}
.range-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance:none; appearance:none; width:20px; height:20px; background:var(--ink);
  border-radius:50%; cursor:pointer; pointer-events:auto; border:2px solid var(--card); box-shadow:0 0 5px rgba(0,0,0,0.2);
}
.slider-values { display:flex; justify-content:space-between; margin-top:0.75rem; font-weight:600; color:var(--muted); }

.empty-list { text-align:center; font-size:1.2rem; color:var(--muted); background:var(--card); padding:2rem; border-radius:24px; }

/* Registry Admin & Login */
.login-container {
  max-width:450px; margin:5rem auto; padding:2.5rem; background:var(--card);
  border:1px solid rgba(255,255,255,.10); border-radius:24px; box-shadow:0 6px 18px rgba(0,0,0,.35);
}
.login-container h2 { text-align:center; font-family:'Great Vibes', cursive; font-size:42px; margin:0 0 2rem 0; }
.error, .message {
  color:var(--ink); background:rgba(14, 77, 46, 0.3); border:1px solid rgba(14, 77, 46, 0.7);
  padding:1rem; border-radius:12px; margin-bottom:1.5rem; text-align:center; font-weight:600;
}
.error, .message.error { color:#ff8a8a; background:rgba(220, 53, 69, 0.2); border:1px solid rgba(220, 53, 69, 0.5); }

.admin-card { background:var(--card); border:1px solid rgba(255,255,255,.10); border-radius:24px; padding:2rem; margin-bottom:2rem; }
.admin-card .form-group { display:grid; grid-template-columns:1fr 3fr; gap:1.5rem; align-items:center; }
.item-table { width:100%; border-collapse:collapse; margin-top:1.5rem; }
.item-table th, .item-table td { padding:1rem; border:1px solid rgba(255,255,255,.15); text-align:left; vertical-align:middle; }
.item-table th { background-color:rgba(255,255,255,.05); font-weight:700; }
.admin-thumb { max-width:100px; height:75px; object-fit:cover; border-radius:8px; border:1px solid rgba(255,255,255,.1); }
.purchased-row { background-color:rgba(0,0,0,.3); color:var(--muted); }
.purchased-row a { color:var(--muted); text-decoration:line-through; }

/* =========================================
   9. GALLERY & EXTRAS
   ========================================= */
/* Masonry Gallery */
.gallery-masonry { column-count: 1; column-gap: 16px; }
@media (min-width: 600px) { .gallery-masonry { column-count: 2; } }
@media (min-width: 900px) { .gallery-masonry { column-count: 3; } }
.gallery-item { break-inside: avoid; margin-bottom: 16px; }
.gallery-item img {
  width: 100%; border-radius: 12px; display: block; cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease; border: 1px solid rgba(255,255,255,0.1); background: #000;
}
.gallery-item img:hover { transform: scale(1.02); filter: brightness(1.1); box-shadow: 0 8px 20px rgba(0,0,0,0.4); }

/* Dialogs */
dialog {
  background: #1e1e24; color: var(--ink); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 16px;
  padding: 0; max-width: 500px; width: 90%; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}
dialog::backdrop { background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(4px); }
.dlghdr {
  padding: 16px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); display: flex;
  justify-content: space-between; align-items: center; background: rgba(0, 0, 0, 0.2);
}
.dlghdr h2 { margin: 0; font-size: 20px; color: #fff; }
.dlgbody { padding: 20px; line-height: 1.6; font-size: 15px; }
.dlgfoot {
  padding: 12px 20px; border-top: 1px solid rgba(255, 255, 255, 0.08); text-align: right; background: rgba(0, 0, 0, 0.2);
}
.closebtn {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); color: var(--muted);
  padding: 6px 12px; border-radius: 8px; cursor: pointer; font-size: 13px;
}
.closebtn:hover { background: rgba(255, 255, 255, 0.15); color: #fff; }

/* Lightbox */
#lightbox-overlay {
  display: none; position: fixed; z-index: 2000; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9); justify-content: center; align-items: center; cursor: pointer; backdrop-filter: blur(5px);
}
#lightbox-image {
  max-width: 90%; max-height: 90%; border-radius: 8px; box-shadow: 0 0 20px rgba(0,0,0,0.5); animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

/* Footer */
footer { text-align:center; padding:16px 0 28px; }

/* Animations */
.pulse-money {
  color: var(--ok); font-weight: 700; animation: pulse-green 2s infinite; display: inline-block;
}
@keyframes pulse-green {
  0% { transform: scale(1); text-shadow: 0 0 0 rgba(22,163,74, 0); }
  50% { transform: scale(1.1); text-shadow: 0 0 10px rgba(22,163,74, 0.4); }
  100% { transform: scale(1); text-shadow: 0 0 0 rgba(22,163,74, 0); }
}

/* ========== MOBILE HEADER OPTIMIZATIONS ========== */
@media (max-width: 1024px) {
  /* 1. Stack the layout vertically */
  .topnav .inner {
    flex-direction: column;
    gap: 12px;
    padding: 12px 16px;
  }

  /* 2. Center the buttons and make them fill space evenly */
  .navlinks {
    justify-content: center;
    width: 100%;
    gap: 8px; /* Tighter gap */
  }

  /* 3. Make buttons slightly more compact on mobile */
  .navlinks a {
    font-size: 14px;
    padding: 6px 10px;
    flex-grow: 1; /* Makes buttons expand to fill the row evenly */
    text-align: center;
  }
  
  /* 4. Optional: Un-stick the header on mobile if it gets too tall
     (Remove this block if you want it to stay sticky) */
  .topnav {
    position: relative; 
  }

}

/* =========================================
   10. ADMIN STATS (Added)
   ========================================= */

/* The Stats Grid (Top cards) */
.stats-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  gap: 16px; 
  margin-bottom: 24px;
}

.stat-card { 
  background: rgba(255,255,255,0.03); /* Subtle contrast against main card */
  border: 1px solid rgba(255,255,255,0.08); 
  padding: 20px; 
  border-radius: 16px; 
  text-align: center; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat-card h3 {
  color: var(--muted);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.big-num { 
  font-size: 3em; 
  font-weight: 700; 
  color: var(--ok); /* Uses your green success color */
  line-height: 1;
  font-family: 'Cormorant Garamond', serif;
}

.meal-breakdown { 
  display: flex; 
  flex-direction: column; 
  gap: 6px; 
  font-size: 1.1em;
  color: var(--ink);
}

.meal-breakdown strong { color: var(--gold); }

/* The Tabs */
.tabs { 
  display: flex; 
  gap: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.1); 
  margin-bottom: 16px; 
  flex-wrap: wrap;
}

.tab-btn { 
  background: transparent; 
  border: none; 
  padding: 10px 16px; 
  cursor: pointer; 
  font-weight: 700; 
  color: var(--muted); 
  border-bottom: 2px solid transparent; 
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.tab-btn:hover { 
  color: #fff; 
  background: rgba(255,255,255,0.05);
  border-radius: 8px 8px 0 0;
}

.tab-btn.active { 
  color: var(--gold); 
  border-bottom-color: var(--gold); 
}

/* The Lists */
.guest-list-stats { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
  max-height: 300px; 
  overflow-y: auto; 
  background: rgba(0,0,0,0.2); /* Darker background for list area */
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}

.guest-list-stats li { 
  padding: 10px 16px; 
  border-bottom: 1px solid rgba(255,255,255,0.06); 
  color: var(--ink);
  font-size: 0.95rem;
}

.guest-list-stats li:last-child { border-bottom: none; }
.guest-list-stats li:nth-child(even) { background: rgba(255,255,255,0.02); }

/* Custom Scrollbar for the list */
.guest-list-stats::-webkit-scrollbar { width: 8px; }
.guest-list-stats::-webkit-scrollbar-track { background: rgba(0,0,0,0.2); border-radius: 12px;}
.guest-list-stats::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }

/* =========================================
   11. DASHBOARD & CLEAN ADMIN (NEW)
   ========================================= */

/* --- Stats Dashboard Widgets --- */
.stats-header {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.dashboard-widget {
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.widget-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.widget-icon.purple { background: rgba(168, 85, 247, 0.2); color: #a855f7; }

.widget-data h3 { margin: 0; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.widget-data .value { font-size: 28px; font-weight: 700; color: #fff; line-height: 1.1; font-family: 'Cormorant Garamond', serif; }

/* --- Clean Admin List --- */
/* The container for a single guest row */
.guest-row-clean {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr auto; /* Name, Role, Controls, Actions */
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.1);
  transition: background 0.2s;
}
.guest-row-clean:hover { background: rgba(255,255,255,0.03); }
.guest-row-clean:last-child { border-bottom: none; }

/* Mobile fallback for grid */
@media (max-width: 900px) {
  .guest-row-clean { grid-template-columns: 1fr; gap: 10px; padding: 16px; }
}

/* Compact Inputs (Invisible until focused) */
.clean-input {
  background: transparent !important;
  border: 1px solid transparent !important;
  padding: 6px 8px !important;
  font-size: 15px !important;
  color: #fff !important;
  transition: all 0.2s;
}
.clean-input:hover { border-color: rgba(255,255,255,0.1) !important; background: rgba(255,255,255,0.02) !important; }
.clean-input:focus { border-color: var(--gold) !important; background: #0b1220 !important; }

/* Control Group (Checkboxes/Selects) */
.control-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.mini-select {
  padding: 4px 8px !important;
  font-size: 13px !important;
  width: auto !important;
  background: #111 !important;
  border-color: rgba(255,255,255,0.15) !important;
}

/* Icon Buttons */
.icon-btn {
  width: 32px; height: 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.icon-btn.save { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.icon-btn.save:hover { background: #10b981; color: #fff; }

.icon-btn.trash { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.icon-btn.trash:hover { background: #ef4444; color: #fff; }

/* Status Dot */
.status-dot {
  width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 6px;
}
.status-dot.ok { background: #10b981; box-shadow: 0 0 8px #10b981; }
.status-dot.no { background: #ef4444; }
.status-dot.na { background: #6b7280; }

/* =========================================
   12. UNIFIED ADMIN PORTAL
   ========================================= */
.admin-login-link {
  display:inline-flex; align-items:center; justify-content:center;
  width:30px; height:30px; margin-left:2px; border-radius:50%;
  padding:0; background:transparent;
  color:#fff; text-decoration:none; opacity:.3;
  border:1px solid rgba(255,255,255,.22); transition:.2s ease;
}
.admin-login-link:hover, .admin-login-link:focus-visible {opacity:.9; background:rgba(255,255,255,.1)}
.admin-portal {padding-top:28px; padding-bottom:80px}
.admin-login-card {max-width:430px; margin:36px auto; padding:clamp(24px,5vw,42px)}
.admin-login-form {display:grid; gap:12px; margin-top:22px}
.admin-login-form .btn {width:100%}
.admin-honeypot {position:absolute!important; left:-10000px!important; width:1px!important; height:1px!important; overflow:hidden!important}
.admin-error {margin:18px 0 0; border-color:rgba(239,68,68,.55)!important}
.eyebrow {margin:0 0 5px; color:var(--gold); font-size:.76rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase}
.admin-portal-heading {padding:26px 4px 18px; text-align:left}
.admin-portal-heading:before {display:none}
.admin-portal-heading h1 {margin:0; font-size:clamp(2rem,5vw,3.35rem)}
.admin-portal-heading p:last-child {margin:6px 0 0; color:var(--muted)}

.admin-global-nav {
  position:sticky; top:65px; z-index:80; display:flex; justify-content:space-between;
  align-items:center; gap:12px; padding:10px; border:1px solid rgba(255,255,255,.12);
  border-radius:16px; background:rgba(11,11,15,.9); backdrop-filter:blur(12px); box-shadow:0 10px 26px rgba(0,0,0,.24)
}
.admin-global-links, .admin-global-actions {display:flex; align-items:center; gap:7px; flex-wrap:wrap}
.admin-global-actions form {margin:0}
.admin-global-links a {padding:8px 11px; border-radius:10px; text-decoration:none; color:var(--muted); font-weight:700}
.admin-global-links a:hover, .admin-global-links a.active {background:rgba(200,173,127,.15); color:#fff}
.admin-global-links a.active {box-shadow:inset 0 0 0 1px rgba(200,173,127,.35)}

.admin-wrap {padding:0; max-width:none}
.admin-dashboard {padding:clamp(18px,3vw,30px)}
.admin-dashboard-toolbar, .admin-section-heading {display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap}
.admin-dashboard-toolbar h2, .admin-section-heading h3 {margin:0}
.admin-dashboard-toolbar p {margin:4px 0 0}
.admin-local-tabs {display:flex; gap:6px; margin:22px 0; padding:5px; overflow-x:auto; border-radius:14px; background:rgba(0,0,0,.24)}
.admin-local-tabs button {flex:0 0 auto; min-height:42px; padding:9px 14px; border:0; border-radius:10px; background:transparent; color:var(--muted); font:inherit; font-weight:700; cursor:pointer}
.admin-local-tabs button:hover, .admin-local-tabs button.active {background:rgba(255,255,255,.1); color:#fff}
.admin-local-tabs button.active {box-shadow:inset 0 0 0 1px rgba(200,173,127,.4)}
.admin-panel {display:none}
.admin-panel.active {display:block}

.admin-metric-grid {display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:10px; margin-bottom:16px}
.admin-metric {min-height:105px; display:flex; flex-direction:column; justify-content:space-between; padding:16px; border-radius:15px; background:rgba(0,0,0,.22); border:1px solid rgba(255,255,255,.1)}
.admin-metric span {color:var(--muted); font-size:.86rem; font-weight:700}
.admin-metric strong {font-size:2rem; line-height:1}
.admin-metric.good {border-color:rgba(22,163,74,.38)}
.admin-metric.warn {border-color:rgba(245,158,11,.5); background:rgba(245,158,11,.08)}
.admin-metric.muted {opacity:.82}
.admin-overview-grid, .admin-tools-grid {display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; margin-bottom:16px}
.admin-surface {padding:18px; border-radius:16px; background:rgba(0,0,0,.2); border:1px solid rgba(255,255,255,.1)}
.admin-surface h3 {margin:0 0 6px}
.admin-form-narrow {max-width:820px}
.admin-button-row {display:flex; gap:9px; flex-wrap:wrap; align-items:center; margin-top:12px}
.admin-qr-wrap {display:flex; justify-content:center; padding:12px; margin-top:12px; border-radius:14px; background:#fff}
.admin-qr-wrap img {width:min(220px,100%); height:auto; aspect-ratio:1}

.attention-list {display:grid; gap:8px; margin-top:12px}
.attention-item {width:100%; display:flex; justify-content:space-between; align-items:flex-start; gap:12px; padding:12px; color:#fff; text-align:left; border:1px solid rgba(255,255,255,.1); border-radius:12px; background:rgba(255,255,255,.035); cursor:pointer}
.attention-item:hover {background:rgba(255,255,255,.075)}
.attention-item span:first-child {display:grid; gap:2px}
.attention-item small {color:var(--muted)}
.attention-tags {display:flex; justify-content:flex-end; gap:5px; flex-wrap:wrap}
.attention-tags em {font-style:normal; font-size:.72rem; padding:3px 7px; border-radius:999px; color:#fde68a; background:rgba(245,158,11,.13)}
.admin-empty-state {display:grid; gap:4px; padding:22px; margin-top:12px; text-align:center; border:1px dashed rgba(255,255,255,.18); border-radius:14px; color:var(--muted)}
.admin-empty-state strong {color:#fff}

.admin-filter-bar {display:grid; grid-template-columns:minmax(240px,2fr) minmax(150px,1fr) minmax(150px,1fr) auto; gap:10px; align-items:end; margin-bottom:8px}
.admin-filter-bar .field {margin:0}
.admin-filter-bar .btn {min-height:46px}
.admin-party-list {display:grid; gap:12px}
.admin-party-card, .admin-guest-card {border:1px solid rgba(255,255,255,.1); border-radius:15px; background:rgba(0,0,0,.18); overflow:hidden}
.admin-party-card>summary, .admin-guest-card>summary {list-style:none; display:flex; justify-content:space-between; align-items:center; gap:12px; padding:15px 17px; cursor:pointer}
.admin-party-card>summary::-webkit-details-marker, .admin-guest-card>summary::-webkit-details-marker {display:none}
.admin-party-card>summary:before, .admin-guest-card>summary:before {content:'›'; color:var(--gold); font-size:1.3rem; transition:transform .16s ease}
.admin-party-card[open]>summary:before, .admin-guest-card[open]>summary:before {transform:rotate(90deg)}
.admin-party-card>summary>span, .admin-guest-card>summary>span {display:grid; gap:2px; margin-right:auto}
.admin-party-card>summary small, .admin-guest-card>summary small {color:var(--muted)}
.admin-party-card>summary em, .admin-guest-card>summary em {font-style:normal; font-size:.78rem; color:#fde68a; white-space:nowrap}
.admin-party-card>summary em.ready {color:#86efac}
.admin-party-content {display:grid; gap:10px; padding:0 14px 14px}
.admin-guest-card {background:rgba(255,255,255,.035)}
.admin-guest-card>summary em {padding:4px 8px; border-radius:999px}
.admin-guest-card>summary em.status-attending {color:#86efac; background:rgba(22,163,74,.12)}
.admin-guest-card>summary em.status-declined {color:#fca5a5; background:rgba(220,38,38,.12)}
.admin-guest-card>summary em.status-unanswered {color:#fde68a; background:rgba(245,158,11,.12)}
.admin-guest-editor {padding:16px; border-top:1px solid rgba(255,255,255,.08)}
.admin-inline-alert {padding:10px 12px; margin-bottom:12px; border:1px solid rgba(245,158,11,.45); border-radius:10px; color:#fde68a; background:rgba(245,158,11,.08)}
.admin-checkbox-field {display:flex; align-items:end}
.admin-checkbox-field label {display:flex; align-items:center; gap:9px; min-height:46px; width:100%; padding:10px 12px; border:1px solid rgba(255,255,255,.14); border-radius:12px; background:rgba(0,0,0,.16)}
.admin-checkbox-field input {width:auto}
.admin-choice-group {min-width:0; padding:0; border:0}
.admin-choice-group legend {margin-bottom:8px; font-weight:700}
.admin-choice-group>div {display:flex; min-height:46px; align-items:center; gap:18px; padding:8px 12px; border:1px solid rgba(255,255,255,.12); border-radius:12px; background:rgba(0,0,0,.16)}
.admin-choice-group label {display:flex; align-items:center; gap:6px}
.admin-choice-group input {width:auto}
.admin-danger-zone {margin-top:14px; padding:10px 12px; border:1px solid rgba(239,68,68,.18); border-radius:11px; background:rgba(239,68,68,.04)}
.admin-danger-zone summary, .admin-diagnostics summary {cursor:pointer; font-weight:700}
.admin-diagnostics {align-self:start}
.admin-collapsible-card {padding:0; overflow:hidden}
.admin-collapsible-card>summary {list-style:none; display:flex; align-items:center; gap:12px; padding:18px 20px; cursor:pointer}
.admin-collapsible-card>summary::-webkit-details-marker {display:none}
.admin-collapsible-card>summary:before {content:'›'; color:var(--gold); font-size:1.4rem; transition:transform .16s ease}
.admin-collapsible-card[open]>summary:before {transform:rotate(90deg)}
.admin-collapsible-card>summary span {display:grid; gap:2px}
.admin-collapsible-card>summary small {color:var(--muted); font-weight:400}
.admin-collapsible-content {padding:0 20px 20px; border-top:1px solid rgba(255,255,255,.08)}
.admin-collapsible-content form {padding-top:18px}

@media (max-width:900px) {
  .admin-global-nav {position:static}
  .admin-metric-grid {grid-template-columns:repeat(2,minmax(0,1fr))}
  .admin-overview-grid, .admin-tools-grid {grid-template-columns:1fr}
  .admin-filter-bar {grid-template-columns:1fr 1fr}
  .admin-search-field {grid-column:1/-1}
}
@media (max-width:600px) {
  .topnav .inner {align-items:flex-start}
  .admin-global-nav {align-items:flex-start; flex-direction:column}
  .admin-global-links {display:grid; grid-template-columns:repeat(2,1fr); width:100%}
  .admin-global-links a {text-align:center}
  .admin-global-actions {width:100%; justify-content:space-between}
  .admin-metric-grid {grid-template-columns:repeat(2,minmax(0,1fr))}
  .admin-metric:last-child {grid-column:1/-1}
  .admin-filter-bar {grid-template-columns:1fr}
  .admin-search-field {grid-column:auto}
  .attention-item {flex-direction:column}
  .attention-tags {justify-content:flex-start}
  .admin-party-card>summary, .admin-guest-card>summary {align-items:flex-start; flex-wrap:wrap}
  .admin-party-card>summary em, .admin-guest-card>summary em {margin-left:28px}
}

/* Wedding day quick guide */
.day-of-home-banner {margin-top:0; margin-bottom:18px}
.day-of-home-banner .card {text-align:center; border-color:rgba(200,173,127,.55); box-shadow:0 18px 45px rgba(0,0,0,.25)}
.day-of-home-banner h2 {margin:2px 0 8px}
.wedding-day-page {padding-top:24px; padding-bottom:80px}
.wedding-day-hero {padding:32px clamp(18px,5vw,54px); text-align:center; border:1px solid rgba(200,173,127,.42); border-radius:24px; background:linear-gradient(135deg,rgba(14,77,46,.65),rgba(75,29,99,.65)); box-shadow:0 22px 55px rgba(0,0,0,.25)}
.wedding-day-hero:before {display:none}
.wedding-day-hero h1 {margin:0; font-size:clamp(2.6rem,8vw,5.5rem); font-family:'Great Vibes',cursive; font-weight:400}
.wedding-day-hero>p:last-of-type {max-width:650px; margin:8px auto 0; font-size:1.18rem; color:var(--muted)}
.wedding-day-actions {display:flex; justify-content:center; gap:10px; flex-wrap:wrap; margin-top:20px}
.wedding-day-grid {display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; margin:18px 0}
.wedding-day-essential {display:flex; align-items:flex-start; gap:14px}
.wedding-day-essential h2 {margin:0 0 4px; font-size:1.45rem}
.wedding-day-essential p {margin:0}
.wedding-day-number {flex:0 0 38px; height:38px; display:grid; place-items:center; border:1px solid rgba(200,173,127,.5); border-radius:50%; color:var(--gold); font-weight:700}
.wedding-day-section {margin-bottom:18px}
.wedding-day-section-copy {margin-bottom:16px}
.wedding-day-section h2, .wedding-day-photo-card h2 {margin:0 0 6px}
.wedding-day-map {height:420px}
.wedding-day-split {display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px}
.wedding-day-photo-card {display:flex; align-items:center; justify-content:space-between; gap:24px; margin-bottom:18px; border-color:rgba(200,173,127,.45)}
.wedding-day-photo-card>div {max-width:720px}
.wedding-day-photo-card .btn {flex:0 0 auto}
.wedding-day-reminders ul {display:grid; gap:8px; margin-bottom:0; padding-left:22px}
@media (max-width:800px) {
  .wedding-day-grid, .wedding-day-split {grid-template-columns:1fr}
  .wedding-day-photo-card {align-items:flex-start; flex-direction:column}
  .wedding-day-photo-card .btn {width:100%}
}

/* =========================================
   13. ADMIN PORTAL POLISH
   ========================================= */
.admin-body {
  min-height:100vh;
  background:
    radial-gradient(900px 520px at 4% 0%, rgba(14,77,46,.42), transparent 62%),
    radial-gradient(900px 520px at 100% 15%, rgba(75,29,99,.38), transparent 64%),
    #0b0b0f;
}
.admin-site-header {
  position:sticky;
  background:rgba(9,13,14,.92);
  border-bottom-color:rgba(200,173,127,.22);
  box-shadow:0 8px 30px rgba(0,0,0,.22);
}
.admin-site-header .inner {max-width:1240px; min-height:64px; padding-block:9px}
.admin-site-header .brand .script {font-size:26px}
.admin-site-identity {display:flex; align-items:center; gap:10px; color:var(--muted)}
.admin-site-identity span {padding:4px 8px; border:1px solid rgba(200,173,127,.35); border-radius:999px; color:var(--gold); font-size:.7rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase}
.admin-site-identity strong {font-size:.9rem; letter-spacing:.02em}

.admin-portal {max-width:1240px; padding-top:18px; padding-bottom:80px}
.admin-login-card {max-width:440px; margin:48px auto; padding:clamp(26px,5vw,44px); border-color:rgba(200,173,127,.22)}
.admin-honeypot {display:none!important}
.admin-portal-heading {display:flex; justify-content:space-between; align-items:flex-end; gap:28px; padding:34px 4px 24px; text-align:left}
.admin-portal-heading h1 {margin:0; font-size:clamp(2.25rem,5vw,3.7rem); line-height:1}
.admin-portal-heading>div:first-child>p:last-child {max-width:680px; margin:10px 0 0; color:var(--muted); font-size:1.05rem}
.admin-heading-meta {display:flex; gap:8px; flex:0 0 auto}
.admin-heading-meta span {display:grid; gap:2px; min-width:125px; padding:11px 14px; border:1px solid rgba(255,255,255,.1); border-radius:13px; background:rgba(255,255,255,.04)}
.admin-heading-meta small {color:var(--muted); font-size:.7rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase}
.admin-heading-meta strong {font-size:1rem}

.admin-global-nav {
  top:72px;
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  gap:16px;
  padding:10px 12px;
  border-radius:18px;
  background:rgba(13,17,19,.94);
  backdrop-filter:blur(16px);
  box-shadow:0 14px 38px rgba(0,0,0,.3);
}
.admin-global-brand {display:flex; align-items:center; gap:9px; min-width:164px; color:#fff; text-decoration:none}
.admin-global-brand>span:last-child {display:grid; line-height:1.05}
.admin-global-brand small {margin-top:4px; color:var(--muted); font-size:.68rem; font-weight:600; letter-spacing:.04em}
.admin-global-mark {display:grid; place-items:center; width:36px; height:36px; border:1px solid rgba(200,173,127,.42); border-radius:11px; color:var(--gold); background:rgba(200,173,127,.08); font-size:.78rem; font-weight:700; letter-spacing:.05em}
.admin-global-links {justify-content:center}
.admin-global-actions {justify-content:flex-end}
.admin-global-links a {padding:9px 12px; font-size:.9rem; transition:.18s ease}
.admin-global-links a:hover {background:rgba(255,255,255,.07); color:#fff}
.admin-global-links a.active {color:#fff; background:linear-gradient(135deg,rgba(14,77,46,.72),rgba(75,29,99,.72)); box-shadow:inset 0 0 0 1px rgba(200,173,127,.28)}
.admin-preview-button {color:#17120b!important; background:var(--gold)!important; border-color:var(--gold)!important; box-shadow:none!important}
.admin-preview-button:hover {filter:brightness(1.08)}
.admin-logout-button {opacity:.82}

.admin-simulator-card {display:grid; grid-template-columns:auto minmax(0,1fr) auto; align-items:center; gap:18px; margin-bottom:18px; padding:18px 20px; border:1px solid rgba(200,173,127,.38); border-radius:20px; background:linear-gradient(115deg,rgba(14,77,46,.6),rgba(75,29,99,.5)); box-shadow:0 16px 36px rgba(0,0,0,.22)}
.admin-simulator-date {display:grid; place-items:center; align-content:center; width:64px; height:64px; border:1px solid rgba(255,255,255,.2); border-radius:16px; background:rgba(0,0,0,.2); line-height:1}
.admin-simulator-date small {color:var(--gold); font-size:.66rem; font-weight:700; letter-spacing:.15em}
.admin-simulator-date strong {margin-top:3px; font-size:1.85rem}
.admin-simulator-copy h2 {margin:0 0 4px; font-size:1.35rem}
.admin-simulator-copy p:last-child {margin:0; color:var(--muted)}
.admin-simulator-card>.btn {white-space:nowrap}

.admin-dashboard {padding:clamp(20px,3vw,32px); border-radius:22px; border-color:rgba(255,255,255,.11); background:rgba(8,12,14,.64); box-shadow:0 24px 60px rgba(0,0,0,.32)}
.admin-dashboard-toolbar h2 {font-size:1.65rem}
.admin-local-tabs {border:1px solid rgba(255,255,255,.07); background:rgba(0,0,0,.26)}
.admin-local-tabs button {font-size:.94rem; transition:.16s ease}
.admin-local-tabs button:hover {background:rgba(255,255,255,.06); color:#fff}
.admin-local-tabs button.active {color:#fff; background:rgba(200,173,127,.14); box-shadow:inset 0 0 0 1px rgba(200,173,127,.34)}

.admin-metric {position:relative; min-height:112px; padding:17px; overflow:hidden; border-radius:16px; color:inherit; text-align:left; font:inherit; cursor:pointer; background:linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.018)); transition:transform .16s ease,border-color .16s ease,background .16s ease}
.admin-metric:before {content:''; position:absolute; inset:0 auto 0 0; width:3px; background:rgba(200,173,127,.55)}
.admin-metric span {font-size:.78rem; letter-spacing:.07em; text-transform:uppercase}
.admin-metric strong {font-size:2.35rem; font-variant-numeric:tabular-nums}
.admin-metric small {display:flex; align-items:center; gap:5px; margin-top:10px; color:var(--muted); font-size:.72rem; font-weight:700}
.admin-metric small span {font-size:1rem; letter-spacing:0; line-height:.7; text-transform:none; transition:transform .16s ease}
.admin-metric:hover {transform:translateY(-2px); border-color:rgba(200,173,127,.42); background:linear-gradient(145deg,rgba(255,255,255,.085),rgba(255,255,255,.028))}
.admin-metric:hover small span {transform:translateX(3px)}
.admin-metric:focus-visible {outline:2px solid var(--gold); outline-offset:3px}
.admin-metric.good:before {background:#22c55e}
.admin-metric.warn {background:linear-gradient(145deg,rgba(245,158,11,.13),rgba(245,158,11,.035))}
.admin-metric.warn:before {background:#f59e0b}
.admin-overview-grid {grid-template-columns:minmax(0,1.35fr) minmax(280px,.65fr)}
.admin-surface {padding:20px; border-radius:17px; background:rgba(255,255,255,.032); border-color:rgba(255,255,255,.09); box-shadow:inset 0 1px 0 rgba(255,255,255,.025)}
.admin-qr-wrap {border-radius:15px; box-shadow:inset 0 0 0 1px rgba(0,0,0,.08)}
.admin-qr-wrap img {width:min(190px,100%)}
.attention-list {gap:7px; margin-top:14px}
.attention-item {padding:12px 13px; border-color:rgba(255,255,255,.09); background:rgba(0,0,0,.16); transition:.16s ease}
.attention-item:hover {border-color:rgba(200,173,127,.32); background:rgba(255,255,255,.06); transform:translateY(-1px)}
.admin-party-card>summary:before, .admin-guest-card>summary:before, .admin-collapsible-card>summary:before {content:'+'; font-size:1.15rem}
.admin-party-card[open]>summary:before, .admin-guest-card[open]>summary:before, .admin-collapsible-card[open]>summary:before {transform:rotate(45deg)}

.day-of-home-banner .day-of-preview {border-style:dashed; background:linear-gradient(135deg,rgba(14,77,46,.55),rgba(75,29,99,.55))}
.day-of-preview-note {max-width:680px; margin:12px auto; padding:9px 12px; border:1px solid rgba(255,255,255,.13); border-radius:10px; color:var(--muted); background:rgba(0,0,0,.18); font-size:.9rem}
.wedding-day-preview-bar {display:flex; justify-content:space-between; align-items:center; gap:18px; margin-bottom:16px; padding:13px 15px; border:1px dashed rgba(200,173,127,.55); border-radius:14px; background:rgba(0,0,0,.28)}
.wedding-day-preview-bar>div {display:grid; gap:2px}
.wedding-day-preview-bar strong {color:var(--gold); letter-spacing:.04em}
.wedding-day-preview-bar span {color:var(--muted); font-size:.9rem}

@media (max-width:1060px) {
  .admin-global-nav {position:static; grid-template-columns:auto 1fr}
  .admin-global-links {grid-column:1/-1; justify-content:flex-start; flex-wrap:nowrap; overflow-x:auto; padding-top:8px; border-top:1px solid rgba(255,255,255,.07)}
  .admin-global-actions {justify-self:end}
  .admin-metric-grid {grid-template-columns:repeat(3,minmax(0,1fr))}
  .admin-overview-grid, .admin-tools-grid {grid-template-columns:1fr}
}
@media (max-width:760px) {
  .admin-site-header .inner {align-items:center; flex-direction:row; gap:10px}
  .admin-site-identity strong {display:none}
  .admin-portal {padding-inline:14px}
  .admin-global-nav {grid-template-columns:1fr; gap:10px; padding:11px}
  .admin-global-brand {min-width:0}
  .admin-global-links {grid-column:auto; order:3; width:100%}
  .admin-global-actions {justify-self:stretch; justify-content:flex-start; overflow-x:auto; flex-wrap:nowrap}
  .admin-global-actions .btn {white-space:nowrap}
  .admin-portal-heading {align-items:flex-start; flex-direction:column; padding:26px 2px 18px}
  .admin-heading-meta {width:100%}
  .admin-heading-meta span {flex:1; min-width:0}
  .admin-simulator-card {grid-template-columns:auto 1fr}
  .admin-simulator-card>.btn {grid-column:1/-1; width:100%}
  .admin-metric-grid {grid-template-columns:repeat(2,minmax(0,1fr))}
  .admin-metric:last-child {grid-column:1/-1}
  .wedding-day-preview-bar {align-items:flex-start; flex-direction:column}
  .wedding-day-preview-bar .btn {width:100%}
}
@media (max-width:460px) {
  .admin-site-identity span {font-size:.62rem}
  .admin-heading-meta {display:grid; grid-template-columns:1fr 1fr}
  .admin-simulator-date {width:56px; height:56px}
  .admin-simulator-copy h2 {font-size:1.2rem}
  .admin-dashboard {padding:16px}
  .admin-metric {min-height:100px; padding:14px}
  .admin-metric strong {font-size:2rem}
}

/* =========================================
   PUBLIC GUEST EXPERIENCE
   ========================================= */
.public-body {min-height:100vh; line-height:1.5}
.public-body .small {font-size:.88rem; line-height:1.45}
.public-body :focus-visible {outline:3px solid var(--gold); outline-offset:3px}
.skip-link {position:fixed; top:8px; left:8px; z-index:10000; padding:10px 14px; border-radius:10px; color:#fff; background:#111827; transform:translateY(-150%); transition:transform .16s ease}
.skip-link:focus {transform:translateY(0)}

.public-site-header {background:rgba(8,17,18,.88); border-bottom-color:rgba(200,173,127,.22); box-shadow:0 8px 28px rgba(0,0,0,.18)}
.public-site-header .inner {max-width:1240px; min-height:64px; padding-block:8px}
.public-site-header .brand .script {font-size:31px; white-space:nowrap}
.public-site-header .navlinks {align-items:center; gap:3px; flex-wrap:nowrap}
.public-site-header .navlinks a {padding:8px 9px; border-color:transparent; background:transparent; font-size:.9rem; transition:background .16s ease,border-color .16s ease,color .16s ease}
.public-site-header .navlinks a:hover {border-color:rgba(255,255,255,.12); background:rgba(255,255,255,.09)}
.public-site-header .navlinks a.active {border-color:rgba(200,173,127,.38); background:rgba(200,173,127,.13); box-shadow:none}
.nav-toggle {display:none; min-height:44px; padding:8px 12px; align-items:center; gap:9px; border:1px solid rgba(255,255,255,.18); border-radius:12px; color:#fff; background:rgba(255,255,255,.07); font:inherit; font-weight:700; cursor:pointer}
.nav-toggle-icon {display:grid; gap:3px; width:18px}
.nav-toggle-icon i {display:block; height:2px; border-radius:99px; background:currentColor; transition:transform .16s ease,opacity .16s ease}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon i:first-child {transform:translateY(5px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon i:nth-child(2) {opacity:0}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon i:last-child {transform:translateY(-5px) rotate(-45deg)}

.public-body main.container {padding-top:clamp(24px,4vw,42px)}
.public-body main.container>.card:first-child>h1 {font-size:clamp(2.25rem,5vw,3.8rem); line-height:1.05}
.public-body main.container>.card:first-child>h1:after {content:''; display:block; width:54px; height:2px; margin-top:13px; background:linear-gradient(90deg,var(--gold),transparent)}
.public-body .card {border-color:rgba(255,255,255,.12); background:rgba(8,13,17,.58); box-shadow:0 18px 44px rgba(0,0,0,.25)}
.public-body input[type="text"], .public-body select, .public-body textarea {min-height:48px; border-color:rgba(255,255,255,.2); background:rgba(5,12,23,.84)}
.public-body label {font-weight:700}
.public-body .btn {min-height:46px; padding-inline:18px}
.public-body .btn:active {transform:translateY(1px)}

.home-hero {padding:clamp(52px,7vw,88px) 20px 44px; overflow:hidden; background:radial-gradient(700px 320px at 50% 20%,rgba(200,173,127,.12),transparent 70%)}
.home-hero:before {height:1px; opacity:.8}
.home-hero-inner {max-width:1120px; margin:0 auto}
.home-hero .eyebrow {margin-bottom:7px; font-size:.84rem}
.home-hero .names {display:block; margin:0; color:#fff; font-family:'Great Vibes',cursive; font-size:clamp(4rem,9vw,7.2rem); font-weight:400; line-height:.94}
.home-hero-lead {max-width:680px; margin:16px auto 0; color:#e2e8f0; font-size:clamp(1.1rem,2.2vw,1.38rem)}
.home-hero-actions, .calendar-actions {display:flex; justify-content:center; gap:10px; flex-wrap:wrap}
.home-hero-actions {margin-top:24px}
.calendar-actions {margin-top:14px}
.home-event-facts {display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:10px; max-width:900px; margin:28px auto 0}
.home-event-facts>div {display:grid; gap:2px; min-height:78px; align-content:center; padding:12px 14px; border:1px solid rgba(255,255,255,.13); border-radius:14px; background:rgba(0,0,0,.2)}
.home-event-facts span {color:var(--gold); font-size:.72rem; font-weight:700; letter-spacing:.11em; text-transform:uppercase}
.home-event-facts strong {font-size:1.08rem}
.home-countdown-wrap {margin-top:27px}
.home-countdown-wrap>.eyebrow {margin-bottom:0}
.home-countdown-wrap .countdown {gap:8px; margin-top:10px}
.home-countdown-wrap .timebox {min-width:78px; padding:10px 13px; border-radius:13px; background:rgba(0,0,0,.24)}
.home-countdown-wrap .timebox .num {font-size:1.7rem}

.home-quick-link-container {padding-top:18px; padding-bottom:18px}
.guest-quick-links {display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:10px}
.guest-quick-links a {display:grid; gap:2px; min-height:88px; align-content:center; padding:14px 16px; border:1px solid rgba(255,255,255,.12); border-radius:16px; background:rgba(0,0,0,.22); color:#fff; text-decoration:none; transition:transform .16s ease,border-color .16s ease,background .16s ease}
.guest-quick-links a:hover {transform:translateY(-2px); border-color:rgba(200,173,127,.4); background:rgba(255,255,255,.07)}
.guest-quick-links span {font-size:1.1rem; font-weight:700}
.guest-quick-links small {color:var(--muted); font-size:.82rem; line-height:1.25}
.home-content-grid {padding-top:0}
.rsvp-card {scroll-margin-top:82px}
.rsvp-card h2, .venue-details-card h2 {font-size:clamp(1.8rem,3vw,2.25rem)}
.rsvp-lookup-fields {margin-top:18px}
.rsvp-lookup-button {width:100%; margin-top:2px}
.rsvp-message {margin-top:14px; padding:13px 15px; border:1px solid; border-radius:13px; font-weight:700}
.rsvp-message[data-state="success"] {border-color:rgba(34,197,94,.55); color:#bbf7d0; background:rgba(22,163,74,.12)}
.rsvp-message[data-state="error"] {border-color:rgba(248,113,113,.55); color:#fecaca; background:rgba(220,38,38,.1)}
.rsvp-party-section {margin-top:22px; padding-top:22px; border-top:1px solid rgba(255,255,255,.12); scroll-margin-top:90px}
.rsvp-party-heading h3 {margin-bottom:2px; font-size:1.65rem}
.rsvp-party-heading p:last-child {color:var(--muted)}
.rsvp-guest-heading {display:flex; justify-content:space-between; align-items:flex-start; gap:12px; margin-bottom:14px}
.rsvp-guest-heading span {color:var(--gold); font-size:.72rem; font-weight:700; letter-spacing:.11em; text-transform:uppercase}
.rsvp-guest-heading h4 {margin:2px 0 0; font-size:1.35rem}
.rsvp-guest-heading .role {margin:0}
.rsvp-name-fields {padding-bottom:4px}
.rsvp-choice-group {min-width:0; margin:3px 0 16px; padding:0; border:0}
.rsvp-choice-group legend {margin-bottom:8px; font-size:1.05rem; font-weight:700}
.rsvp-choice-options {display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:9px}
.rsvp-choice {display:flex; align-items:center; gap:10px; min-height:58px; padding:10px 12px; border:1px solid rgba(255,255,255,.14); border-radius:12px; background:rgba(255,255,255,.035); cursor:pointer}
.rsvp-choice:has(input:checked) {border-color:rgba(200,173,127,.62); background:rgba(200,173,127,.12)}
.rsvp-choice input {flex:0 0 auto; width:20px; height:20px; margin:0; accent-color:var(--green)}
.rsvp-choice span {display:grid; gap:1px}
.rsvp-choice small {color:var(--muted); font-size:.78rem; font-weight:400}
.rsvp-dependent-fields {grid-template-columns:minmax(160px,.72fr) minmax(0,1.28fr)}
.rsvp-dependent-fields textarea {min-height:76px}
.party-item.declined .rsvp-dependent-fields {opacity:.6}
.party-item.declined select:disabled, .party-item.declined textarea:disabled {cursor:not-allowed; background:rgba(148,163,184,.08)}
.rsvp-declined-note {margin:-5px 0 14px; padding:9px 11px; border-radius:9px; color:var(--muted); background:rgba(148,163,184,.08); font-size:.86rem}
.rehearsal-choice {padding-top:14px; border-top:1px solid rgba(255,255,255,.1)}
.rsvp-save-actions {display:flex; gap:10px; margin-top:15px}
.rsvp-save-actions .btn {flex:1}
.rsvp-save-note {margin-top:10px; text-align:center}

.venue-details-intro {margin-bottom:18px; color:var(--muted); line-height:1.5}
.event-location {padding:15px; margin-bottom:14px; border:1px solid rgba(200,173,127,.28); border-radius:14px; background:rgba(200,173,127,.07)}
.event-location address {margin-bottom:11px; color:#fff; font-style:normal; line-height:1.45}
.event-location .btn {width:100%; margin-top:5px}
.guest-note {padding:12px 13px; margin-bottom:14px; border-left:3px solid var(--gold); border-radius:0 10px 10px 0; background:rgba(255,255,255,.04)}
.public-body .section-eyebrow {margin:0 0 7px; color:var(--gold); font-size:.78rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase}
.public-body .public-info-panel {margin-bottom:16px; padding:18px; border:1px solid rgba(200,173,127,.22); border-radius:16px; background:rgba(255,255,255,.045)}
.public-body .public-info-panel h3 {margin-top:0; color:#fff}
.public-body .parking-mapwrap {height:min(480px,60vh); min-height:360px; margin-bottom:14px}
.public-body .venue-mapwrap {height:min(600px,72vh); min-height:440px; margin-bottom:16px; background:#fff}
.public-body .parking-mapwrap iframe,.public-body .venue-mapwrap iframe {display:block}

/* Public story and local guide pages */
.public-body .page-intro {max-width:760px; margin-bottom:24px}
.public-body .page-intro h1 {margin-bottom:12px; font-size:clamp(2.25rem,5vw,3.8rem); line-height:1.05}
.public-body .page-intro h1:after {content:''; display:block; width:54px; height:2px; margin-top:13px; background:linear-gradient(90deg,var(--gold),transparent)}
.public-body .page-lede {max-width:700px; color:#d8e0e8; font-size:clamp(1.08rem,2vw,1.27rem); line-height:1.5}
.public-body .page-back-link {display:inline-flex; margin-top:22px; color:#fff; font-weight:700; text-decoration:none}
.public-body .page-back-link:hover {text-decoration:underline; text-decoration-color:var(--gold)}

.story-card {overflow:hidden; padding:clamp(22px,4vw,44px)}
.story-intro {max-width:720px!important; margin-bottom:clamp(26px,5vw,48px)!important}
.story-chapter {display:grid; grid-template-columns:minmax(240px,.78fr) minmax(0,1.35fr); gap:clamp(28px,5vw,64px); align-items:center}
.story-chapter-reverse {grid-template-columns:minmax(0,1.35fr) minmax(240px,.78fr)}
.story-chapter-reverse .story-photo-button {grid-column:2; grid-row:1}
.story-chapter-reverse .story-copy {grid-column:1; grid-row:1}
.story-photo-button {position:relative; width:100%; margin:0; padding:0; overflow:hidden; border:1px solid rgba(255,255,255,.14); border-radius:22px; color:#fff; background:#0b1114; box-shadow:0 18px 36px rgba(0,0,0,.28); cursor:zoom-in}
.story-photo-button:after {content:''; position:absolute; inset:0; background:linear-gradient(180deg,transparent 58%,rgba(0,0,0,.72)); pointer-events:none}
.story-photo-button:hover .story-photo {transform:scale(1.025)}
.story-photo-button span {position:absolute; right:18px; bottom:15px; left:18px; z-index:1; font-family:'Cormorant Garamond',serif; font-size:1.05rem; font-weight:700; text-align:left}
.story-photo {display:block; width:100%; aspect-ratio:4/5; object-fit:cover; transition:transform .28s ease}
.story-chapter:first-of-type .story-photo {aspect-ratio:4/4.7}
.story-copy h2 {margin-bottom:15px; font-size:clamp(1.8rem,3vw,2.5rem)}
.story-copy p {color:#e4e9ee; font-size:1.07rem; line-height:1.68}
.story-copy p:last-child {margin-bottom:0}
.story-pullquote {display:flex; align-items:flex-start; gap:13px; max-width:760px; margin:clamp(36px,6vw,66px) auto; padding:clamp(20px,4vw,32px); border-block:1px solid rgba(200,173,127,.32); color:#fff; font-size:clamp(1.55rem,3.5vw,2.35rem); font-style:italic; line-height:1.25; text-align:center}
.story-pullquote span {color:var(--gold); font-family:Georgia,serif; font-size:3rem; font-style:normal; line-height:.75}
.story-closing {max-width:790px; margin:clamp(36px,6vw,66px) auto 6px; padding:clamp(22px,4vw,34px); border:1px solid rgba(200,173,127,.28); border-radius:18px; background:linear-gradient(135deg,rgba(14,77,46,.22),rgba(75,29,99,.2)); text-align:center}
.story-closing h2 {font-size:clamp(1.8rem,3vw,2.45rem)}
.story-closing p:last-child {margin-bottom:0; font-size:1.08rem; line-height:1.6}

.guide-shell {padding:clamp(22px,3.5vw,38px)}
.guide-page .guide-shell>.attractions,.guide-page .guide-shell>.hotels {grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px}
.guide-page .attraction,.guide-page .hotel {min-width:0; min-height:122px; padding:14px; border-color:rgba(255,255,255,.1); background:linear-gradient(135deg,rgba(255,255,255,.045),rgba(255,255,255,.025)); box-shadow:inset 0 1px rgba(255,255,255,.025)}
.guide-page .attraction:hover,.guide-page .hotel:hover {border-color:rgba(200,173,127,.25); background:rgba(255,255,255,.065)}
.guide-page .attraction .title a,.guide-page .hotel .title a {font-size:1.12rem; line-height:1.2}
.guide-page .hotel .title,.guide-page .hotel .meta {overflow-wrap:anywhere}
.guide-page .badge {display:inline-flex; align-items:center; min-height:24px; padding:3px 8px; border:1px solid rgba(255,255,255,.07); border-radius:999px}
.guide-page .attraction .meta,.guide-page .hotel .meta {line-height:1.35}
.public-body .guide-page .attraction .meta .btn,.public-body .guide-page .hotel .meta .btn {min-height:38px; width:auto; margin-top:8px; padding:6px 11px; border-radius:9px; font-size:.78rem; line-height:1; vertical-align:middle}
.public-body .guide-page .attraction .meta .btn.ghost,.public-body .guide-page .hotel .meta .btn.ghost {background:rgba(255,255,255,.025)}
.guide-page .guide-shell>h2 {margin:30px 0 12px; padding-bottom:8px; border-bottom:1px solid rgba(200,173,127,.2); color:#fff; font-size:1.55rem}
.guide-note {margin:22px 0 0; padding:12px 14px; border-left:3px solid rgba(200,173,127,.6); border-radius:0 10px 10px 0; color:var(--muted); background:rgba(255,255,255,.035); font-size:.93rem; font-style:italic}
.hotel-feature {display:grid; grid-template-columns:minmax(0,1fr) auto; gap:8px 22px; align-items:center; margin:0 0 28px; padding:22px; border:1px solid rgba(200,173,127,.55); border-radius:18px; background:linear-gradient(135deg,rgba(200,173,127,.12),rgba(14,77,46,.1))}
.hotel-feature>div,.hotel-feature>p {grid-column:1}
.hotel-feature h2 {margin:0; color:#fff; font-size:1.55rem}
.hotel-feature p {margin:0; font-size:1.03rem; line-height:1.5}
.hotel-feature .hotel-feature-note {margin-top:3px; color:var(--muted); font-size:.9rem}
.hotel-feature>.btn {grid-column:2; grid-row:1/4}
.public-body .btn.btn-compact {min-height:42px; width:auto; padding:9px 14px; border-radius:11px; white-space:nowrap}

.directions-page {display:grid; gap:18px}
.directions-page .card {margin:0}
.directions-hero {padding:clamp(22px,3.5vw,38px)}
.arrival-panel {display:flex; align-items:center; justify-content:space-between; gap:22px; margin-top:26px; padding:20px 22px; border:1px solid rgba(200,173,127,.3); border-radius:17px; background:linear-gradient(135deg,rgba(200,173,127,.1),rgba(255,255,255,.035))}
.arrival-panel h2 {margin-bottom:4px; font-size:1.55rem}
.arrival-panel address {color:#e2e8f0; font-style:normal; line-height:1.45}
.map-card {padding:clamp(20px,3.2vw,32px)}
.map-card-header {display:flex; justify-content:space-between; align-items:flex-end; gap:24px; margin-bottom:18px}
.map-card-header h2 {margin-bottom:4px; font-size:clamp(1.65rem,3vw,2.1rem)}
.map-card-header p:last-child {margin-bottom:0; color:var(--muted)}
.map-card .parking-mapwrap,.map-card .venue-mapwrap {margin-bottom:0}

.site-footer {margin-top:26px; padding:34px 20px 20px; border-top:1px solid rgba(200,173,127,.22); background:rgba(5,10,12,.66)}
.site-footer-inner {display:flex; justify-content:space-between; align-items:flex-start; gap:28px; max-width:1120px; margin:0 auto; padding-bottom:24px}
.site-footer-brand {font-family:'Great Vibes',cursive; font-size:2rem; text-decoration:none}
.site-footer-intro p {margin:5px 0 0; color:var(--muted); font-size:.92rem}
.site-footer-links {display:grid; grid-template-columns:repeat(2,minmax(130px,1fr)); gap:7px 20px}
.site-footer-links a {text-decoration:none; color:var(--muted); font-weight:700}
.site-footer-links a:hover {color:#fff; text-decoration:underline; text-decoration-color:var(--gold)}
.site-footer-signoff {padding:18px 0 0; border-top:1px solid rgba(255,255,255,.07); text-align:center}
#egg-trigger {margin-left:5px; padding:0; border:0; color:inherit; background:transparent; opacity:.3; cursor:pointer; transition:opacity .3s}
#egg-trigger:hover, #egg-trigger:focus-visible {opacity:1}
.admin-site-footer {margin-top:0; padding-top:16px; background:transparent; border-top:0}

@media (max-width:1100px) {
  .public-site-header {position:sticky}
  .public-site-header.nav-enhanced .inner {position:relative; flex-direction:row; gap:12px; padding:9px 16px}
  .public-site-header.nav-enhanced .nav-toggle {display:inline-flex}
  .public-site-header.nav-enhanced .navlinks {display:none; position:absolute; top:calc(100% + 8px); right:16px; left:16px; grid-template-columns:repeat(2,minmax(0,1fr)); gap:7px; padding:12px; border:1px solid rgba(255,255,255,.16); border-radius:16px; background:rgba(7,13,17,.98); box-shadow:0 18px 40px rgba(0,0,0,.45)}
  .public-site-header.nav-enhanced .navlinks.is-open {display:grid}
  .public-site-header.nav-enhanced .navlinks a {min-height:46px; display:flex; align-items:center; justify-content:center; padding:9px 11px; border-color:rgba(255,255,255,.1); background:rgba(255,255,255,.045); text-align:center}
  .public-site-header.nav-enhanced .admin-login-link {opacity:.55}
}
@media (max-width:800px) {
  .public-body {font-size:17px}
  .public-body main.container {padding-inline:14px; padding-bottom:60px}
  .public-body .card {padding:20px; border-radius:19px}
  .home-hero {padding-inline:15px}
  .home-event-facts, .guest-quick-links {grid-template-columns:repeat(2,minmax(0,1fr))}
  .home-quick-link-container {padding-inline:14px}
  .home-content-grid {padding-inline:14px}
  .rsvp-dependent-fields {grid-template-columns:1fr}
  .site-footer-inner {flex-direction:column}
  .site-footer-links {width:100%}
  .story-chapter,.story-chapter-reverse {grid-template-columns:minmax(0,1fr); gap:24px}
  .story-chapter-reverse .story-photo-button,.story-chapter-reverse .story-copy {grid-column:1; grid-row:auto}
  .story-chapter-reverse .story-copy {grid-row:1}
  .story-photo-button {max-width:500px; margin-inline:auto}
  .story-photo {aspect-ratio:4/3.7}
  .story-chapter:first-of-type .story-photo {aspect-ratio:4/3.5}
  .guide-page .guide-shell>.attractions,.guide-page .guide-shell>.hotels {grid-template-columns:minmax(0,1fr)}
  .hotel-feature {grid-template-columns:1fr}
  .hotel-feature>div,.hotel-feature>p,.hotel-feature>.btn {grid-column:1; grid-row:auto}
  .hotel-feature>.btn {justify-self:start; margin-top:8px}
}
@media (max-width:520px) {
  .public-site-header .brand .script {font-size:27px}
  .public-site-header.nav-enhanced .navlinks {grid-template-columns:1fr; max-height:calc(100vh - 90px); overflow-y:auto}
  .home-hero {padding-top:42px}
  .home-hero .names {font-size:clamp(3.8rem,20vw,5.6rem)}
  .home-hero-actions .btn {width:100%}
  .home-event-facts {gap:7px}
  .home-event-facts>div {min-height:72px; padding:10px}
  .home-event-facts strong {font-size:.98rem}
  .home-countdown-wrap .timebox {min-width:64px; flex:1; padding:9px 6px}
  .home-countdown-wrap .timebox .num {font-size:1.45rem}
  .calendar-actions .btn {flex:1; min-width:140px}
  .guest-quick-links a {min-height:82px; padding:12px}
  .guest-quick-links span {font-size:1rem}
  .rsvp-choice-options {grid-template-columns:1fr}
  .rsvp-save-actions {flex-direction:column}
  .public-body .parking-mapwrap {height:390px; min-height:0}
  .public-body .venue-mapwrap {height:430px; min-height:0}
  .site-footer-links {grid-template-columns:1fr}
  .story-card,.guide-shell {padding:20px}
  .story-intro {margin-bottom:28px!important}
  .story-chapter {gap:20px}
  .story-photo-button {border-radius:16px}
  .story-copy p {font-size:1rem; line-height:1.6}
  .story-pullquote {margin:34px 0; padding:20px 8px; font-size:1.45rem}
  .story-closing {margin-top:34px; padding:21px 17px}
  .guide-page .attraction,.guide-page .hotel {gap:12px; min-height:0; padding:12px}
  .guide-page .attraction img,.guide-page .hotel img {width:76px; height:76px}
  .guide-page .restaurants .attraction img {width:76px; height:66px}
  .guide-page .attraction .title a,.guide-page .hotel .title a {font-size:1.06rem}
  .public-body .guide-page .attraction .meta .btn,.public-body .guide-page .hotel .meta .btn {min-height:40px; padding-inline:11px}
  .hotel-feature {padding:18px}
  .arrival-panel,.map-card-header {align-items:flex-start; flex-direction:column}
  .arrival-panel .btn,.map-card-header .btn {width:100%}
}
@media (prefers-reduced-motion:reduce) {
  *, *:before, *:after {scroll-behavior:auto!important; transition-duration:.01ms!important; animation-duration:.01ms!important; animation-iteration-count:1!important}
}
