:root {
  --cream: #fbf3e4;
  --sand: #ddc78d;
  --gold: #d99b27;
  --rust: #bd641f;
  --green: #387b66;
  --deep-green: #1f4f45;
  --text: #423827;
  --white: #fffdf8;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 22%, rgba(217, 155, 39, 0.18), transparent 28%),
    radial-gradient(circle at 84% 74%, rgba(56, 123, 102, 0.16), transparent 30%),
    linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
}

.page {
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.card {
  width: min(920px, 100%);
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid rgba(221, 199, 141, 0.65);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 24px 70px rgba(66, 56, 39, 0.14);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.card::before,
.card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  opacity: 0.12;
  pointer-events: none;
}

.card::before {
  top: -95px;
  left: -75px;
  background: var(--gold);
}

.card::after {
  right: -90px;
  bottom: -110px;
  background: var(--green);
}

.logo-wrap,
.eyebrow,
h1,
.intro,
.contact-panel,
.divider {
  position: relative;
  z-index: 1;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(360px, 86vw);
  margin: 0 auto 22px;
}

.logo {
  width: 100%;
  height: auto;
  display: block;
}

.divider {
  width: 96px;
  height: 3px;
  margin: 8px auto 26px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--rust), var(--sand), var(--green));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rust);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0 auto 16px;
  color: var(--deep-green);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.intro {
  max-width: 680px;
  margin: 0 auto 34px;
  color: rgba(66, 56, 39, 0.82);
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  line-height: 1.75;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.contact-item {
  padding: 22px;
  border: 1px solid rgba(221, 199, 141, 0.8);
  border-radius: 18px;
  background: rgba(251, 243, 228, 0.74);
}

.label {
  display: block;
  margin-bottom: 10px;
  color: var(--rust);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

address,
a {
  color: var(--deep-green);
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.65;
}

a {
  text-decoration-color: rgba(56, 123, 102, 0.35);
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

a:hover,
a:focus {
  color: var(--rust);
}

@media (max-width: 680px) {
  .card {
    border-radius: 22px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-item {
    padding: 20px 16px;
  }
}
