:root {
  color: #1a1a1a;
  background: #fdfcfb;
  font-family: Inter, Arial, sans-serif;
  line-height: 1.65;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

a {
  color: #745c48;
}

.site-header,
.site-footer {
  background: #1a1a1a;
  color: white;
  padding: 20px 24px;
}

.site-header nav,
.site-footer > div,
main {
  width: min(100% - 40px, 980px);
  margin: 0 auto;
}

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

.site-header a,
.site-footer a {
  color: white;
  text-decoration: none;
}

.brand {
  font-family: Georgia, serif;
  letter-spacing: 0.16em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

main {
  padding: 72px 0;
}

h1,
h2 {
  font-family: Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 7vw, 72px);
  margin: 12px 0 28px;
}

h2 {
  font-size: 34px;
  margin-top: 56px;
}

.eyebrow {
  color: #8b735b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lead {
  max-width: 760px;
  font-size: 21px;
  color: #504a45;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.card {
  border: 1px solid #e6ddd5;
  border-radius: 24px;
  background: white;
  padding: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 32px;
  box-shadow: 0 18px 50px rgba(80, 66, 54, 0.06);
}

.contact-card h2 {
  margin: 8px 0 18px;
  font-size: clamp(28px, 4vw, 38px);
}

.contact-card p {
  color: #625b55;
}

.card-label {
  margin: 0;
  color: #8b735b !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-value {
  margin: 0 0 4px;
  font-size: clamp(20px, 3vw, 27px);
  font-weight: 600;
}

.contact-value a {
  text-decoration: none;
}

.contact-card > .button {
  align-self: flex-start;
  margin-top: auto;
}

.contact-card-address {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 48px;
  min-height: auto;
  background:
    radial-gradient(circle at 100% 0, rgba(230, 213, 195, 0.45), transparent 42%),
    white;
}

.contact-card address {
  color: #514a44;
  font-size: 18px;
  font-style: normal;
  line-height: 1.85;
}

.contact-card address strong {
  color: #1a1a1a;
  font-weight: 600;
}

.directions {
  align-self: stretch;
  border-left: 1px solid #e6ddd5;
  padding-left: 40px;
}

.directions-title {
  margin: 0;
  color: #1a1a1a !important;
  font-family: Georgia, serif;
  font-size: 28px;
}

.direction-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.button {
  display: inline-block;
  margin-top: 24px;
  border-radius: 999px;
  background: #1a1a1a;
  color: white;
  padding: 14px 24px;
  text-decoration: none;
}

.button-secondary {
  border: 1px solid #cdbdac;
  background: transparent;
  color: #604d3e;
}

.site-footer {
  margin-top: 40px;
}

@media (max-width: 720px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: 0;
  }

  .contact-card-address {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .directions {
    border-top: 1px solid #e6ddd5;
    border-left: 0;
    padding-top: 28px;
    padding-left: 0;
  }
}
