:root {
  --green: #0e3920;
  --green-dark: #082819;
  --green-soft: #e9efe9;
  --bronze: #a37c5b;
  --bronze-light: #d9c6b5;
  --cream: #f8f6f2;
  --white: #ffffff;
  --text: #243128;
  --muted: #68736b;
  --shadow: 0 24px 70px rgba(14, 57, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 15%, rgba(163, 124, 91, 0.12), transparent 28rem),
    radial-gradient(circle at 88% 82%, rgba(14, 57, 32, 0.08), transparent 30rem),
    var(--cream);
  font-family: "Montserrat", Arial, sans-serif;
}

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

.page-shell {
  flex: 1;
  display: grid;
  place-items: center;
  width: 100%;
  padding: 32px;
}

.hero {
  position: relative;
  isolation: isolate;
  width: min(1080px, 100%);
  overflow: hidden;
  border: 1px solid rgba(163, 124, 91, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  padding: clamp(38px, 7vw, 78px) clamp(24px, 7vw, 82px);
  text-align: center;
}

.hero__logo {
  width: min(650px, 92%);
  margin: 0 auto;
}

.hero__divider {
  width: 86px;
  height: 2px;
  margin: 28px auto 24px;
  background: var(--bronze);
}

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

h1 {
  margin: 0;
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 4.1rem);
  font-weight: 600;
  line-height: 0.98;
}

.intro {
  max-width: 690px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(0.96rem, 2vw, 1.08rem);
  line-height: 1.8;
}

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

.contact-card {
  min-height: 118px;
  padding: 20px 16px;
  border: 1px solid rgba(14, 57, 32, 0.12);
  border-radius: 16px;
  color: inherit;
  background: rgba(233, 239, 233, 0.52);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

a.contact-card:hover,
a.contact-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(163, 124, 91, 0.55);
  background: var(--white);
  outline: none;
}

.contact-card__label,
.contact-card__value {
  display: block;
}

.contact-card__label {
  margin-bottom: 10px;
  color: var(--bronze);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card__value {
    color: var(--green-dark);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

/* Larger telephone number */
.contact-card:first-child .contact-card__value{
    font-size:2rem;
    font-weight:700;
    letter-spacing:1px;
    color:var(--green);
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 28px;
  padding: 0 26px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.website-link{
    margin-top:30px;
    margin-bottom:10px;
}

.website-link a{
    display:inline-block;
    padding:14px 32px;
    border-radius:999px;
    background:var(--bronze);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:0.25s;
}

.website-link a:hover{
    background:var(--green);
    transform:translateY(-2px);
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-2px);
  color: var(--green);
  background: transparent;
  outline: none;
}

.hero__decoration {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(163, 124, 91, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.hero__decoration--top {
  top: -150px;
  right: -115px;
  width: 310px;
  height: 310px;
}

.hero__decoration--bottom {
  bottom: -210px;
  left: -150px;
  width: 360px;
  height: 360px;
  border-color: rgba(14, 57, 32, 0.13);
}

.site-footer {
  padding: 0 24px 24px;
  color: var(--muted);
  text-align: center;
  font-size: 0.75rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .page-shell {
    padding: 18px;
  }

  .hero {
    border-radius: 20px;
  }

  .hero__content {
    padding: 38px 20px 42px;
  }

  .hero__logo {
    width: min(540px, 100%);
  }

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

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

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