:root {
  --forest: #1f4236;
  --forest-deep: #14261d;
  --paper: #f6efe5;
  --linen: #f3eadf;
  --ivory: #f7f1e6;
  --ink: #172d21;
  --bronze: #a17f56;
  --shadow: 0 24px 60px rgba(10, 18, 12, 0.18);
  --button-shadow: 0 10px 24px rgba(10, 18, 12, 0.12);
  --transition: 280ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "DM Sans", sans-serif;
  color: var(--paper);
  background:
    linear-gradient(140deg, rgba(9, 22, 18, 0.84) 0%, rgba(18, 35, 28, 0.78) 48%, rgba(8, 19, 15, 0.9) 100%),
    url("assets/hero/sanctuary-hero.png") center/cover no-repeat;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a.button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(161, 128, 82, 0.65);
  outline-offset: 4px;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 24px;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 48%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
}

.foliage {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.78;
  filter: brightness(0.28) contrast(1.08) saturate(0.3);
}

.foliage img {
  width: clamp(180px, 28vw, 320px);
}

.foliage-tl {
  top: -3%;
  left: -4%;
  transform: rotate(-6deg);
}

.foliage-tr {
  top: -2%;
  right: -4%;
  transform: rotate(6deg);
}

.foliage-bl {
  bottom: -2%;
  left: -6%;
  transform: rotate(8deg);
}

.foliage-br {
  bottom: -2%;
  right: -6%;
  transform: rotate(-8deg);
}

.holding-card {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  padding: clamp(28px, 4.5vw, 48px);
  border-radius: 34px;
  background: rgba(246, 239, 229, 0.94);
  border: 1px solid rgba(255, 252, 243, 0.75);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.34);
  color: var(--ink);
  backdrop-filter: blur(8px);
}

.holding-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  border: 1px solid rgba(161, 127, 86, 0.24);
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(161, 127, 86, 0.45);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--forest);
}

.brand-copy strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--forest);
}

.brand-copy small {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(23, 45, 33, 0.72);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze);
}

.message h1 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.08;
  color: var(--forest-deep);
}

.lead {
  margin: 0;
  max-width: 58ch;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.75;
  color: rgba(23, 45, 33, 0.84);
}

.actions {
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  box-shadow: var(--button-shadow);
}

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

.button:active {
  transform: translateY(1px);
  box-shadow: 0 8px 16px rgba(10, 18, 12, 0.14);
}

.button-primary {
  background: #2f5f50;
  color: white;
  border-color: rgba(255, 255, 245, 0.16);
}

.button-primary:hover {
  background: #356a59;
}

.contact-block {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(23, 45, 33, 0.16);
}

.contact-label {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(23, 45, 33, 0.78);
}

.phone-link {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest);
}

.site-footer {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  transform: translateX(-50%);
  width: min(92vw, 720px);
  text-align: center;
  font-size: 0.92rem;
  color: rgba(246, 239, 229, 0.86);
}

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

  .holding-card {
    padding: 24px 20px 26px;
    border-radius: 28px;
  }

  .brand {
    margin-bottom: 22px;
  }

  .message h1 {
    font-size: clamp(1.8rem, 8vw, 2.3rem);
  }

  .button {
    width: 100%;
    min-height: 56px;
  }

  .site-footer {
    position: static;
    transform: none;
    width: auto;
    margin-top: 16px;
    padding: 0 4px;
  }
}

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