
:root {
  --forest: #153F35;
  --coral: #EF7A68;
  --sage: #849184;
  --rose: #DAB7B4;
  --graphite: #202B27;
  --ivory: #F7F3EC;
  --mist: #F3F5F3;
  --white: #FFFFFF;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  background: var(--ivory);
  color: var(--graphite);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.page-shell { min-height: 100vh; }
.wrap { max-width: 1320px; margin: 0 auto; padding-left: 10px; padding-right: 10px; }
.wrap-band { max-width: 1320px; margin: 0 auto 26px; }
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 45%, rgba(39,109,90,0.42), transparent 33%),
    radial-gradient(circle at 76% 42%, rgba(61,111,94,0.28), transparent 26%),
    var(--forest);
  padding: 18px 0 0;
}
.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory);
  border-radius: 12px;
  padding: 8px 10px;
}
.brand img { width: 176px; height: auto; }
.top-instagram, .primary-cta, .secondary-cta {
  min-height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .18s ease, opacity .18s ease, box-shadow .18s ease;
}
.top-instagram {
  border: 1px solid rgba(247,243,236,.45);
  color: var(--white);
  padding: 0 18px;
  margin-top: 18px;
}
.ig-dot { font-size: 18px; line-height: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  gap: 64px;
  align-items: center;
  padding-top: 58px;
  padding-bottom: 70px;
}
.hero-copy { color: var(--white); }
.eyebrow {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: .18em;
  font-weight: 700;
  color: #F1C0B8;
}
.eyebrow.dark { color: rgba(32,43,39,.75); }
h1 {
  margin: 0;
  font-size: clamp(66px, 8vw, 108px);
  line-height: .94;
  letter-spacing: -.06em;
  font-weight: 600;
  max-width: 620px;
}
.lead {
  margin: 30px 0 0;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.44;
  color: rgba(247,243,236,.95);
}
.lead strong {
  color: var(--coral);
  font-weight: 700;
}
.primary-cta {
  margin-top: 30px;
  background: var(--coral);
  color: var(--graphite);
  padding: 0 20px;
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
}
.microcopy {
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(247,243,236,.72);
}
.visual-card {
  position: relative;
  width: min(100%, 640px);
  aspect-ratio: 1.02 / 1;
  justify-self: end;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(247,243,236,.15);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  background: rgba(255,255,255,.06);
}
.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 18%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}
.card-motif {
  position: absolute;
  right: -2px;
  bottom: -4px;
  width: 220px;
  height: auto;
  opacity: .7;
}
.instagram-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  background: var(--coral);
  border-radius: 0 0 20px 20px;
  padding: 56px 150px;
}
.instagram-band h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: -.05em;
  font-weight: 600;
}
.instagram-band p:not(.eyebrow) {
  margin: 12px 0 0;
  font-size: 19px;
  line-height: 1.5;
  color: rgba(32,43,39,.82);
}
.secondary-cta {
  background: var(--forest);
  color: var(--white);
  padding: 0 22px;
}
.top-instagram:hover, .primary-cta:hover, .secondary-cta:hover { transform: translateY(-2px); }
.top-instagram:focus-visible, .primary-cta:focus-visible, .secondary-cta:focus-visible, .brand:focus-visible {
  outline: 3px solid rgba(255,255,255,.9);
  outline-offset: 4px;
}
@media (max-width: 1120px) {
  .hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .visual-card { justify-self: start; width: min(100%, 780px); }
  .instagram-band { padding: 42px 28px; }
}
@media (max-width: 860px) {
  .wrap { padding-left: 18px; padding-right: 18px; }
  .hero { padding-top: 14px; }
  .topbar { align-items: center; }
  .brand img { width: 136px; }
  .top-instagram { margin-top: 0; }
  .hero-grid { padding-top: 40px; padding-bottom: 48px; }
  .instagram-band {
    grid-template-columns: 1fr;
    gap: 22px;
    border-radius: 18px;
    margin: 0 18px 18px;
  }
}
@media (max-width: 560px) {
  h1 { font-size: 66px; }
  .eyebrow { font-size: 13px; }
  .lead { font-size: 18px; }
  .top-instagram {
    width: 46px;
    padding: 0;
    font-size: 0;
  }
  .top-instagram .ig-dot { font-size: 22px; }
  .primary-cta { width: 100%; }
  .image-pill {
    top: 18px;
    left: 18px;
    padding: 12px 16px;
    gap: 10px;
    font-size: 11px;
  }
  .pill-dot { width: 14px; height: 14px; flex-basis: 14px; }
  .card-motif { width: 160px; }
  .instagram-band h2 { font-size: 30px; }
  .instagram-band p:not(.eyebrow) { font-size: 16px; }
  .secondary-cta { justify-self: start; }
}
