:root {
  --ink: #0f1a14;
  --cream: #f7f1e4;
  --sand: #e8d9c0;
  --sunset: #ff5c2a;
  --sunset-deep: #d93a0f;
  --lake: #1a8a7a;
  --lake-bright: #2ec4b0;
  --gold: #ffc857;
  --pine: #1e3d32;
  --card: #ffffff;
  --shadow: 0 18px 50px rgba(15, 26, 20, 0.18);
  --radius: 22px;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  overflow-x: hidden;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.wrap {
  width: min(1100px, calc(100% - 2rem));
  margin-inline: auto;
}

.wrap.narrow {
  width: min(520px, calc(100% - 2rem));
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  color: var(--cream);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    center / cover no-repeat url("/images/cottage/hero.jpg"),
    linear-gradient(135deg, #1e3d32, #0f1a14);
  transform: scale(1.05);
  animation: slow-zoom 22s ease-in-out infinite alternate;
}

@keyframes slow-zoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 26, 20, 0.55) 0%, rgba(15, 26, 20, 0.35) 40%, rgba(15, 26, 20, 0.85) 100%),
    radial-gradient(ellipse at 70% 20%, rgba(255, 92, 42, 0.35), transparent 55%);
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
}

.logo {
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  font-size: 1.35rem;
}

.pill {
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}

.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.5rem 3.5rem;
  max-width: 720px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 0.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

.tagline {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  max-width: 28ch;
  margin: 0 0 1.75rem;
  opacity: 0.95;
}

.countdown {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.cd-unit {
  background: rgba(15, 26, 20, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  min-width: 4.2rem;
  padding: 0.65rem 0.75rem;
  text-align: center;
  backdrop-filter: blur(6px);
}

.cd-unit span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.cd-unit label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.75;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 0.75rem 1.35rem;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.btn--primary {
  background: var(--sunset);
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 92, 42, 0.4);
}

.btn--primary:hover {
  background: var(--sunset-deep);
}

.btn--lg {
  font-size: 1.05rem;
  padding: 0.95rem 1.7rem;
  align-self: flex-start;
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn--full {
  width: 100%;
}

/* —— Sections —— */
.section {
  padding: 4rem 0;
}

.intro {
  background: var(--pine);
  color: var(--cream);
  text-align: center;
}

.intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  letter-spacing: 0.03em;
  margin: 0 0 0.75rem;
}

.intro p {
  margin: 0 auto;
  max-width: 42ch;
  font-size: 1.1rem;
  opacity: 0.9;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 3.4rem);
  letter-spacing: 0.03em;
  margin: 0 0 0.35rem;
}

.section-sub {
  margin: 0;
  color: #4a5a52;
  font-weight: 600;
}

.section-head {
  margin-bottom: 1.75rem;
}

/* —— Gallery —— */
.gallery {
  background: var(--sand);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  aspect-ratio: 4 / 3;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid figcaption {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  background: rgba(15, 26, 20, 0.7);
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

@media (min-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* —— Rooms —— */
.bunks {
  background: var(--cream);
}

.rooms {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 780px) {
  .rooms {
    grid-template-columns: repeat(2, 1fr);
  }
}

.room-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border: 3px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.room-card.is-full {
  border-color: var(--sand);
}

.room-card.is-open:hover {
  border-color: var(--lake-bright);
  transform: translateY(-3px);
}

.room-card__photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.room-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--lake);
  color: #fff;
}

.room-badge.full {
  background: var(--ink);
}

.room-card__body {
  padding: 1.2rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex: 1;
}

.room-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.03em;
  margin: 0;
  line-height: 1;
}

.room-blurb {
  margin: 0.2rem 0 0;
  color: #5a6b62;
  font-size: 0.95rem;
}

.beds {
  display: grid;
  gap: 0.5rem;
}

.bed-slot {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  background: #f3ebe0;
  font-weight: 600;
}

.bed-slot.open {
  background: #e4f7f3;
  color: var(--pine);
  border: 1.5px dashed var(--lake);
}

.bed-slot.taken {
  background: #ffe8df;
  color: var(--sunset-deep);
}

.bed-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.bed-slot.open .bed-dot {
  background: var(--lake-bright);
  box-shadow: 0 0 0 4px rgba(46, 196, 176, 0.25);
}

.bed-slot.taken .bed-dot {
  background: var(--sunset);
}

.reserve-form {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}

