:root {
  --bg: #f3f1ec;
  --surface: #ffffff;
  --surface-soft: #f8f6f2;
  --text: #17181a;
  --muted: #595f67;
  --gold: #b99247;
  --gold-soft: #d7b56f;
  --border: #ddd6c9;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% -6%, rgba(255, 255, 255, 0.65), transparent 30%),
    radial-gradient(circle at 88% -12%, rgba(185, 146, 71, 0.13), transparent 24%),
    linear-gradient(180deg, #f3f1ec 0%, #efebe4 46%, #e9e3d7 100%);
  line-height: 1.6;
}

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

a {
  color: #8f6b2c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  color: #000;
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  z-index: 1000;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 3.5rem 0 2.6rem;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.45), transparent 45%),
    radial-gradient(circle at 50% 20%, rgba(255, 223, 157, 0.18), transparent 34%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: min(92vw, 820px);
  height: min(55vw, 360px);
  top: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 18px;
  background: radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.2) 58%, transparent 78%);
  filter: blur(2px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 1;
  width: min(100%, 940px);
  padding: clamp(1.1rem, 2.8vw, 2rem) clamp(1rem, 3.2vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(249, 246, 239, 0.9) 100%);
  backdrop-filter: blur(4px);
  box-shadow: 0 18px 34px rgba(36, 31, 21, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero-logo {
  width: min(88vw, 690px);
  margin: 0 auto 1.6rem;
  filter: drop-shadow(0 16px 24px rgba(27, 25, 21, 0.26));
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  opacity: 0.95;
}

h1 {
  margin: 0.65rem 0 0.5rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.03em;
}

.hero-subtitle {
  margin: 0 0 1.5rem;
  font-size: clamp(1rem, 2.3vw, 1.35rem);
  color: #4d535b;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(145deg, var(--gold-soft), var(--gold));
  color: #1e1f22;
  box-shadow: 0 8px 22px rgba(185, 146, 71, 0.28);
  border: 1px solid rgba(143, 107, 44, 0.25);
}

.btn-primary:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(185, 146, 71, 0.32), 0 0 0 2px rgba(255, 240, 205, 0.45) inset;
}

.btn-primary:focus-visible {
  outline: 3px solid rgba(143, 107, 44, 0.4);
  outline-offset: 2px;
}

.section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

h2 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

p {
  margin: 0;
  color: #3d4249;
}

.grid {
  display: grid;
  gap: 1rem;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(252, 249, 243, 0.9));
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.2rem;
  min-height: 100px;
  display: flex;
  align-items: center;
}

.card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.why-list {
  margin: 0;
  padding-left: 1.25rem;
  color: #3d4249;
}

.why-list li + li {
  margin-top: 0.7rem;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0.75rem;
  padding: 1.3rem;
  box-shadow: 0 12px 26px rgba(38, 33, 21, 0.08);
}

.footer {
  background: #ece5d8;
  padding: 2rem 0;
}

.footer-content {
  text-align: center;
}

.footer p {
  margin: 0.2rem 0;
  color: #535960;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .cards-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 66vh;
    padding: 3rem 0 2.2rem;
  }

  .hero-logo {
    width: min(90vw, 500px);
  }

  .hero::after {
    height: 240px;
    top: 1.1rem;
  }

  .hero-content {
    border-radius: 14px;
    padding: 1rem 0.85rem 1.2rem;
  }

  .cards-3 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.1rem 0;
  }
}
