* { box-sizing: border-box; }
:root {
  --ink: #18241f;
  --muted: #6e7771;
  --paper: #f5f3ed;
  --card: #fffdf8;
  --accent: #9FB23A;
  --line: #dfe1d8;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
.topbar {
  max-width: 1400px; margin: auto; padding: 28px 5vw;
  display: flex; justify-content: space-between; align-items: center;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 43px; height: 43px; display: grid; place-items: center;
  border-radius: 50%; background: var(--ink); color: var(--accent); font-size: 25px;
}
.brand strong, .brand small { display: block; line-height: 1.1; }
.brand strong { font-size: 13px; letter-spacing: .02em; }
.brand small { font-size: 12px; color: var(--muted); margin-top: 4px; }
.eyebrow, .label { text-transform: uppercase; letter-spacing: .12em; font-size: 10px; font-weight: 700; color: var(--muted); }
.layout {
  max-width: 1400px; margin: auto; padding: 24px 5vw 80px;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 26px;
  align-items: start;
}
.poster-panel, .reel-panel {
  border-radius: 28px; overflow: hidden;
}
.poster-panel { background: var(--card); padding: clamp(28px, 4vw, 55px); }
.reel-panel {
  background: #9FB23A; padding: clamp(28px, 4vw, 55px);
  display: flex; flex-direction: column; justify-content: center;
}
.pill {
  display: inline-flex; padding: 7px 12px; border-radius: 99px;
  background: var(--accent); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
}
.pill.dark { background: var(--ink); color: white; }
h1, h2 { font-family: "Playfair Display", serif; font-weight: 700; line-height: 1.04; }
h1 { font-size: clamp(36px, 4vw, 62px); margin: 25px 0 18px; letter-spacing: -.045em; }
h1 em { color: #8B963E; font-style: normal; }
.section-heading p, .reel-heading p { color: var(--muted); font-size: 15px; margin: 0 0 28px; }
h2 { font-size: clamp(30px, 3vw, 46px); margin: 25px 0 18px; letter-spacing: -.03em; }
.reel-heading p { color: #ffffff; }
.poster-wrap {
  background: #ecece8; border-radius: 17px; overflow: hidden;
  box-shadow: 0 18px 45px rgba(24, 36, 31, .10);
}
.poster-wrap img { display: block; width: 100%; height: auto; }
.button, .reel-button {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 20px; background: var(--ink); color: white;
  padding: 14px 17px; border-radius: 99px; font-size: 12px; font-weight: 700;
}
.instagram-wrap {
  width: 100%; display: flex; justify-content: center;
  background: rgba(255,255,255,.55); border-radius: 20px;
  padding: 8px; overflow: hidden;
}
.instagram-media {
  min-width: 0 !important; width: 100% !important;
  max-width: 540px !important; margin: 0 auto !important;
  background: #fff !important; border: 0 !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 30px rgba(24,36,31,.08) !important;
}
.embed-fallback {
  min-height: 380px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 30px; color: var(--ink); font-family: "DM Sans", sans-serif;
}
.fallback-icon { font-size: 52px; margin-bottom: 15px; }
.embed-fallback p { color: var(--muted); font-size: 13px; }
.embed-fallback a { color: #657c33; font-weight: 700; font-size: 13px; }
.reel-button { background: var(--ink); }
.reel-hint { font-size: 11px; color: #7a846e; margin: 14px 0 0; }
.footer {
  max-width: 1400px; margin: auto; padding: 28px 5vw 40px;
  border-top: 1px solid var(--line); display: flex; align-items: end;
  justify-content: space-between; gap: 25px;
}
.footer strong { font-size: 13px; }
.footer p { color: var(--muted); font-size: 12px; margin: 5px 0 0; }
.footer nav { display: flex; gap: 24px; font-size: 12px; font-weight: 700; }
.footer-year { color: var(--muted); font-size: 11px; }
@media (max-width: 850px) {
  .layout { grid-template-columns: 1fr; padding-top: 10px; }
  .reel-panel { padding: 35px 25px; }
}
@media (max-width: 540px) {
  .topbar { padding: 20px 22px; }
  .eyebrow { display: none; }
  .layout { padding: 10px 14px 45px; gap: 14px; }
  .poster-panel, .reel-panel { padding: 25px 20px; border-radius: 22px; }
  .footer { padding: 25px 22px 32px; flex-direction: column; align-items: flex-start; }
  .footer nav { flex-direction: column; gap: 9px; }
  .footer-year { display: none; }
}
.brand-logo {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}