:root {
  --leaf: #4f6b2f;
  --leaf-dark: #213815;
  --sun: #f2b84b;
  --clay: #a8502a;
  --cream: #fff8e9;
  --paper: #f8f1df;
  --ink: #241b14;
  --muted: #66594d;
  --white: #fffdf8;
  --shadow: 0 22px 60px rgba(36, 27, 20, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(19, 22, 12, 0.75), rgba(19, 22, 12, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  width: 80px;
  height: 80px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 18px;
}

.brand small {
  margin-top: 3px;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2.5vw, 26px);
  font-weight: 700;
}

.nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero {
  min-height: 92svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--leaf-dark);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 22, 12, 0.82), rgba(20, 22, 12, 0.36) 48%, rgba(20, 22, 12, 0.12)),
    linear-gradient(180deg, rgba(20, 22, 12, 0.28), rgba(20, 22, 12, 0.7));
}

.hero-content {
  position: relative;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 80px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: #ffe3a7;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--clay);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 9vw, 96px);
  line-height: 0.95;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 253, 248, 0.9);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.5;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  color: var(--leaf-dark);
  background: var(--sun);
  box-shadow: 0 12px 28px rgba(242, 184, 75, 0.24);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.36);
  background: rgba(79, 107, 47, 0.7);
}

.button.map {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.42);
  background: rgba(36, 27, 20, 0.48);
}

.button.light {
  color: var(--leaf-dark);
  border-color: rgba(79, 107, 47, 0.28);
  background: var(--white);
}

.intro,
.location {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.intro {
  padding: 76px 0 64px;
}

.section-copy {
  max-width: 780px;
}

.section-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.info-card {
  min-height: 216px;
  padding: 26px;
  border: 1px solid rgba(79, 107, 47, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(36, 27, 20, 0.08);
}

.info-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #fff0c4;
  color: var(--clay);
  font-size: 18px;
}

.info-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 46px clamp(18px, 6vw, 84px);
  color: var(--white);
  background: var(--leaf-dark);
}

.contact-band h2 {
  margin-bottom: 0;
}

.phone-link {
  flex: 0 0 auto;
  padding: 14px 18px;
  border-radius: 8px;
  color: var(--leaf-dark);
  background: var(--sun);
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 900;
  text-decoration: none;
}

.location {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: stretch;
  padding: 72px 0;
}

.location-details {
  padding: 34px;
  border-left: 6px solid var(--sun);
  background: var(--paper);
}

address {
  color: var(--muted);
  font-size: 19px;
  font-style: normal;
  line-height: 1.6;
}

.map-frame {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(79, 107, 47, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #d8dcc7;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: #151d10;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 75px;
  height: 75px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
}

.footer-brand p {
  margin-bottom: 0;
}

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

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    gap: 12px;
    font-size: 14px;
  }

  .hero {
    min-height: 94svh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(20, 22, 12, 0.3), rgba(20, 22, 12, 0.84)),
      linear-gradient(90deg, rgba(20, 22, 12, 0.72), rgba(20, 22, 12, 0.18));
  }

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

  .info-grid,
  .location {
    grid-template-columns: 1fr;
  }

  .contact-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .phone-link {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 60px;
    height: 60px;
  }

  .nav a {
    min-height: 36px;
  }

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

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

  .location-details {
    padding: 26px;
  }
}