.reserve-form input {
  flex: 1;
  min-width: 0;
  border: 2px solid #d9cbb5;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font: inherit;
  background: #fffaf3;
}

.reserve-form input:focus {
  outline: none;
  border-color: var(--lake);
  box-shadow: 0 0 0 3px rgba(26, 138, 122, 0.2);
}

.loading {
  text-align: center;
  color: #6a7a72;
  grid-column: 1 / -1;
}

/* —— Cancel —— */
.cancel-zone {
  background: var(--sand);
}

.cancel-form {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.85rem;
  background: var(--card);
  padding: 1.35rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cancel-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.85rem;
}

.cancel-form input,
.cancel-form select {
  border: 2px solid #d9cbb5;
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  font: inherit;
  background: #fffaf3;
}

.cancel-form input:focus,
.cancel-form select:focus {
  outline: none;
  border-color: var(--lake);
}

/* —— Footer —— */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 3rem 0 2.5rem;
  text-align: center;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.08em;
  margin: 0 0 0.5rem;
  color: var(--gold);
}

.footer p {
  margin: 0.25rem 0;
  opacity: 0.85;
}

.footer__meta {
  margin-top: 1rem !important;
  font-size: 0.85rem;
  opacity: 0.6 !important;
}

/* —— Toast —— */
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(120%);
  z-index: 10000;
  background: var(--ink);
  color: var(--cream);
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  max-width: min(90vw, 420px);
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.toast.success {
  background: var(--lake);
}

.toast.error {
  background: var(--sunset-deep);
}

/* —— Confetti canvas —— */
#confetti {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* —— Screen reader only —— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* hidden attr must beat author display:flex (otherwise Save ETA looks like a no-op) */
[hidden] {
  display: none !important;
}

/* —— Name gate —— */
body.gate-open {
  overflow: hidden;
}

.gate {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 92, 42, 0.45), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(46, 196, 176, 0.35), transparent 45%),
    linear-gradient(160deg, #0f1a14 0%, #1e3d32 55%, #0f1a14 100%);
}

.gate__card {
  width: min(440px, 100%);
  background: var(--cream);
  color: var(--ink);
  border-radius: calc(var(--radius) + 6px);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  text-align: center;
  border: 3px solid rgba(255, 200, 87, 0.55);
}

.gate__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lake);
}

.gate__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 10vw, 3.8rem);
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin: 0 0 0.75rem;
}

.gate__sub {
  margin: 0 0 1.5rem;
  color: #4a5a52;
  font-size: 1.02rem;
}

.gate__form {
  display: grid;
  gap: 0.75rem;
}

.gate__form input {
  border: 2px solid #d9cbb5;
  border-radius: 999px;
  padding: 0.9rem 1.15rem;
  font: inherit;
  font-size: 1.05rem;
  text-align: center;
  background: #fffaf3;
}

.gate__form input:focus {
  outline: none;
  border-color: var(--lake);
  box-shadow: 0 0 0 3px rgba(26, 138, 122, 0.25);
}

.gate__form .btn {
  width: 100%;
}

.gate__hint {
  margin: 1.1rem 0 0;
  font-size: 0.8rem;
  color: #6a7a72;
}

/* —— Topbar guest chip —— */
.topbar__right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.guest-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.55rem 0.35rem 0.75rem;
  border-radius: 999px;
  max-width: min(100%, 320px);
}

.guest-chip__label {
  opacity: 0.75;
}

.guest-chip strong {
  font-weight: 800;
}

.guest-chip__switch {
  border: none;
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
}

.guest-chip__switch:hover {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
}

.as-you {
  color: var(--sunset-deep);
  font-weight: 800;
}

.reserve-as {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: #5a6b62;
  text-align: center;
}

.reserve-as strong {
  color: var(--pine);
}

.reserve-form {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: auto;
}

