:root {
  --cream: #f4eee4;
  --cream2: #e9dfcf;
  --paper: #fffdf9;
  --ink: #171512;
  --muted: #746d64;
  --gold: #b28b48;
  --gold2: #d5b776;
  --line: #d9cdbb;
  --white: #fff;
  --green: #1fa855;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(1180px, 90%);
  margin: auto;
}
.narrow {
  max-width: 820px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(244, 238, 228, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.nav-wrap {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond";
  font-size: 22px;
  color: var(--gold);
}
.brand strong {
  display: block;
  font-family: "Cormorant Garamond";
  letter-spacing: 2px;
  font-size: 20px;
  line-height: 1;
}
.brand small {
  display: block;
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-top: 4px;
  text-transform: uppercase;
}
.nav {
  display: flex;
  gap: 26px;
}
.nav a {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.nav a:hover {
  color: var(--gold);
}
.menu-btn {
  display: none;
  background: none;
  border: 0;
  font-size: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 10px;
  font-weight: 700;
  transition: 0.3s;
  border-radius: 3px;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background: #987235;
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn-outline-dark {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-whatsapp {
  background: var(--green);
  color: #fff;
}
.btn-whatsapp:hover {
  filter: brightness(0.92);
  transform: translateY(-2px);
}
.full {
  width: 100%;
}
.eyebrow,
.mini-label,
.tag {
  font-size: 10px;
  letter-spacing: 2.5px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
}
em {
  font-family: "Cormorant Garamond";
  font-style: italic;
  color: var(--gold);
}
.hero {
  min-height: 760px;
  padding: 110px 0;
  background:
    radial-gradient(
      circle at 78% 18%,
      rgba(211, 183, 118, 0.22),
      transparent 25%
    ),
    linear-gradient(120deg, #14120f 0, #2a241d 55%, #655036 100%);
  color: #fff;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}
.hero-copy h1,
.page-hero h1 {
  font-family: "Cormorant Garamond";
  font-weight: 500;
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.93;
  margin: 22px 0 28px;
}
.hero-text {
  max-width: 650px;
  color: #d7d0c7;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.hero-stats strong {
  display: block;
  font-family: "Cormorant Garamond";
  font-size: 26px;
  color: var(--gold2);
}
.hero-stats span {
  font-size: 9px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.portrait-card {
  position: relative;
  max-width: 420px;
  margin-left: auto;
}
.portrait-placeholder {
  height: 560px;
  border: 1px solid rgba(213, 183, 118, 0.5);
  background: linear-gradient(145deg, #403528, #171411);
  display: grid;
  place-items: center;
  position: relative;
}
.portrait-placeholder span {
  font-family: "Cormorant Garamond";
  font-size: 120px;
  color: rgba(213, 183, 118, 0.25);
}
.portrait-placeholder small {
  position: absolute;
  bottom: 26px;
  color: #c7beb3;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.portrait-badge {
  position: absolute;
  left: -75px;
  bottom: -35px;
  background: var(--paper);
  color: var(--ink);
  padding: 26px;
  width: 255px;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.28);
}
.portrait-badge > span {
  font-size: 45px;
  color: var(--gold);
}
.portrait-badge p {
  font-family: "Cormorant Garamond";
  font-size: 22px;
  line-height: 1.1;
}
.portrait-badge small {
  color: var(--gold);
}
.section {
  padding: 105px 0;
}
.intro-grid,
.two-col,
.contact-grid,
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.display-title,
.section-copy h2,
.section-heading h2,
.contact-panel h2,
.detail-main h2 {
  font-family: "Cormorant Garamond";
  font-weight: 500;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1;
}
.intro-grid p,
.section-copy p,
.contact-panel p,
.detail-main p {
  color: var(--muted);
  margin-bottom: 18px;
}
.text-link {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
}
.block {
  display: block;
  margin-top: 18px;
}
.dark-section {
  background: #15130f;
  color: #fff;
}
.section-heading {
  max-width: 720px;
  margin-bottom: 45px;
}
.section-heading p:last-child {
  color: #b8afa4;
}
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.course-card {
  background: var(--paper);
  color: var(--ink);
  padding: 32px;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: 0.3s;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 55px rgba(45, 35, 24, 0.12);
}
.course-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.course-number {
  font-family: "Cormorant Garamond";
  font-size: 58px;
  color: rgba(178, 139, 72, 0.28);
  line-height: 1;
}
.tag {
  font-size: 8px;
}
.course-card h3 {
  font-family: "Cormorant Garamond";
  font-size: 34px;
  line-height: 1.05;
  margin: 18px 0;
}
.course-card p {
  font-size: 12px;
  color: var(--muted);
  flex: 1;
}
.course-info {
  display: flex;
  gap: 10px;
  margin: 22px 0;
  flex-wrap: wrap;
}
.course-info span {
  font-size: 9px;
  border: 1px solid var(--line);
  padding: 6px 9px;
  text-transform: uppercase;
  color: var(--muted);
}
.card-actions {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 8px;
}
.center-space {
  text-align: center;
  margin-top: 38px;
}
.feature-section {
  background: var(--paper);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 34px;
  border-top: 1px solid var(--gold);
  background: #f5eee4;
}
.feature-card span {
  font-family: "Cormorant Garamond";
  font-size: 52px;
  color: var(--gold);
}
.feature-card h3 {
  font-family: "Cormorant Garamond";
  font-size: 28px;
  margin: 10px 0;
}
.feature-card p {
  font-size: 12px;
  color: var(--muted);
}
.cta-section {
  padding: 95px 0;
  background: #efe6d8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-elegant {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 80px;
  align-items: center;
  background: var(--paper);
  padding: 55px 60px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(53, 42, 28, 0.08);
}
.cta-copy {
  max-width: 760px;
}
.cta-copy h2 {
  font-family: "Cormorant Garamond";
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 500;
  line-height: 1.02;
  margin: 12px 0 18px;
  color: var(--ink);
}
.cta-copy p:last-child {
  max-width: 650px;
  color: var(--muted);
  font-size: 13px;
}
.cta-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-left: 36px;
  border-left: 1px solid var(--line);
}
.cta-link {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
  color: var(--gold);
}
.page-hero {
  padding: 110px 0 85px;
  background: linear-gradient(135deg, #15130f, #54432e);
  color: #fff;
}
.page-hero p {
  color: #d3cbc2;
}
.image-frame {
  border: 1px solid var(--gold);
  padding: 16px;
}
.image-placeholder {
  height: 520px;
  background: linear-gradient(145deg, #d4c0a2, #7f6d56);
  display: grid;
  place-items: center;
  color: #fff;
  position: relative;
}
.image-placeholder span {
  font-family: "Cormorant Garamond";
  font-size: 54px;
}
.image-placeholder small {
  position: absolute;
  bottom: 24px;
  letter-spacing: 2px;
  font-size: 9px;
  text-transform: uppercase;
}
.gold-line {
  height: 1px;
  width: 70px;
  background: var(--gold);
  margin: 26px 0;
}
.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 30px 0;
}
.info-strip div {
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.info-strip strong,
.info-strip span {
  display: block;
}
.info-strip strong {
  font-size: 9px;
  text-transform: uppercase;
  color: var(--gold);
}
.info-strip span {
  font-size: 11px;
  margin-top: 4px;
}
.filter-bar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.filter-bar a {
  color: var(--gold);
}
.event-list {
  max-width: 980px;
  margin: auto;
}
.event-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 25px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.event-date strong {
  font-family: "Cormorant Garamond";
  font-size: 50px;
}
.event-date span {
  display: block;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 1px;
}
.event-row h3 {
  font-family: "Cormorant Garamond";
  font-size: 30px;
}
.muted {
  color: var(--muted);
  font-size: 12px;
}
.contact-panel {
  background: var(--paper);
  padding: 46px;
  border: 1px solid var(--line);
  min-height: 310px;
}
.contact-panel h2 {
  font-size: 48px;
  margin: 12px 0;
}
.detail-grid {
  grid-template-columns: 1.3fr 0.7fr;
  align-items: start;
}
.detail-main h3 {
  font-family: "Cormorant Garamond";
  font-size: 30px;
  margin: 30px 0 12px;
}
.check-list {
  list-style: none;
}
.check-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.check-list li:before {
  content: "✓";
  color: var(--gold);
  margin-right: 10px;
}
.buy-box {
  background: var(--paper);
  padding: 36px;
  border: 1px solid var(--line);
  position: sticky;
  top: 120px;
}
.buy-box h3 {
  font-family: "Cormorant Garamond";
  font-size: 38px;
  margin: 10px 0;
}
.buy-box p {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 22px;
}
.footer {
  background: #0e0d0b;
  color: #fff;
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer h4 {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer a {
  display: block;
  color: #a39d95;
  font-size: 11px;
  margin: 7px 0;
}
.footer .brand {
  color: #fff;
}
.footer-intro {
  max-width: 330px;
  color: #8f8981;
  font-size: 11px;
  margin-top: 20px;
}
.footer-bottom {
  border-top: 1px solid #292620;
  margin-top: 50px;
  padding: 22px;
  text-align: center;
  color: #716c65;
  font-size: 10px;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: 0.7s;
}
.reveal.show {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .cta-elegant {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 42px;
  }
  .cta-action {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 28px;
  }
  .desktop-only {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .nav {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    width: 100%;
    background: var(--cream);
    padding: 18px 5%;
    flex-direction: column;
    border-top: 1px solid var(--line);
  }
  .nav.open {
    display: flex;
  }
  .hero-grid,
  .intro-grid,
  .two-col,
  .contact-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 80px;
  }
  .portrait-card {
    margin: 20px auto 0;
  }
  .portrait-badge {
    left: 15px;
  }
  .course-grid,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .info-strip {
    grid-template-columns: 1fr;
  }
  .event-row {
    grid-template-columns: 85px 1fr;
  }
  .event-row .btn {
    grid-column: 2;
  }
  .buy-box {
    position: static;
  }
}
@media (max-width: 620px) {
  .cta-section {
    padding: 65px 0;
  }
  .cta-elegant {
    padding: 32px 24px;
  }
  .cta-copy h2 {
    font-size: 42px;
  }
  .brand strong {
    font-size: 17px;
  }
  .brand small {
    display: none;
  }
  .hero-copy h1,
  .page-hero h1 {
    font-size: 52px;
  }
  .portrait-placeholder {
    height: 440px;
  }
  .hero-stats,
  .course-grid,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .card-actions {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 75px 0;
  }
  .cta-box h2 {
    font-size: 45px;
  }
  .event-row {
    grid-template-columns: 1fr;
  }
  .event-row .btn {
    grid-column: auto;
  }
  .filter-bar {
    flex-direction: column;
  }
  .page-hero {
    padding: 80px 0 60px;
  }
}

/* Seção Quem é a Apóstola - Home */
.about-home {
  background: var(--paper);
}
.about-home-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.about-home-photo {
  max-width: 470px;
}
.about-home-photo .image-placeholder {
  height: 540px;
  background: linear-gradient(145deg, #d6c2a3, #75634e);
}
.about-home-copy {
  max-width: 610px;
}
.about-home-copy .display-title {
  margin: 14px 0 0;
}
.about-home-copy p {
  color: var(--muted);
  margin-bottom: 18px;
}
.about-home-copy .about-note {
  font-size: 11px;
  border-left: 2px solid var(--gold);
  padding-left: 16px;
  margin: 25px 0;
  color: #8c8174;
}
@media (max-width: 900px) {
  .about-home-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .about-home-photo {
    margin: auto;
    width: 100%;
  }
  .about-home-copy {
    max-width: none;
  }
}
@media (max-width: 620px) {
  .about-home-photo .image-placeholder {
    height: 420px;
  }
}

/* ===== HOME V3 — editorial / institucional ===== */
.home-v3 {
  background: #f4f0e8;
}
.home-v3 .site-header {
  background: rgba(246, 242, 234, 0.94);
  border-bottom: 1px solid #ddd3c4;
}
.home-v3 .nav a.active {
  color: var(--gold);
}
.btn-light {
  background: #f6f1e8;
  color: #171512;
  border-color: #f6f1e8;
}
.btn-light:hover {
  background: #fff;
  transform: translateY(-2px);
}
.editorial-hero {
  min-height: 760px;
  padding: 100px 0 95px;
  background: linear-gradient(115deg, #11100e 0%, #1b1814 58%, #2b241c 100%);
  position: relative;
}
.editorial-hero:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(178, 139, 72, 0.14),
    rgba(178, 139, 72, 0.03)
  );
  pointer-events: none;
}
.editorial-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.editorial-copy h1 {
  font-family: "Cormorant Garamond";
  font-size: clamp(58px, 6vw, 88px);
  font-weight: 500;
  line-height: 0.98;
  max-width: 760px;
  margin: 18px 0 26px;
}
.editorial-copy .hero-text {
  font-size: 14px;
  max-width: 630px;
  color: #c7c0b6;
}
.hero-meta {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-meta span {
  font-size: 9px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #aaa298;
}
.hero-meta b {
  color: var(--gold2);
  margin-right: 7px;
}
.hero-photo-shell {
  position: relative;
  width: min(480px, 100%);
  margin-left: auto;
}
.hero-photo-placeholder {
  height: 585px;
  background: linear-gradient(145deg, #c7ab79 0%, #846a45 48%, #2a231c 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  overflow: hidden;
}
.hero-photo-placeholder:before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-photo-placeholder span {
  font-family: "Cormorant Garamond";
  font-size: 88px;
  color: rgba(255, 255, 255, 0.78);
}
.hero-photo-placeholder small {
  position: absolute;
  bottom: 42px;
  font-size: 9px;
  letter-spacing: 2px;
  color: #fff;
}
.floating-card {
  position: absolute;
  left: -58px;
  bottom: 46px;
  background: #f7f2e9;
  color: #171512;
  width: 260px;
  padding: 24px 26px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
}
.floating-card strong {
  display: block;
  font-family: "Cormorant Garamond";
  font-size: 25px;
  line-height: 1.05;
  margin-top: 7px;
}
.identity-section {
  background: #f7f2e9;
}
.identity-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 90px;
  align-items: center;
}
.identity-photo {
  max-width: 475px;
}
.portrait-editorial {
  position: relative;
  padding: 0 0 34px 34px;
}
.portrait-editorial:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 68%;
  height: 74%;
  border: 1px solid var(--gold);
}
.portrait-editorial-placeholder {
  height: 560px;
  position: relative;
  background: linear-gradient(160deg, #ded2c0, #95846e 52%, #51463b);
  display: grid;
  place-items: center;
  color: #fff;
  z-index: 1;
}
.portrait-editorial-placeholder span {
  font-family: "Cormorant Garamond";
  font-size: 68px;
}
.portrait-editorial-placeholder small {
  position: absolute;
  bottom: 24px;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.portrait-caption {
  position: absolute;
  z-index: 2;
  right: -32px;
  bottom: 7px;
  background: #171512;
  color: #fff;
  padding: 15px 25px;
  font-family: "Cormorant Garamond";
  font-size: 20px;
}
.identity-copy p {
  color: #6f685f;
  margin-bottom: 17px;
}
.source-note {
  font-size: 10px !important;
  border-left: 2px solid var(--gold);
  padding-left: 14px;
  margin-top: 25px;
}
.text-cta {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  font-size: 10px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  font-weight: 700;
  color: #1a1815;
}
.text-cta span {
  font-size: 18px;
  color: var(--gold);
}
.expertise-section {
  background: #fffdf9;
}
.centered {
  text-align: center;
  margin: 0 auto 46px;
}
.centered h2 {
  margin-top: 10px;
}
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #d8cdbc;
  border-bottom: 1px solid #d8cdbc;
}
.expertise-card {
  padding: 34px 28px;
  min-height: 255px;
  border-right: 1px solid #d8cdbc;
}
.expertise-card:last-child {
  border-right: 0;
}
.expertise-card span {
  font-family: "Cormorant Garamond";
  font-size: 42px;
  color: #c5aa78;
}
.expertise-card h3 {
  font-family: "Cormorant Garamond";
  font-size: 29px;
  margin: 8px 0 12px;
}
.expertise-card p {
  font-size: 11px;
  color: #776f65;
}
.courses-showcase {
  background: #12110f;
  color: #fff;
}
.showcase-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 42px;
}
.showcase-head h2 {
  font-family: "Cormorant Garamond";
  font-weight: 500;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
  max-width: 730px;
  margin-top: 12px;
}
.light-link {
  color: #fff;
}
.visual-course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.visual-course-card {
  background: #1c1a17;
  border: 1px solid #332f29;
  transition: 0.3s;
}
.visual-course-card:hover {
  transform: translateY(-7px);
  border-color: #8f7140;
}
.course-cover {
  height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.course-cover:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, 0.58));
}
.course-cover span,
.course-cover small {
  position: relative;
  z-index: 1;
}
.course-cover span {
  font-family: "Cormorant Garamond";
  font-size: 65px;
  color: #fff;
}
.course-cover small {
  font-size: 8px;
  letter-spacing: 2px;
  color: #f2dfb8;
}
.cover-1 {
  background: linear-gradient(145deg, #7b6242, #c09a5b);
}
.cover-2 {
  background: linear-gradient(145deg, #28231d, #8b6b42);
}
.cover-3 {
  background: linear-gradient(145deg, #5d4c39, #a78654);
}
.visual-course-body {
  padding: 26px;
}
.visual-course-body h3 {
  font-family: "Cormorant Garamond";
  font-size: 32px;
}
.visual-course-body p {
  font-size: 11px;
  color: #aaa298;
  min-height: 58px;
  margin: 8px 0 20px;
}
.visual-actions {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #39342d;
  padding-top: 15px;
}
.visual-actions a {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: #d9d1c5;
}
.visual-actions .buy-link {
  color: #d8b775;
  font-weight: 700;
}
.course-bottom {
  text-align: center;
  margin-top: 36px;
}
.featured-course-section {
  background: #e9dfcf;
}
.featured-course {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: #fffdf9;
  border: 1px solid #d6c8b4;
  box-shadow: 0 20px 60px rgba(49, 39, 28, 0.09);
}
.featured-course-art {
  min-height: 430px;
  background: linear-gradient(145deg, #171512, #56452f);
  color: #fff;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.featured-course-art span {
  font-size: 9px;
  letter-spacing: 2px;
  color: #d6b675;
}
.featured-course-art strong {
  font-family: "Cormorant Garamond";
  font-size: 58px;
  line-height: 0.87;
  margin: 13px 0;
}
.featured-course-art small {
  font-size: 9px;
  letter-spacing: 1.4px;
  color: #c6beb3;
}
.featured-course-copy {
  padding: 58px 62px;
  align-self: center;
}
.featured-course-copy h2 {
  font-family: "Cormorant Garamond";
  font-size: clamp(42px, 5vw, 61px);
  font-weight: 500;
  line-height: 1;
  margin: 12px 0 20px;
}
.featured-course-copy p {
  font-size: 12px;
  color: #71695f;
  max-width: 600px;
}
.featured-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.agenda-preview {
  background: #f8f4ed;
}
.agenda-preview-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 36px;
}
.agenda-preview-head h2 {
  font-family: "Cormorant Garamond";
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 500;
  line-height: 1;
  margin-top: 9px;
}
.agenda-cards {
  border-top: 1px solid #d7caba;
}
.agenda-card {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid #d7caba;
}
.agenda-date strong {
  display: block;
  font-family: "Cormorant Garamond";
  font-size: 40px;
  color: #b28b48;
}
.agenda-date span {
  font-size: 8px;
  letter-spacing: 1.2px;
  color: #8a8178;
}
.agenda-card h3 {
  font-family: "Cormorant Garamond";
  font-size: 29px;
}
.agenda-card p {
  font-size: 11px;
  color: #756d64;
}
.agenda-card > a {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9d7b42;
  font-weight: 700;
}
.social-band {
  background: #171512;
  color: #fff;
  padding: 70px 0;
}
.social-band-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}
.social-band h2 {
  font-family: "Cormorant Garamond";
  font-size: clamp(38px, 4vw, 55px);
  font-weight: 500;
  line-height: 1;
  max-width: 800px;
  margin-top: 10px;
}
@media (max-width: 960px) {
  .editorial-hero-grid,
  .identity-grid,
  .featured-course {
    grid-template-columns: 1fr;
  }
  .editorial-visual {
    order: -1;
  }
  .hero-photo-shell {
    margin: auto;
    max-width: 430px;
  }
  .floating-card {
    left: 15px;
  }
  .identity-photo {
    margin: auto;
  }
  .expertise-grid {
    grid-template-columns: 1fr 1fr;
  }
  .expertise-card:nth-child(2) {
    border-right: 0;
  }
  .expertise-card:nth-child(-n + 2) {
    border-bottom: 1px solid #d8cdbc;
  }
  .visual-course-grid {
    grid-template-columns: 1fr 1fr;
  }
  .agenda-card {
    grid-template-columns: 120px 1fr;
  }
  .agenda-card > a {
    grid-column: 2;
  }
  .social-band-grid {
    grid-template-columns: 1fr;
  }
  .showcase-head,
  .agenda-preview-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .featured-course-copy {
    padding: 45px;
  }
}
@media (max-width: 650px) {
  .editorial-hero {
    padding: 62px 0 70px;
  }
  .editorial-copy h1 {
    font-size: 50px;
  }
  .hero-photo-placeholder {
    height: 430px;
  }
  .floating-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: -1px;
  }
  .hero-meta {
    gap: 14px;
  }
  .identity-grid {
    gap: 45px;
  }
  .portrait-editorial {
    padding-left: 18px;
  }
  .portrait-editorial-placeholder {
    height: 430px;
  }
  .portrait-caption {
    right: -5px;
  }
  .expertise-grid,
  .visual-course-grid {
    grid-template-columns: 1fr;
  }
  .expertise-card {
    border-right: 0;
    border-bottom: 1px solid #d8cdbc;
  }
  .course-cover {
    height: 210px;
  }
  .featured-course-art {
    min-height: 340px;
  }
  .featured-course-copy {
    padding: 34px 26px;
  }
  .agenda-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .agenda-card > a {
    grid-column: auto;
  }
  .social-band {
    padding: 55px 0;
  }
}
