:root {
  --orange: #f45112;
  --orange-dark: #d93d08;
  --cream: #fff9f2;
  --ink: #171713;
  --green: #176b2c;
  --red: #c92318;
  --muted: #6d6a62;
  --line: rgba(23, 23, 19, 0.12);
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 50% -15%, rgba(244, 81, 18, 0.13), transparent 38rem),
    var(--cream);
}

a {
  color: inherit;
}

.page-shell {
  width: min(100% - 32px, 720px);
  margin-inline: auto;
}

.hero {
  min-height: 88svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 0 56px;
  text-align: center;
}

.brand-mark {
  width: clamp(132px, 30vw, 184px);
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 28px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: white;
  box-shadow: 0 18px 50px rgba(113, 42, 7, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.035);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.055em;
}

h1 {
  margin: 0;
  font-size: clamp(3.35rem, 12vw, 6.5rem);
  line-height: 0.91;
}

.intro {
  max-width: 520px;
  margin: 24px auto 30px;
  color: var(--muted);
  font-size: clamp(1rem, 3vw, 1.18rem);
  line-height: 1.6;
}

.actions {
  width: min(100%, 520px);
  display: grid;
  gap: 12px;
}

.action {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 18px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(23, 23, 19, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.action:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(23, 23, 19, 0.12);
}

.action:focus-visible,
.contact-card:focus-visible {
  outline: 3px solid rgba(23, 107, 44, 0.5);
  outline-offset: 3px;
}

.action-primary {
  background: var(--orange);
  color: white;
}

.action-primary:hover {
  background: var(--orange-dark);
}

.action-dark {
  background: var(--ink);
  color: white;
}

.action-light {
  border-color: var(--line);
  background: white;
}

.action-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.action svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.action svg .fill {
  fill: currentColor;
  stroke: none;
}

.arrow {
  font-size: 1.25rem;
  font-weight: 400;
}

.visit {
  padding: 72px 0 88px;
  border-top: 1px solid var(--line);
}

.visit h2 {
  max-width: 550px;
  margin: 0 0 32px;
  font-size: clamp(2.4rem, 8vw, 4.4rem);
  line-height: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-card {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 81, 18, 0.55);
}

.contact-kicker {
  margin-bottom: auto;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card strong {
  margin-bottom: 3px;
  font-size: 1.05rem;
}

.contact-card span:last-child {
  color: var(--muted);
  font-size: 0.92rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(20px, calc((100vw - 720px) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 24px, 720px);
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .brand-mark {
    margin-bottom: 24px;
  }

  .intro {
    margin-top: 20px;
  }

  .action {
    min-height: 60px;
    border-radius: 16px;
  }

  .visit {
    padding: 58px 0 64px;
  }

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

  .contact-card {
    min-height: 140px;
  }

  footer {
    flex-direction: column;
    align-items: center;
    padding-block: 26px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
