/* Change Begins With You — design tokens from Claude Design comp */
:root {
  --beige: #f4eee3;
  --beige-card: #ece3d3;
  --ink: #1a1613;
  --gold: #a8823f;
  --gold-dark: #8a6a30;
  --gold-light: #e9c884;
  --body-text: #4a423a;
  --footer-text: #cbbfa8;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Helvetica Neue', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--beige);
  font-family: var(--sans);
  color: var(--ink);
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-dark); }

.page {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--beige);
  overflow: hidden;
}

.kicker {
  font-size: 13px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}
.kicker-gold-light { color: var(--gold-light); }

.accent-italic { font-style: italic; color: var(--gold); }
.accent-italic-light { font-style: italic; color: var(--gold-light); }

/* image placeholders — swap for <img> with object-fit:cover */
.img-slot {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(168,130,63,.14), rgba(26,22,19,.08)),
    var(--beige-card);
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-slot span {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(74,66,58,.55);
  text-align: center;
  padding: 0 10px;
}
.img-slot-dark {
  background:
    linear-gradient(135deg, rgba(233,200,132,.16), rgba(0,0,0,.25)),
    #2a241e;
}
.img-slot-dark span { color: rgba(244,238,227,.4); }

/* buttons */
.btn {
  display: inline-block;
  padding: 17px 30px;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.btn-solid { background: var(--ink); color: var(--beige); }
.btn-solid:hover { background: #000; color: var(--beige); }
.btn-outline { border: 1px solid var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--beige); }

/* nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 64px;
  border-bottom: 1px solid rgba(26,22,19,.1);
  gap: 20px;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 23px;
  letter-spacing: .02em;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav-links a { color: var(--ink); }
.nav-links a:hover { color: var(--gold-dark); }
.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  padding: 10px 22px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); color: var(--beige); }

/* hero */
.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
}
.hero-copy {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-copy .kicker { margin-bottom: 26px; }
.hero-copy h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 64px;
  line-height: 1.03;
  letter-spacing: -.01em;
}
.hero-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--body-text);
  margin: 30px 0 40px;
  max-width: 450px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-media { position: relative; min-height: 600px; }
.hero-portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.hero-before {
  position: absolute;
  left: -46px;
  bottom: 56px;
  width: 170px;
  height: 212px;
  border: 6px solid var(--beige);
  box-shadow: 0 20px 40px rgba(0,0,0,.22);
}
.hero-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-badge {
  position: absolute;
  left: 44px;
  bottom: -30px;
  background: var(--gold-light);
  color: var(--ink);
  padding: 16px 22px;
  font-family: var(--serif);
  font-size: 19px;
  box-shadow: 0 16px 30px rgba(0,0,0,.15);
  z-index: 2;
}
.hero-badge b { font-size: 30px; }

/* story */
.story {
  background: var(--ink);
  color: var(--beige);
  padding: 80px 64px 90px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}
.story-photo { height: 340px; }
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.story-quote {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.4;
}
.story-body {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(244,238,227,.72);
  margin-top: 22px;
  max-width: 520px;
}
.story-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.story-copy .kicker { margin-bottom: 20px; }

/* community / testimonials */
.community { padding: 80px 64px; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 {
  font-family: var(--serif);
  font-size: 40px;
  margin-top: 8px;
  font-weight: 500;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial { background: var(--beige-card); padding: 34px; }
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.5;
}
.testimonial figcaption {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.who { font-size: 14px; color: var(--body-text); }
.loss { color: var(--gold); }

/* signup */
.signup {
  background: var(--gold-light);
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 52px;
  align-items: center;
}
.signup h2 {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1.08;
  font-weight: 500;
}
.signup-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a3d24;
  margin-top: 18px;
  max-width: 430px;
}
.signup-form { background: var(--beige); padding: 30px; }
.signup-form input {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(26,22,19,.2);
  background: transparent;
  font-size: 15px;
  margin-bottom: 12px;
  font-family: var(--sans);
}
.signup-form input:focus { outline: none; border-color: var(--gold); }
.signup-form input:last-of-type { margin-bottom: 16px; }
.signup-form button {
  width: 100%;
  border: none;
  cursor: pointer;
  background: var(--ink);
  color: var(--gold-light);
  padding: 16px;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-family: var(--sans);
}
.signup-form button:hover { background: #000; }
.form-note { margin-top: 14px; font-size: 14px; color: var(--gold-dark); }

/* instagram */
.instagram { padding: 70px 64px 80px; }
.ig-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}
.ig-head h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
}
.ig-head a {
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.ig-grid .ig-tile { aspect-ratio: 1; height: auto; display: block; overflow: hidden; }
.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease, opacity .35s ease;
}
.ig-tile:hover img { transform: scale(1.04); opacity: .92; }
.ig-tile.img-slot:hover { opacity: .8; }

/* footer */
.footer {
  background: var(--ink);
  color: var(--footer-text);
  padding: 52px 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 25px;
  color: var(--beige);
}
.footer-legal { font-size: 13px; margin-top: 10px; }
.footer-legal a { color: rgba(203,191,168,.6); }
.footer-legal a:hover { color: var(--gold-light); }
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--gold-light);
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .nav, .hero-copy, .story, .community, .signup, .instagram, .footer {
    padding-left: 40px;
    padding-right: 40px;
  }
  .hero-copy h1 { font-size: 52px; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 64px; padding-bottom: 56px; }
  .hero-media { min-height: 480px; margin: 0 40px 60px; }
  .hero-before { left: -16px; }
  .story { grid-template-columns: 1fr; gap: 36px; padding-top: 64px; padding-bottom: 72px; }
  .story-photo { height: 280px; }
  .testimonials { grid-template-columns: 1fr; }
  .signup { grid-template-columns: 1fr; gap: 32px; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .ig-grid .img-slot:nth-child(n+4) { display: none; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav, .hero-copy, .story, .community, .signup, .instagram, .footer {
    padding-left: 22px;
    padding-right: 22px;
  }
  .nav { padding-top: 20px; padding-bottom: 20px; }
  .nav-logo { font-size: 19px; }
  .hero-copy h1 { font-size: 40px; }
  .hero-media { margin: 0 22px 56px; min-height: 400px; }
  .hero-badge { left: 22px; padding: 12px 18px; font-size: 16px; }
  .hero-badge b { font-size: 24px; }
  .story-quote { font-size: 24px; }
  .section-head h2 { font-size: 32px; }
  .signup h2 { font-size: 34px; }
  .ig-head h2 { font-size: 22px; }
  .footer { align-items: flex-start; flex-direction: column; }
}