/* —— Meals —— */
.meals {
  background: linear-gradient(180deg, #fff6ea 0%, var(--cream) 100%);
}

.meal-form {
  display: grid;
  gap: 0.85rem;
  background: var(--card);
  padding: 1.35rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 1.75rem;
  border: 2px solid rgba(255, 92, 42, 0.15);
}

@media (min-width: 720px) {
  .meal-form {
    grid-template-columns: 1fr 1fr;
  }
  .meal-form__desc {
    grid-column: 1 / -1;
  }
  .meal-form .btn {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

.meal-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.85rem;
}

.meal-form input,
.meal-form select {
  border: 2px solid #d9cbb5;
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  font: inherit;
  background: #fffaf3;
}

.meal-form input:focus,
.meal-form select:focus {
  outline: none;
  border-color: var(--lake);
  box-shadow: 0 0 0 3px rgba(26, 138, 122, 0.2);
}

.meal-board {
  display: grid;
  gap: 1.5rem;
}

.meal-empty,
.meal-board .loading {
  text-align: center;
  color: #6a7a72;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  border: 2px dashed #d9cbb5;
}

.meal-day {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1.4rem;
  box-shadow: var(--shadow);
}

.meal-day__title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: 0.03em;
  margin: 0 0 1rem;
  color: var(--pine);
  border-bottom: 3px solid var(--gold);
  display: inline-block;
  padding-bottom: 0.15rem;
}

.meal-slot {
  margin-bottom: 1rem;
}

.meal-slot:last-child {
  margin-bottom: 0;
}

.meal-slot__title {
  margin: 0 0 0.55rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lake);
}

.meal-slot__grid {
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .meal-slot__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .meal-slot__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.meal-card {
  background: #f3ebe0;
  border-radius: 16px;
  padding: 0.9rem 1rem;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.meal-card.is-mine {
  background: #e4f7f3;
  border-color: var(--lake-bright);
}

.meal-card__who {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ink);
}

.meal-card__desc {
  margin: 0;
  font-size: 0.92rem;
  color: #4a5a52;
  flex: 1;
}

.meal-card__cancel {
  align-self: flex-start;
  margin-top: 0.35rem;
  border: none;
  cursor: pointer;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sunset-deep);
  background: #ffe8df;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
}

.meal-card__cancel:hover {
  background: var(--sunset);
  color: #fff;
}

/* —— Gate multi-step —— */
.gate__card--wide {
  width: min(560px, 100%);
}

.gate__title--sm {
  font-size: clamp(2.2rem, 8vw, 3.1rem);
}

.gate-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.gate-steps__dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: #d9cbb5;
}

.gate-steps__dot.is-active {
  background: var(--sunset);
  box-shadow: 0 0 0 4px rgba(255, 92, 42, 0.25);
}

.gate-steps__dot.is-done {
  background: var(--lake);
}

.gate-steps__line {
  width: 2.5rem;
  height: 2px;
  background: #d9cbb5;
}

.gate-eta-row {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .gate-eta-row {
    grid-template-columns: 1fr 1fr;
  }
}

.gate-eta-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: left;
}

.gate-eta-form select,
.gate-eta-form input[type="time"] {
  border: 2px solid #d9cbb5;
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  font: inherit;
  background: #fffaf3;
}

.gate-eta-form select:focus,
.gate-eta-form input[type="time"]:focus {
  outline: none;
  border-color: var(--lake);
  box-shadow: 0 0 0 3px rgba(26, 138, 122, 0.2);
}

.gate-skip {
  width: 100%;
  margin-top: 0.75rem;
}

.gate-map-wrap {
  margin: 0 0 1.25rem;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #d9cbb5;
  background: #e8d9c0;
}

/* —— Maps —— */
.map-canvas {
  width: 100%;
  height: 200px;
  background: #dce8e4;
}

.map-canvas--lg {
  height: min(360px, 55vw);
  min-height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-fallback {
  margin: 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.8rem;
  color: #5a6b62;
  background: #fff6ea;
}

.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(247, 241, 228, 0.55);
}

.btn--ghost-light:hover {
  background: rgba(247, 241, 228, 0.15);
  color: #fff;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* —— Directions —— */
.directions {
  background: var(--pine);
  color: var(--cream);
}

.directions .section-title {
  color: var(--cream);
}

.directions .section-sub {
  color: rgba(247, 241, 228, 0.75);
}

.directions-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

@media (min-width: 860px) {
  .directions-grid {
    grid-template-columns: minmax(240px, 340px) 1fr;
    align-items: stretch;
  }
}

.directions-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  backdrop-filter: blur(8px);
}

.directions-card h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: 0.03em;
  margin: 0 0 0.75rem;
  color: var(--gold);
}

.directions-address {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  line-height: 1.55;
}

.directions-address .muted {
  opacity: 0.7;
  font-size: 0.9rem;
}

.directions-phone {
  margin: 0 0 1.1rem;
}

.directions-phone a {
  color: var(--lake-bright);
  font-weight: 700;
  text-decoration: none;
}

.directions-phone a:hover {
  text-decoration: underline;
}

.directions-eta {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
}

.directions-map-wrap {
  position: relative;
}
