:root {
  --ink: #182027;
  --muted: #5f6b72;
  --line: rgba(24, 32, 39, 0.14);
  --paper: #f8f6f0;
  --panel: #ffffff;
  --charcoal: #111820;
  --copper: #b95f24;
  --copper-dark: #894012;
  --blue: #255c77;
  --blue-dark: #173a4d;
  --focus: #f3b45b;
  --shadow: 0 24px 70px rgba(17, 24, 32, 0.14);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-150%);
  border-radius: var(--radius);
  background: var(--charcoal);
  color: white;
  padding: 10px 14px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  background: rgba(17, 24, 32, 0.78);
  color: white;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(17, 24, 32, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--focus), var(--copper));
  color: #16120e;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  border-radius: var(--radius);
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-links a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.nav-links .nav-call {
  margin-left: 6px;
  background: white;
  color: var(--charcoal);
}

.nav-links .nav-call:hover {
  color: var(--charcoal);
  background: var(--focus);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 10px;
}

.toggle-line {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  margin: 5px 0;
  border-radius: 10px;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  padding: 132px max(20px, calc((100vw - var(--max)) / 2)) 42px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 24, 32, 0.93) 0%, rgba(17, 24, 32, 0.76) 42%, rgba(17, 24, 32, 0.28) 100%),
    linear-gradient(0deg, rgba(17, 24, 32, 0.84) 0%, rgba(17, 24, 32, 0.1) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  padding-bottom: 118px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--focus);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.9rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  width: min(570px, 100%);
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 18px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: var(--focus);
  color: #19130b;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.button.primary:hover {
  background: #ffd187;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.16);
}

.hero-panel {
  position: absolute;
  right: max(20px, calc((100vw - var(--max)) / 2));
  bottom: 38px;
  z-index: 2;
  width: min(440px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  padding: 18px;
  background: rgba(17, 24, 32, 0.68);
}

.panel-label,
.card-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--focus);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-panel a,
.hero-panel p {
  margin: 0;
  color: white;
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.section-band,
.hours-section {
  padding: 92px max(20px, calc((100vw - var(--max)) / 2));
}

.section-band {
  background: var(--paper);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.3vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.intro-copy p {
  margin: 0;
  color: #303b43;
  font-size: clamp(1.16rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.proof-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  padding: 22px;
  box-shadow: 0 12px 30px rgba(17, 24, 32, 0.06);
}

.proof-item strong {
  display: block;
  color: var(--blue-dark);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
}

.proof-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.hours-section {
  background: #ffffff;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.hours-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(280px, 0.68fr);
  gap: 24px;
  align-items: stretch;
}

.hours-card,
.contact-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
}

.hours-card {
  overflow: hidden;
}

.hours-list {
  margin: 0;
}

.hours-list div {
  display: grid;
  grid-template-columns: minmax(110px, 0.7fr) minmax(150px, 1fr);
  gap: 18px;
  align-items: center;
  padding: 19px 24px;
  border-bottom: 1px solid var(--line);
}

.hours-list div:last-child {
  border-bottom: 0;
}

.hours-list dt {
  font-weight: 900;
}

.hours-list dd {
  margin: 0;
  color: var(--blue-dark);
  font-weight: 850;
  text-align: right;
}

.hours-list .closed dd {
  color: var(--muted);
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 38px);
  background:
    linear-gradient(145deg, rgba(37, 92, 119, 0.95), rgba(17, 24, 32, 0.98)),
    var(--charcoal);
  color: white;
}

.contact-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1;
}

.phone-link {
  display: inline-block;
  width: fit-content;
  margin: 24px 0 18px;
  border-bottom: 2px solid var(--focus);
  color: white;
  font-size: 1.3rem;
  font-weight: 900;
  text-decoration: none;
}

.phone-link:hover {
  color: var(--focus);
}

.contact-card p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-grid {
  align-items: center;
}

.section-note {
  width: min(430px, 100%);
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.contact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 86px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 22px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(17, 24, 32, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.contact-row:hover {
  transform: translateY(-2px);
  border-color: rgba(185, 95, 36, 0.5);
  box-shadow: 0 18px 42px rgba(17, 24, 32, 0.11);
}

.contact-row span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-row strong {
  color: var(--blue-dark);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px max(20px, calc((100vw - var(--max)) / 2));
  background: var(--charcoal);
  color: white;
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

@media (max-width: 880px) {
  .nav {
    min-height: 68px;
    width: min(var(--max), calc(100% - 28px));
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(17, 24, 32, 0.98);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.32);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 170ms ease, opacity 170ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a,
  .nav-links .nav-call {
    margin: 0;
    padding: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 114px;
    padding-bottom: 24px;
  }

  .hero-content {
    padding-bottom: 32px;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 10px;
  }

  .section-grid,
  .hours-layout {
    grid-template-columns: 1fr;
  }

  .section-band,
  .hours-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media (max-width: 600px) {
  .brand span:last-child {
    max-width: 170px;
    white-space: normal;
    line-height: 1.1;
  }

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(2.75rem, 17vw, 4.55rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-panel,
  .proof-list {
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    padding: 16px;
  }

  .hours-list div,
  .contact-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hours-list dd {
    text-align: left;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
