html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: #000000;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

::selection {
  background: #e7d164;
  color: #000000;
}

:focus-visible {
  outline: 3px solid #c7daec;
  outline-offset: 3px;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #ede7bf;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner,
.section-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  height: 40px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.58);
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: #000000;
}

.hero {
  border-bottom: 1px solid #ede7bf;
  background-image:
    linear-gradient(rgba(199, 218, 236, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 218, 236, 0.3) 1px, transparent 1px);
  background-size: 44px 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  min-height: 620px;
  padding: 72px 0;
}

.eyebrow {
  display: inline-flex;
  border: 1px solid #ede7bf;
  background: rgba(255, 255, 255, 0.86);
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.66);
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 0;
  font-weight: 600;
}

h1 {
  margin-top: 28px;
  max-width: 920px;
  font-size: clamp(3.2rem, 8vw, 6.6rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 0.98;
}

h3 {
  font-size: 2rem;
  line-height: 1;
}

p {
  line-height: 1.75;
}

.hero-copy {
  margin-top: 28px;
  max-width: 760px;
  font-size: 1.18rem;
  color: rgba(0, 0, 0, 0.72);
}

.hero-card {
  border: 1px solid #ede7bf;
  background: #ffffff;
  padding: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
}

.hero-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.cta-row {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button,
.button-light {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000000;
  padding: 0 24px;
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  background: #000000;
  color: #ffffff;
}

.button-light {
  border-color: #ede7bf;
  background: #ffffff;
  color: #000000;
}

.section {
  padding: 88px 0;
}

.section-alt {
  border-top: 1px solid #ede7bf;
  border-bottom: 1px solid #ede7bf;
  background: #f8f3d4;
}

.section-head {
  max-width: 840px;
  margin-bottom: 44px;
}

.lead {
  margin-top: 24px;
  font-size: 1.08rem;
  color: rgba(0, 0, 0, 0.66);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  border: 1px solid #ede7bf;
  background: #ffffff;
  padding: 28px;
}

.card p,
.content p,
.faq p {
  color: rgba(0, 0, 0, 0.66);
}

.content {
  display: grid;
  gap: 26px;
}

.content-block {
  border-top: 1px solid #ede7bf;
  padding-top: 26px;
}

.list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  border: 1px solid #ede7bf;
  background: #ffffff;
  padding: 16px 18px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.72);
}

.internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.internal-links a {
  border: 1px solid #ede7bf;
  background: #ffffff;
  padding: 12px 14px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.68);
}

.faq {
  display: grid;
  gap: 14px;
}

.faq article {
  border: 1px solid #ede7bf;
  background: #ffffff;
  padding: 24px;
}

.cta-band {
  background: #000000;
  color: #ffffff;
  text-align: center;
}

.cta-band p {
  max-width: 680px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer {
  border-top: 1px solid #ede7bf;
  padding: 34px 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero-grid,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 48px 0;
  }

  .hero-card img {
    height: 300px;
  }

  .section {
    padding: 64px 0;
  }
}
