/* ------------------------------------------------------------------
   Kenan Coffee — global tokens & reset (beginner-friendly structure)
   ------------------------------------------------------------------ */
:root {
  --color-bg: #0f0c0a;
  --color-surface: #1a1512;
  --color-surface-elev: #221b16;
  --color-cream: #f4ede4;
  --color-muted: #c9bfb4;
  --color-accent: #c9a227;
  --color-accent-soft: rgba(201, 162, 39, 0.35);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --header-h: 4.25rem;
  --radius: 999px;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.45);
  --content-max: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: var(--color-cream);
  background: var(--color-bg);
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

/* ------------------------------------------------------------------
   Skip links (accessibility): hidden until keyboard focus
   ------------------------------------------------------------------ */
.skip-links {
  position: relative;
  z-index: 100;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.65rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #1a1208;
  background: linear-gradient(135deg, #e3c66a, var(--color-accent));
  border-radius: 0.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  transition: left 0.2s ease, top 0.2s ease;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  outline: 2px solid var(--color-cream);
  outline-offset: 3px;
  z-index: 10001;
}

.skip-links .skip-link:nth-child(2):focus {
  top: 3.5rem;
}

/* ------------------------------------------------------------------
   Site header (sits above the hero)
   ------------------------------------------------------------------ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem clamp(1rem, 4vw, 2.5rem);
  background: linear-gradient(
    to bottom,
    rgba(15, 12, 10, 0.74),
    rgba(15, 12, 10, 0.38)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}

.site-nav {
  display: flex;
  gap: 0.35rem;
  padding: 0.2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--color-cream);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-1px);
  outline: none;
}

.nav-link.is-active {
  color: var(--color-cream);
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.3), rgba(201, 162, 39, 0.15));
  box-shadow: inset 0 0 0 1px rgba(201, 162, 39, 0.25);
}

/* ------------------------------------------------------------------
   Full-screen hero video
   ------------------------------------------------------------------ */
.hero-video {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--color-cream);
  padding: calc(var(--header-h) + 2.75rem) 1.5rem 5rem;
}

.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at center, transparent 48%, rgba(0, 0, 0, 0.32) 100%),
    linear-gradient(to top, rgba(9, 7, 6, 0.7), transparent 35%);
}

/* Video fills the hero and stays cropped nicely on all screens */
.hero-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.04);
  filter: saturate(1.1) contrast(1.06);
}

/* Dark transparent shading over the video */
.hero-video__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
      115deg,
      rgba(8, 6, 5, 0.92) 0%,
      rgba(11, 8, 7, 0.5) 50%,
      rgba(8, 6, 5, 0.86) 100%
    ),
    radial-gradient(circle at 22% 18%, rgba(201, 162, 39, 0.16), transparent 56%);
}

/* Centered hero text and buttons */
.hero-video__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 46rem;
  margin-inline: auto;
}

.hero-eyebrow {
  margin: 0 0 0.9rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: #dacfc3;
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3rem, 8.5vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: 0.03em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.42);
}

.hero-subtitle {
  margin: 1.15rem 0 0;
  font-size: clamp(1.05rem, 2.7vw, 1.32rem);
  color: #ddd2c6;
  font-weight: 400;
  max-width: 34rem;
  margin-inline: auto;
}

.hero-actions {
  margin-top: 2.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Elegant button styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 3.2rem;
  padding: 0 1.9rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease,
    border-color 0.28s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.22) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.7s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, #e3c66a, var(--color-accent));
  color: #1a1208;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 244, 204, 0.2) inset;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.56), 0 0 0 1px rgba(255, 244, 204, 0.3) inset;
}

.btn:hover::before {
  transform: translateX(130%);
}

.btn-outline {
  border-color: rgba(244, 237, 228, 0.45);
  color: var(--color-cream);
  background: rgba(15, 12, 10, 0.28);
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: #fffdf8;
  background: rgba(201, 162, 39, 0.16);
  transform: translateY(-3px) scale(1.01);
}

.scroll-hint {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: #d2c6ba;
  opacity: 0.78;
}

.scroll-hint:hover {
  color: var(--color-cream);
}

