:root {
  --color-ink: #20212e;
  --color-ink-soft: #4d5362;
  --color-muted: #667085;
  --color-line: #d0d5dd;
  --color-paper: #ffffff;
  --color-cloud: #f4f2f3;
  --color-accent: #c3d217;
  --color-accent-soft: #eef5a5;
  --shadow: 0 24px 80px rgba(32, 33, 46, 0.14);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--color-cloud);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Barlow", "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--color-ink);
  background:
    linear-gradient(180deg, rgba(244, 242, 243, 0.94), rgba(255, 255, 255, 0.98)),
    var(--color-cloud);
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.page-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 28px 24px 0;
}

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(32, 33, 46, 0.1);
  border-radius: var(--radius);
  background: var(--color-paper);
  box-shadow: var(--shadow);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.92) 46%, rgba(255, 255, 255, 0.42) 100%),
    linear-gradient(180deg, rgba(244, 242, 243, 0.24), rgba(32, 33, 46, 0.2));
}

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

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 560px;
  padding: 34px;
  grid-template-rows: auto 1fr auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(280px, 58vw);
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(32, 33, 46, 0.12);
  border-radius: 999px;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.78);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.hero__copy {
  align-self: center;
  width: min(710px, 100%);
  padding: 34px 0 28px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

h1,
h2 {
  margin: 0;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: 60px;
}

h2 {
  font-size: 52px;
}

.hero__copy p:not(.eyebrow),
.section-heading {
  font-family: "Inter", Arial, sans-serif;
}

.hero__copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--color-ink-soft);
  font-size: 22px;
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button svg,
.contact-card svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.button--primary {
  color: var(--color-ink);
  background: var(--color-accent);
}

.button--primary:hover {
  background: var(--color-accent-soft);
}

.button--secondary {
  color: var(--color-ink);
  border-color: var(--color-line);
  background: rgba(255, 255, 255, 0.86);
}

.button--secondary:hover {
  border-color: var(--color-ink);
  background: var(--color-paper);
}

.contact-section {
  padding: 42px 0 38px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-heading .eyebrow {
  margin-bottom: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(32, 33, 46, 0.12);
  border-radius: var(--radius);
  background: var(--color-paper);
  box-shadow: 0 12px 35px rgba(32, 33, 46, 0.06);
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  border-right: 1px solid rgba(32, 33, 46, 0.1);
  text-decoration: none;
  transition: background-color 180ms ease;
}

.contact-card:last-child {
  border-right: 0;
}

.contact-card:hover {
  background: rgba(244, 242, 243, 0.55);
}

.contact-card__icon {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  color: #0740f9;
  background: #f5f8ff;
}

.contact-card strong,
.contact-card span span,
.contact-card em {
  display: block;
}

.contact-card strong {
  margin: 0 0 6px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
}

.contact-card span span {
  color: var(--color-muted);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.details-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: 18px;
  padding: 0 0 82px;
}

.hours-panel,
.map-panel {
  border: 1px solid rgba(32, 33, 46, 0.12);
  border-radius: var(--radius);
  background: var(--color-paper);
  box-shadow: 0 12px 35px rgba(32, 33, 46, 0.06);
}

.hours-panel {
  padding: 30px;
}

.hours-panel .section-heading {
  margin-bottom: 24px;
}

.hours-list {
  display: grid;
  gap: 0;
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
}

.hours-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 14px 0;
  border-top: 1px solid rgba(32, 33, 46, 0.1);
}

.hours-list dt,
.hours-list dd {
  margin: 0;
  line-height: 1.45;
}

.hours-list dt {
  color: var(--color-ink);
  font-weight: 700;
}

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

.map-panel {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  color: var(--color-ink);
}

.map-panel iframe {
  width: 100%;
  min-height: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0 24px 28px;
  color: var(--color-muted);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--color-ink);
}

.subpage-shell {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 28px 24px 54px;
}

.subpage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.back-link {
  color: var(--color-muted);
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.back-link:hover {
  color: var(--color-ink);
}

.legal-panel {
  padding: 38px;
  border: 1px solid rgba(32, 33, 46, 0.12);
  border-radius: var(--radius);
  background: var(--color-paper);
  box-shadow: var(--shadow);
  font-family: "Inter", Arial, sans-serif;
}

.legal-panel h1 {
  margin-bottom: 28px;
  font-size: 52px;
}

.legal-panel h2 {
  margin: 34px 0 12px;
  font-size: 28px;
  line-height: 1.2;
}

.legal-panel p {
  margin: 0 0 16px;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.65;
}

.legal-panel a {
  color: var(--color-ink);
  font-weight: 700;
}

@media (max-width: 900px) {
  .page-shell {
    padding: 16px 16px 0;
  }

  .hero,
  .hero__content {
    min-height: auto;
  }

  .hero__media::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 62%, rgba(244, 242, 243, 0.72) 100%);
  }

  .hero__content {
    padding: 24px;
  }

  .site-header {
    align-items: flex-start;
  }

  .hero__copy {
    padding: 78px 0 42px;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 42px;
  }

  .hero__copy p:not(.eyebrow) {
    font-size: 19px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .contact-card:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(32, 33, 46, 0.1);
  }

  .contact-card:last-child {
    border-bottom: 0;
  }

  .details-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    flex-direction: column;
    gap: 18px;
  }

  .brand {
    width: min(100%, 330px);
  }

  .status-pill {
    font-size: 13px;
  }

  .hero__content {
    padding: 20px;
  }

  .hero__copy {
    padding: 64px 0 36px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 36px;
  }

  .hero__copy p:not(.eyebrow) {
    font-size: 17px;
  }

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

  .contact-section {
    padding: 58px 0 28px;
  }

  .contact-card {
    padding: 20px;
  }

  .hours-panel {
    padding: 22px;
  }

  .hours-list div {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 13px 0;
  }

  .map-panel {
    min-height: 360px;
  }

  .subpage-shell {
    padding: 18px 16px 42px;
  }

  .subpage-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-panel {
    padding: 24px;
  }

  .legal-panel h1 {
    font-size: 38px;
  }
}