/* ------------------------------------------------------------------
   Featured band (uses local images from /img)
   ------------------------------------------------------------------ */
.featured-band {
  padding: clamp(3.75rem, 9vw, 6rem) 1.5rem clamp(4rem, 10vw, 5.5rem);
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(201, 162, 39, 0.08), transparent 52%),
    radial-gradient(circle at 50% 20%, #2a211b 0%, var(--color-bg) 58%);
}

.featured-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  text-align: center;
}

.section-lead {
  margin: 1.25rem auto 0;
  max-width: 38rem;
  text-align: center;
  color: var(--color-muted);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.7;
}

.featured-grid {
  margin-top: clamp(2.5rem, 5vw, 3.25rem);
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.featured-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(165deg, rgba(36, 29, 24, 0.95), var(--color-surface));
  border-radius: 1.125rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.18),
    0 22px 48px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
}

.featured-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 162, 39, 0.22);
  box-shadow:
    0 8px 12px rgba(0, 0, 0, 0.22),
    0 32px 64px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 162, 39, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.featured-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #120f0d;
}

.featured-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(15, 12, 10, 0.55) 0%, transparent 42%);
  opacity: 0.85;
  transition: opacity 0.4s ease;
}

.featured-card:hover .featured-card__image::after {
  opacity: 0.65;
}

.featured-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.featured-card:hover .featured-card__image img {
  transform: scale(1.08);
}

.featured-card__caption {
  padding: 1.35rem 1.4rem 1.5rem;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.featured-card__title {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.55rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-cream);
  line-height: 1.2;
}

.featured-card__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #b8aa9c;
  letter-spacing: 0.01em;
}

/* ------------------------------------------------------------------
   Inner pages: menu & contact shared layout
   ------------------------------------------------------------------ */
.page-hero {
  padding: calc(var(--header-h) + 2.5rem) 1.5rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, #1c1612, var(--color-bg));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3rem);
}

.page-hero p {
  margin: 0.75rem auto 0;
  max-width: 36rem;
  color: var(--color-muted);
}

.page-hero--contact p {
  max-width: 34rem;
  line-height: 1.65;
}

.page-section {
  padding: 2.75rem 1.5rem 4rem;
  max-width: var(--content-max);
  margin: 0 auto;
}

.page-section--contact {
  padding-bottom: clamp(3.5rem, 10vw, 5rem);
}

.menu-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.menu-card {
  background: var(--color-surface);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
}

.menu-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.menu-card-body {
  padding: 1.25rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.menu-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.menu-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  flex: 1;
}

.menu-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
}

.menu-footnote {
  margin: 2.5rem auto 0;
  max-width: 40rem;
  text-align: center;
  color: var(--color-muted);
}

.inline-link {
  color: var(--color-accent);
  text-decoration: none;
}

.inline-link:hover {
  text-decoration: underline;
}

/* ------------------------------------------------------------------
   Contact page
   ------------------------------------------------------------------ */
.contact-top {
  display: grid;
  gap: clamp(1.35rem, 3vw, 1.75rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  align-items: stretch;
}

.contact-card {
  background: linear-gradient(165deg, rgba(36, 29, 24, 0.98), var(--color-surface));
  border-radius: 1.125rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.18),
    0 20px 44px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.2);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.22),
    0 28px 56px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(201, 162, 39, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.contact-card--map {
  margin-top: clamp(1.35rem, 3vw, 1.75rem);
  padding-bottom: clamp(1.25rem, 3vw, 1.5rem);
}

.contact-card--map:hover {
  transform: translateY(-4px);
}

.contact-card__heading {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-cream);
}

.contact-card__lede {
  margin: 0 0 1.35rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #b8aa9c;
}

.contact-details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-detail__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.75rem;
  color: var(--color-accent);
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.contact-detail__icon svg {
  display: block;
}

.contact-detail__body {
  min-width: 0;
}

.contact-detail__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a8f82;
  margin-bottom: 0.35rem;
}

.contact-detail__value {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.contact-detail__value a {
  color: var(--color-cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 162, 39, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-detail__value a:hover {
  color: #fffdf8;
  border-color: var(--color-accent);
}

.contact-map__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
  padding: 0 0.15rem;
}

.contact-map__header .contact-card__heading {
  margin-bottom: 0;
}

.contact-map__actions {
  display: flex;
  align-items: center;
}

.contact-map__ext {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1a1208;
  background: linear-gradient(135deg, #e3c66a, var(--color-accent));
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-map__ext:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.contact-map__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 280px;
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
  background: #0a0908;
}

.contact-map__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.92) contrast(1.02);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.contact-field {
  margin-bottom: 1.1rem;
}

.contact-field__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a8f82;
  margin-bottom: 0.45rem;
}

.contact-field__input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 8, 7, 0.65);
  color: var(--color-cream);
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.45;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.35);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-field__input::placeholder {
  color: rgba(201, 191, 180, 0.45);
}

.contact-field__input:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(12, 10, 8, 0.85);
}

.contact-field__input:focus {
  outline: none;
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow:
    inset 0 1px 2px rgba(0, 0, 0, 0.35),
    0 0 0 3px rgba(201, 162, 39, 0.12);
}

.contact-field__input--textarea {
  min-height: 9.5rem;
  resize: vertical;
}

.contact-field__input--select {
  cursor: pointer;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--color-muted) 50%),
    linear-gradient(135deg, var(--color-muted) 50%, transparent 50%);
  background-position: calc(100% - 1.15rem) calc(50% + 0.15rem), calc(100% - 0.85rem) calc(50% + 0.15rem);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.25rem;
}

.contact-fieldset {
  margin: 0 0 1.15rem;
  padding: 0;
  border: none;
}

.contact-fieldset__legend {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a8f82;
  margin: 0 0 0.55rem;
  padding: 0;
}

.contact-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
}

.contact-choice {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: var(--color-muted);
  cursor: pointer;
  transition: color 0.2s ease;
}

.contact-choice:hover {
  color: var(--color-cream);
}

.contact-choice input[type="radio"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.contact-field--checkbox {
  margin-bottom: 1.25rem;
}

.contact-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #b8aa9c;
  cursor: pointer;
}

.contact-checkbox input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.contact-form__submit {
  width: 100%;
  margin-top: 0.35rem;
  border: none;
  cursor: pointer;
}

.site-footer {
  padding: 2rem 1.5rem 3rem;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.85rem;
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: none;
}

.site-footer__sep {
  color: rgba(201, 191, 180, 0.35);
  user-select: none;
}

.site-footer__links a {
  color: var(--color-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-footer__links a:hover {
  color: var(--color-cream);
  border-color: var(--color-accent);
}

.site-footer__links a:focus-visible {
  outline: 2px solid rgba(201, 162, 39, 0.55);
  outline-offset: 3px;
  border-radius: 0.25rem;
}

.sitemap-page-title {
  margin-bottom: 1.5rem;
}

.sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 40rem;
  margin-inline: auto;
  text-align: left;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-muted);
}

.sitemap-list li + li {
  margin-top: 0.75rem;
}

.sitemap-footnote {
  margin-top: 2rem;
}

/* ------------------------------------------------------------------
   Responsive tweaks
   ------------------------------------------------------------------ */
@media (max-width: 720px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-end;
  }

  .hero-video {
    padding: calc(var(--header-h) + 2.25rem) 1.1rem 4.25rem;
  }

  .hero-title {
    line-height: 1.03;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .contact-map__frame {
    aspect-ratio: 4 / 3;
    min-height: 220px;
  }

  .contact-map__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .scroll-hint {
    transition: none;
  }

  .btn::before {
    transition: none;
  }

  .btn-primary:hover,
  .btn-outline:hover {
    transform: none;
  }

  .featured-card,
  .featured-card:hover,
  .featured-card__image img,
  .featured-card:hover .featured-card__image img {
    transition: none;
    transform: none;
  }

  .featured-card__image::after,
  .featured-card:hover .featured-card__image::after {
    transition: none;
  }

  .contact-card,
  .contact-card:hover {
    transition: none;
    transform: none;
  }

  .contact-map__ext:hover {
    transform: none;
  }

}
