:root {
  --bg: #fff8fb;
  --surface: #ffffff;
  --surface-soft: #fff0f5;
  --ink: #2e2530;
  --muted: #716570;
  --brand: #7c3153;
  --brand-dark: #541e39;
  --rose: #b95b7d;
  --line: #ead8df;
  --cream: #fffaf5;
  --shadow: 0 18px 55px rgba(92, 39, 62, .12);
  --radius: 24px;
  --container: 1180px;
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

h1, h2, h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.15;
  color: var(--brand-dark);
}
h1 { font-size: clamp(2.6rem, 5vw, 4.65rem); }
h2 { font-size: clamp(2.25rem, 4vw, 3.6rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1rem; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 920px); }

.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 9999;
  padding: 10px 16px; background: var(--brand); color: #fff; border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 250, 252, .9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(124, 49, 83, .1);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 10px 35px rgba(67, 27, 46, .12); }
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  min-width: 205px; text-decoration: none;
}
.brand-mark, .footer-logo {
  width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 12px; color: #fff; font-weight: 800;
  background: linear-gradient(135deg, var(--brand-dark), var(--rose));
  box-shadow: 0 8px 18px rgba(124,49,83,.2);
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: .98rem; letter-spacing: .08em; color: var(--brand-dark); }
.brand-copy small { margin-top: 5px; font-size: .68rem; letter-spacing: .23em; color: var(--muted); }

.main-nav { flex: 1; }
.nav-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; justify-content: center; align-items: center; gap: 4px;
}
.nav-list > li { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 5px;
  border: 0; background: transparent; text-decoration: none;
  color: var(--ink); padding: 10px 11px; font: 600 .84rem "DM Sans", sans-serif;
  cursor: pointer; white-space: nowrap;
}
.nav-link:hover, .nav-link.active, .nav-link:focus-visible { color: var(--brand); }
.dropdown-toggle span { font-size: 1rem; transition: transform .2s; }
.has-dropdown.open .dropdown-toggle span { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; left: 0; top: calc(100% + 12px);
  min-width: 215px; padding: 8px; margin: 0;
  list-style: none; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: .2s ease;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: block; padding: 9px 11px; border-radius: 9px;
  text-decoration: none; color: var(--ink); font-size: .84rem;
}
.dropdown-menu a:hover, .dropdown-menu a:focus-visible { background: var(--surface-soft); color: var(--brand); }

.demo-btn, .primary-btn, .secondary-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 999px; text-decoration: none; font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.demo-btn { padding: 11px 18px; background: var(--brand-dark); color: #fff; font-size: .82rem; }
.demo-btn:hover, .primary-btn:hover, .secondary-btn:hover { transform: translateY(-2px); }
.header-demo { min-width: 122px; }

.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 5px; background: var(--brand-dark); }

.section-shell { padding-top: calc(var(--header-height) + 42px); }
.hero { padding-bottom: 55px; }
.hero-slider { position: relative; }
.hero-track { position: relative; min-height: 610px; }
.hero-slide {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 610px; border-radius: 30px; overflow: hidden;
  background: var(--surface); box-shadow: var(--shadow);
  position: absolute; inset: 0; opacity: 0; pointer-events: none;
  transform: translateX(30px); transition: opacity .55s ease, transform .55s ease;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; transform: translateX(0); }
.hero-media { position: relative; min-height: 610px; overflow: hidden; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(55, 20, 37, .02), rgba(55, 20, 37, .22));
}
.hero-media img { height: 100%; object-fit: cover; }
.media-caption {
  position: absolute; z-index: 2; left: 28px; bottom: 25px;
  color: #fff; font-size: .7rem; letter-spacing: .2em; font-weight: 700;
  padding: 8px 12px; border-radius: 999px; background: rgba(57, 24, 40, .55);
}
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(35px, 6vw, 78px); background:
  radial-gradient(circle at 85% 20%, rgba(222, 157, 181, .25), transparent 28%),
  var(--cream);
}
.eyebrow {
  display: inline-block; margin-bottom: 16px;
  color: var(--rose); font-size: .72rem; font-weight: 800; letter-spacing: .2em;
}
/*.hero-content h1, .hero-content h2 { max-width: 570px; }*/
.hero-content em { color: var(--rose); font-style: normal; }
.hero-content p { /*max-width: 540px;*/ color: var(--muted); font-size: 1.03rem; margin: 24px 0 32px; }
.primary-btn { width: fit-content; padding: 13px 22px; background: var(--brand); color: #fff; box-shadow: 0 10px 25px rgba(124,49,83,.2); }
.secondary-btn { width: fit-content; padding: 12px 21px; border: 1px solid var(--brand); color: var(--brand); background: transparent; }
.secondary-btn:hover { background: var(--brand); color: #fff; }
.slider-controls {
  display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 22px;
}
.circle-btn, .carousel-arrow {
  border: 1px solid var(--line); background: #fff; color: var(--brand);
  cursor: pointer; display: grid; place-items: center;
  box-shadow: 0 7px 20px rgba(92,39,62,.08);
}
.circle-btn { width: 42px; height: 42px; border-radius: 50%; }
.slider-dots { display: flex; gap: 7px; }
.dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: #d8b9c7; cursor: pointer; }
.dot.is-active { width: 25px; border-radius: 99px; background: var(--brand); }

.content-section { padding: 100px 0; position: relative; }
.abstract-section { background: linear-gradient(180deg, var(--bg), #fff); }
.section-heading { margin-bottom: 42px; }
.section-heading.centered { text-align: center; }
.section-heading h2 span { display: block; color: var(--rose); }
.section-lead { color: var(--brand); font-weight: 600; font-size: 1.05rem; margin-top: 12px; }
.centered .section-lead { max-width: 720px; margin: 12px auto 0; }
.prose-card {
  background: rgba(255,255,255,.75); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(28px, 5vw, 54px);
  box-shadow: 0 14px 40px rgba(92,39,62,.06);
}
.prose-card p:last-child { margin-bottom: 0; }
.prose-card p + p { margin-top: 20px; }

.spark-section { background: #fbeef3; }
.split-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}
.split-copy { padding: 25px 0; }
.split-copy .section-lead { margin-bottom: 24px; }
.split-copy p:not(.section-lead) { color: var(--muted); }
.watercolor-frame {
  position: relative; padding: 13px; border-radius: 28px;
  background: #fff; box-shadow: var(--shadow); transform: rotate(1.5deg);
}
.watercolor-frame img { aspect-ratio: 1 / 1; object-fit: cover; border-radius: 20px; }

.image-note {
  position: absolute; left: 28px; bottom: 28px;
  padding: 9px 14px; background: rgba(255,255,255,.88); border-radius: 999px;
  color: var(--brand-dark); font-size: .76rem; font-weight: 700;
}

.evidence-section { background: #fff; }
/*Emon Edit*/
.split-heading {
  display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: start;
}
.split-heading > div:last-child { color: var(--muted); }
.carousel-shell { display: grid; grid-template-columns: 52px 1fr 52px; align-items: center; gap: 14px; }
.carousel-arrow { width: 44px; height: 44px; border-radius: 50%; font-size: 1.15rem; }
.carousel-arrow:hover { background: var(--brand); color: #fff; }
.carousel-viewport { overflow: hidden; }
.carousel-track {
  display: flex; gap: 18px; transition: transform .45s ease;
}
.evidence-card, .award-card {
  flex: 0 0 calc((100% - 54px) / 4);
  text-decoration: none; background: var(--surface);
  border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  box-shadow: 0 10px 28px rgba(92,39,62,.07);
  transition: transform .2s ease, box-shadow .2s ease;
}
.evidence-card:hover, .award-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.evidence-card > img { aspect-ratio: 4/3; object-fit: cover; }
.card-body { padding: 21px; }
.card-kicker, .step-label {
  color: var(--rose); font-size: .67rem; font-weight: 800; letter-spacing: .13em;
}
.card-body h3 { margin: 8px 0 10px; }
.card-body p { color: var(--muted); font-size: .87rem; line-height: 1.65; }
.center-action { display: flex; justify-content: center; margin-top: 34px; }

.operates-section { background: linear-gradient(180deg, #fff8fb, #fdf1f5); }
.steps-grid {
  margin-top: 50px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.step-card {
  min-height: 325px; position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: 22px; padding: 92px 24px 25px;
  background: #fff; box-shadow: 0 10px 28px rgba(92,39,62,.06);
}
.step-badge {
  position: absolute; top: 0; left: 0; right: 0; height: 78px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  background: var(--brand-dark); color: #fff;
}
.step-badge strong { font-family: "Playfair Display", serif; font-size: 1.85rem; line-height: .95; }
.step-badge span { font-size: .65rem; text-transform: uppercase; letter-spacing: .16em; opacity: .8; }
.step-label { display: block; margin-bottom: 12px; }
.step-card p { color: var(--muted); font-size: .88rem; }

.awards-section { background: #fff; }
.award-card { flex-basis: calc((100% - 36px) / 3); }
.award-image { position: relative; }
.award-image img { aspect-ratio: 16/9; object-fit: cover; }
.award-year {
  position: absolute; right: 14px; top: 14px; padding: 6px 10px;
  border-radius: 999px; color: #fff; background: rgba(84,30,57,.85);
  font-size: .7rem; font-weight: 800;
}
.awards-heading { margin-bottom: 35px; }

.site-footer { padding: 70px 0 22px; background: #311c29; color: #e9dfe4; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr .75fr 1fr .7fr; gap: 42px;
  align-items: start; padding-bottom: 48px;
}
.footer-brand { text-decoration: none; color: #fff; font: 700 1.25rem "Playfair Display", serif; }
.footer-brand span { display: block; color: #d89ab1; font: 700 .68rem "DM Sans", sans-serif; letter-spacing: .24em; margin-top: 4px; }
.footer-tagline { color: #cbbbc3; font-size: .8rem; margin-top: 18px; }
.footer-col { display: flex; flex-direction: column; gap: 7px; }
.footer-col h3 { color: #fff; font: 700 .8rem "DM Sans", sans-serif; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 8px; }
.footer-col a, .footer-col span { color: #cbbbc3; text-decoration: none; font-size: .83rem; }
.footer-col a:hover { color: #fff; }
.footer-branding { display: flex; flex-direction: column; align-items: flex-end; gap: 15px; }
.footer-logo { background: linear-gradient(135deg, #d07e9d, #7c3153); }
.social-links { display: flex; gap: 8px; }
.social-links a {
  width: 35px; height: 35px; border: 1px solid #644552; border-radius: 50%;
  display: grid; place-items: center; text-decoration: none; color: #fff; font-size: .8rem;
}
.social-links a:hover { background: #fff; color: var(--brand-dark); }
.footer-bottom {
  padding-top: 20px; border-top: 1px solid #523642;
  display: flex; justify-content: space-between; gap: 20px;
  color: #aF9ba4; font-size: .72rem;
}
.footer-bottom p { margin: 0; }

.back-to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 900;
  width: 43px; height: 43px; border: 0; border-radius: 50%;
  background: var(--brand); color: #fff; box-shadow: var(--shadow);
  cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

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

@media (max-width: 1120px) {
  .header-inner { gap: 12px; }
  .brand { min-width: 180px; }
  .nav-link { padding-inline: 7px; font-size: .77rem; }
  .header-demo { min-width: 105px; padding-inline: 12px; }
}

@media (max-width: 960px) {
  :root { --header-height: 72px; }
  .header-inner { justify-content: space-between; }
  .menu-toggle { display: block; z-index: 1002; }
  .header-demo { order: 2; }
  .brand { order: 0; }
  .menu-toggle { order: 1; margin-left: auto; }
  /*.main-nav {
    position:static ; top: var(--header-height); left: 0; right: 0; bottom: 0;
    padding: 22px 20px; background: rgba(255,248,251,.98);
    transform: translateX(100%); transition: transform .3s ease; overflow-y: auto;
  }*/
  
  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    z-index: 1001;

    padding: 22px 20px;
    background: rgba(255, 248, 251, .98);

    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
}
  
  
  
  
  .main-nav.is-open { transform: translateX(0); }
  .nav-list { display: block; }
  .nav-list > li { border-bottom: 1px solid var(--line); }
  .nav-link { width: 100%; justify-content: space-between; padding: 16px 5px; font-size: .95rem; }
  .dropdown-menu {
    position: static; min-width: 0; box-shadow: none; border: 0; border-radius: 0;
    display: none; opacity: 1; visibility: visible; transform: none; padding: 0 0 10px 12px;
    background: transparent;
  }
  .has-dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu a { padding: 10px; }
  .hero-track, .hero-slide { min-height: 680px; }
  .hero-slide { grid-template-columns: 1fr; }
  .hero-media { min-height: 320px; max-height: 320px; }
  .hero-content { min-height: 360px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .evidence-card { flex-basis: calc((100% - 18px) / 2); }
  .award-card { flex-basis: calc((100% - 18px) / 2); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-branding { align-items: flex-start; }
}

@media (max-width: 680px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .brand-copy strong { font-size: .82rem; }
  .brand-copy small { font-size: .57rem; }
  .brand-mark { width: 42px; height: 42px; }
  .header-demo { display: none; }
  .section-shell { padding-top: calc(var(--header-height) + 25px); }
  .hero { padding-bottom: 35px; }
  .hero-track, .hero-slide { min-height: 675px; }
  .hero-media { min-height: 275px; max-height: 275px; }
  .hero-content { min-height: 400px; padding: 30px 25px; }
  h1 { font-size: clamp(2.25rem, 12vw, 3.2rem); }
  h2 { font-size: clamp(2rem, 10vw, 2.8rem); }
  .content-section { padding: 70px 0; }
  .split-layout, .split-heading { grid-template-columns: 1fr; gap: 35px; }
  .spark-section .split-layout { display: flex; flex-direction: column-reverse; }
  .watercolor-frame { width: 100%; transform: none; }
  .carousel-shell { grid-template-columns: 40px 1fr 40px; gap: 7px; }
  .carousel-arrow { width: 38px; height: 38px; }
  .evidence-card, .award-card { flex-basis: 100%; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 280px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-branding { align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* =========================================================
   FUTURE PAGE-SPECIFIC CSS
   Add only new rules here for subsequent pages.
   Keep the shared header/footer styles above unchanged.
   ========================================================= */


/* =========================================================
   HOW IT WORKS PAGE
   ========================================================= */

.how-it-works-page-section {
  padding-top: calc(var(--header-height) + 80px);
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(222, 157, 181, .16),
      transparent 30%
    ),
    var(--bg);
}

.how-tagline,
.story-tagline {
  margin-top: 18px;
  color: var(--brand-dark);
  font-family: "DM Sans", sans-serif;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.how-intro-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.how-intro-image {
  min-width: 0;
}

.how-intro-copy {
  color: var(--muted);
}

.how-intro-copy h3 {
  margin-bottom: 25px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.how-intro-copy p {
  margin-bottom: 20px;
}

.how-intro-copy p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   HOW IT WORKS PAGE - STORY SECTION
   ========================================================= */

.story-section {
  background:
    linear-gradient(
      180deg,
      #fff8fb 0%,
      #fbeef3 100%
    );
}

.story-introduction {
  width: min(100%, 800px);
  margin: 25px auto 0;
  color: var(--muted);
}

.story-carousel {
  margin-top: 48px;
}

/* HOW IT WORKS PAGE
   Three story cards are visible on desktop.
   The existing .award-card styling supplies the
   borders, shadows, image treatment and responsive behavior.
*/

.story-card {
  flex: 0 0 calc((100% - 36px) / 3);
}

.story-card .award-image {
  overflow: hidden;
}

.story-card .award-image img {
  transition: transform .45s ease;
}

.story-card:hover .award-image img {
  transform: scale(1.045);
}

.story-closing {
  width: min(100%, 760px);
  margin: 60px auto 0;
  padding: 35px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .75);
  box-shadow: 0 12px 35px rgba(92, 39, 62, .06);
}

.story-closing h3 {
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.story-closing p {
  margin: 0;
  color: var(--muted);
}


/* =========================================================
   HOW IT WORKS PAGE TABLET
   ========================================================= */

@media (max-width: 960px) {

  .how-intro-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .how-intro-image {
    max-width: 700px;
    margin-inline: auto;
  }

  .how-intro-copy {
    max-width: 850px;
    margin-inline: auto;
  }

  .story-card {
    flex-basis: calc((100% - 18px) / 2);
  }

}


/* =========================================================
   HOW IT WORKS PAGE MOBILE
   ========================================================= */

@media (max-width: 680px) {

  .how-it-works-page-section {
    padding-top: calc(var(--header-height) + 45px);
  }

  .how-tagline,
  .story-tagline {
    font-size: .68rem;
    line-height: 1.6;
  }

  .how-intro-layout {
    gap: 35px;
  }

  .story-introduction {
    font-size: .92rem;
  }

  .story-card {
    flex-basis: 100%;
  }

  .story-closing {
    padding: 27px 20px;
  }

}

/* How It Works — process diagram placement */

.how-intro-copy h3 {
  margin-bottom: 28px;
}

.how-intro-image {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 35px;
}

.how-intro-image .watercolor-frame {
  transform: none;
  padding: 10px;
}

.how-intro-image .watercolor-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

.how-intro-copy {
  grid-column: 1 / -1;
  max-width: 920px;
  margin: 0 auto;
}

/* Story cards — preserve the top of square images */

.story-card .award-image {
  height: 260px;
  overflow: hidden;
}

.story-card .award-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* =========================================================
   CORE COMPONENTS PAGE
   ========================================================= */

/* ---------------------------------------------------------
   Page introduction / section heading
   --------------------------------------------------------- */

.core-components-page {
  padding-top: 35px;
}

.core-components-section {
  padding: 80px 0;
}

.core-components-section + .core-components-section {
  padding-top: 40px;
}

.core-components-heading {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 42px;
}

.core-components-heading h2 {
  margin-bottom: 12px;
}

.core-components-heading h3 {
  margin: 0 auto;
  max-width: 900px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--muted);
}


/* ---------------------------------------------------------
   Component overview image
   The image sits immediately below the subtitle.
   --------------------------------------------------------- */

.components-overview-image {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto 48px;
}

.components-overview-image .watercolor-frame {
  padding: 10px;
  transform: none;
}

.components-overview-image img {
  width: 100%;
    height: auto;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
}


/* ---------------------------------------------------------
   Component introduction text
   --------------------------------------------------------- */

.components-introduction {
  max-width: 1050px;
  margin: 0 auto;
}

.components-introduction p {
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
}

.components-introduction p:last-child {
  margin-bottom: 0;
}


/* ---------------------------------------------------------
   Individual component sections
   --------------------------------------------------------- */

.component-detail {
  padding: 90px 0;
  position: relative;
}

.component-detail:nth-of-type(even) {
  background: rgba(255, 240, 247, 0.38);
}

.component-detail-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 42px;
}

.component-detail-header h2 {
  margin-bottom: 12px;
}

.component-detail-header h3 {
  margin: 0 auto;
  max-width: 800px;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.55;
  font-weight: 500;
  color: var(--muted);
}


/* ---------------------------------------------------------
   Component diagram / screenshot
   The image is deliberately elongated and sits directly
   after the section subtitle.
   --------------------------------------------------------- */

.component-detail-image {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 45px;
}

.component-detail-image .watercolor-frame {
  padding: 10px;
  transform: none;
}

.component-detail-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: contain;
  object-position: center;
  border-radius: 16px;
}


/* ---------------------------------------------------------
   Component content
   --------------------------------------------------------- */

.component-detail-content {
  max-width: 950px;
  margin: 0 auto;
}

.component-detail-content p {
  margin: 0 0 22px;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
}

.component-detail-content p:last-child {
  margin-bottom: 0;
}


/* ---------------------------------------------------------
   Highlighted cost / feature information
   --------------------------------------------------------- */

.component-detail-content strong {
  color: var(--plum);
}

.component-cost {
  margin-top: 28px;
  padding: 20px 24px;
  border: 1px solid rgba(126, 57, 94, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 8px 25px rgba(95, 45, 72, 0.06);
}

.component-cost p {
  margin: 0;
}


/* ---------------------------------------------------------
   RL Web Application
   --------------------------------------------------------- */

.webapp-detail .component-detail-image img {
  max-height: 650px;
}


/* ---------------------------------------------------------
   Mobile applications
   --------------------------------------------------------- */

.mobile-apps-detail .component-detail-image img {
  max-height: 650px;
}


/* ---------------------------------------------------------
   Responsive adjustments
   --------------------------------------------------------- */

@media (max-width: 960px) {

  .core-components-section {
    padding: 65px 0;
  }

  .component-detail {
    padding: 70px 0;
  }

  .components-overview-image {
    margin-bottom: 38px;
  }

  .component-detail-image {
    margin-bottom: 38px;
  }

  .components-introduction,
  .component-detail-content {
    max-width: 900px;
  }
}


@media (max-width: 680px) {

  .core-components-page {
    padding-top: 20px;
  }

  .core-components-section {
    padding: 50px 0;
  }

  .core-components-section + .core-components-section {
    padding-top: 25px;
  }

  .component-detail {
    padding: 55px 0;
  }

  .core-components-heading {
    margin-bottom: 30px;
  }

  .core-components-heading h3 {
    font-size: 1.05rem;
    line-height: 1.55;
  }

  .components-overview-image {
    margin-bottom: 30px;
  }

  .components-overview-image .watercolor-frame,
  .component-detail-image .watercolor-frame {
    padding: 7px;
    border-radius: 14px;
  }

  .components-overview-image img,
  .component-detail-image img {
    width: 100%;
    height: auto;
    max-height: none;
    border-radius: 11px;
    object-fit: contain;
  }

  .component-detail-header {
    margin-bottom: 30px;
  }

  .component-detail-header h3 {
    font-size: 1.05rem;
    line-height: 1.55;
  }

  .component-detail-image {
    margin-bottom: 30px;
  }

  .components-introduction p,
  .component-detail-content p {
    font-size: 0.96rem;
    line-height: 1.8;
  }

  .component-cost {
    padding: 17px 18px;
    border-radius: 14px;
  }
}


/* ---------------------------------------------------------
   Accessibility / reduced motion
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

  .component-detail-image img,
  .components-overview-image img {
    transition: none;
  }
}

/* =========================================================
   ANURAG'S JOURNEY PAGE
   Page-specific CSS only
   ========================================================= */

.anurag-journey-page {
  overflow-x: hidden;
}


/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.anurag-hero {
  position: relative;
  padding: calc(var(--header-height) + 75px) 0 80px;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(185, 91, 125, .10),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 75%,
      rgba(124, 49, 83, .07),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #fffaf7 0%,
      #f8edf2 100%
    );
  overflow: hidden;
}

.anurag-hero::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(124, 49, 83, .08);
  top: -180px;
  right: -100px;
}

.anurag-hero::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(124, 49, 83, .07);
  bottom: -120px;
  left: -70px;
}

.anurag-hero .container {
  position: relative;
  z-index: 1;
}

.anurag-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.anurag-hero-content .eyebrow {
  display: block;
  margin-bottom: 18px;
}

.anurag-hero h1 {
  margin-bottom: 18px;
}

.anurag-hero-subtitle {
  max-width: 720px;
  margin: 0 auto 25px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.4;
  color: var(--brand);
}

.anurag-hero-intro {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
}


/* ---------------------------------------------------------
   INTRODUCTION
   --------------------------------------------------------- */

.anurag-introduction {
  padding-top: 70px;
  padding-bottom: 35px;
}

.anurag-intro-card {
  max-width: 950px;
  margin-inline: auto;
  text-align: center;
}

.anurag-intro-card p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--muted);
}


/* ---------------------------------------------------------
   JOURNEY SECTIONS
   --------------------------------------------------------- */

.journey-section {
  position: relative;
  padding: 100px 0;
}

.journey-section:nth-child(odd) {
  background: rgba(255, 240, 247, .28);
}

.roots-section {
  background: var(--bg);
}

.tradition-section {
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(185, 91, 125, .08),
      transparent 30%
    ),
    #fffdfb;
}

.promise-section {
  background:
    linear-gradient(
      135deg,
      #f9eff3 0%,
      #fff9f6 55%,
      #f2edf4 100%
    );
}

.impact-section {
  background: rgba(255, 240, 247, .32);
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(180px, .55fr) minmax(0, 1.7fr);
  gap: 70px;
  align-items: start;
}

.journey-number {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4.5rem, 9vw, 8rem);
  line-height: .9;
  font-weight: 600;
  color: rgba(124, 49, 83, .10);
  letter-spacing: -.05em;
}

.journey-section-heading {
  margin-bottom: 28px;
}

.journey-section-heading .eyebrow {
  display: block;
  margin-bottom: 13px;
}

.journey-section-heading h2 {
  margin: 0;
}

.journey-copy {
  max-width: 800px;
}

.journey-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}


/* ---------------------------------------------------------
   HIGHLIGHT
   --------------------------------------------------------- */

.journey-highlight {
  margin-top: 35px;
  padding: 25px 28px;
  border-left: 4px solid var(--rose);
  border-radius: 0 14px 14px 0;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 12px 35px rgba(92, 39, 62, .06);
}

.journey-highlight strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.18rem;
  color: var(--brand-dark);
}

.journey-highlight span {
  display: block;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.7;
}


/* ---------------------------------------------------------
   TRADITION + SCIENCE
   --------------------------------------------------------- */

.science-symbol {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 35px;
  padding: 23px 25px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .72);
}

.science-symbol-mark {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f3dfe7;
  color: var(--brand);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
}

.science-symbol-text strong {
  display: block;
  margin-bottom: 5px;
  color: var(--brand-dark);
  font-size: .95rem;
}

.science-symbol-text span {
  display: block;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}


/* ---------------------------------------------------------
   BROTHER'S PROMISE
   --------------------------------------------------------- */

.promise-card {
  margin-top: 38px;
  padding: 35px 38px;
  border: 1px solid rgba(124, 49, 83, .10);
  border-radius: 20px;
  background: rgba(255, 255, 255, .75);
  box-shadow: 0 18px 50px rgba(92, 39, 62, .08);
}

.promise-quote-mark {
  height: 35px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4rem;
  line-height: .7;
  color: rgba(124, 49, 83, .28);
}

.promise-card p {
  margin: 15px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--brand-dark);
}

.rajlakshmi-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 23px;
  padding: 8px 15px;
  border-radius: 999px;
  background: #f2dfe7;
  color: var(--brand);
  font-size: .82rem;
  font-weight: 700;
}


/* ---------------------------------------------------------
   BROADER SOCIAL IMPACT
   --------------------------------------------------------- */

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

.impact-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .76);
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.impact-card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 17px;
  border-radius: 12px;
  background: #f1dce5;
  color: var(--brand);
  font-size: 1.2rem;
  font-weight: 700;
}

.impact-card h3 {
  margin-bottom: 10px;
}

.impact-card p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.75;
}


/* ---------------------------------------------------------
   CLOSING
   --------------------------------------------------------- */

.journey-closing {
  padding: 100px 0;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(185, 91, 125, .10),
      transparent 40%
    ),
    var(--bg);
}

.journey-closing-card {
  padding: 55px 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf7;
  text-align: center;
  box-shadow: 0 18px 55px rgba(92, 39, 62, .07);
}

.journey-closing-card .eyebrow {
  display: block;
  margin-bottom: 14px;
}

.journey-closing-card h2 {
  margin-bottom: 18px;
}

.journey-closing-card p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--muted);
  line-height: 1.85;
}

.journey-closing-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px;
}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 960px) {

  .journey-section {
    padding: 80px 0;
  }

  .journey-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .journey-number {
    position: static;
    font-size: 4.5rem;
  }

  .journey-content {
    max-width: 900px;
  }

  .impact-grid {
    grid-template-columns: 1fr 1fr;
  }

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 680px) {

  .anurag-hero {
    padding-top: calc(var(--header-height) + 45px);
    padding-bottom: 55px;
  }

  .anurag-hero-subtitle {
    font-size: 1.3rem;
  }

  .anurag-hero-intro {
    font-size: .94rem;
  }

  .anurag-introduction {
    padding-top: 50px;
    padding-bottom: 20px;
  }

  .journey-section {
    padding: 65px 0;
  }

  .journey-layout {
    gap: 20px;
  }

  .journey-number {
    font-size: 3.7rem;
  }

  .journey-copy p {
    font-size: .96rem;
    line-height: 1.8;
  }

  .journey-highlight,
  .promise-card {
    padding: 24px 21px;
  }

  .science-symbol {
    align-items: flex-start;
    padding: 20px;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .impact-card {
    padding: 25px;
  }

  .journey-closing {
    padding: 65px 0;
  }

  .journey-closing-card {
    padding: 40px 24px;
  }

  .journey-closing-actions {
    flex-direction: column;
  }

  .journey-closing-actions .primary-btn,
  .journey-closing-actions .secondary-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

}

/* =========================================================
   THE RG KAR IMPACT PAGE
   Page-specific CSS
   ========================================================= */

.rg-kar-impact-page {
  overflow-x: hidden;
}


/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.rg-kar-hero {
  position: relative;
  padding: calc(var(--header-height) + 75px) 0 80px;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(185, 91, 125, .11),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 75%,
      rgba(124, 49, 83, .08),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #fffaf7 0%,
      #f8edf2 100%
    );
  overflow: hidden;
}

.rg-kar-hero::before {
  content: "";
  position: absolute;
  width: 370px;
  height: 370px;
  border-radius: 50%;
  border: 1px solid rgba(124, 49, 83, .08);
  top: -190px;
  right: -100px;
}

.rg-kar-hero::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(124, 49, 83, .07);
  bottom: -120px;
  left: -70px;
}

.rg-kar-hero .container {
  position: relative;
  z-index: 1;
}

.rg-kar-hero-content {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.rg-kar-hero-content .eyebrow {
  display: block;
  margin-bottom: 18px;
}

.rg-kar-hero h1 {
  margin-bottom: 18px;
}

.rg-kar-subtitle {
  max-width: 720px;
  margin: 0 auto 25px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.4;
  color: var(--brand);
}

.rg-kar-hero-intro {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
}


/* ---------------------------------------------------------
   STORY SECTIONS
   Desktop:
   Image LEFT / Text RIGHT
   --------------------------------------------------------- */

.rg-kar-story-section {
  padding: 105px 0;
  background: var(--bg);
}

.rg-kar-story-alt {
  background:
    linear-gradient(
      135deg,
      rgba(255, 240, 247, .52),
      rgba(255, 250, 247, .85)
    );
}

.rg-kar-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 75px;
  align-items: center;
}


/* ---------------------------------------------------------
   IMAGE
   --------------------------------------------------------- */

.rg-kar-story-media {
  min-width: 0;
}

.rg-kar-image-frame {
  position: relative;
  padding: 10px;
  transform: none;
  background: rgba(255, 255, 255, .72);
}

.rg-kar-image-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

.rg-kar-image-caption {
  position: absolute;
  left: 25px;
  bottom: 25px;
  max-width: calc(100% - 50px);
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(46, 37, 48, .82);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.4;
}


/* ---------------------------------------------------------
   TEXT
   --------------------------------------------------------- */

.rg-kar-story-content {
  min-width: 0;
}

.rg-kar-story-content .eyebrow {
  display: block;
  margin-bottom: 15px;
}

.rg-kar-story-content h2 {
  margin-bottom: 25px;
}

.rg-kar-story-content p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.rg-kar-story-content p:last-of-type {
  margin-bottom: 0;
}


/* ---------------------------------------------------------
   CALLOUT
   --------------------------------------------------------- */

.rg-kar-callout {
  margin-top: 30px;
  padding: 23px 25px;
  border-left: 4px solid var(--rose);
  border-radius: 0 14px 14px 0;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 12px 35px rgba(92, 39, 62, .06);
}

.rg-kar-callout strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  color: var(--brand-dark);
}

.rg-kar-callout span {
  display: block;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.65;
}


/* ---------------------------------------------------------
   RESEARCH PRINCIPLES
   --------------------------------------------------------- */

.research-principles {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.research-principle {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .65);
}

.research-number {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f1dce5;
  color: var(--brand);
  font-size: .75rem;
  font-weight: 700;
}

.research-principle strong {
  display: block;
  color: var(--brand-dark);
  font-size: .9rem;
}

.research-principle div span {
  display: block;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.45;
}


/* ---------------------------------------------------------
   SYSTEM EVOLUTION
   --------------------------------------------------------- */

.system-evolution {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 15px;
  margin-top: 32px;
}

.evolution-step {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, .72);
  text-align: center;
}

.evolution-step span {
  margin-bottom: 5px;
  color: var(--rose);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.evolution-step strong {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--brand-dark);
  font-size: 1.15rem;
}

.evolution-step small {
  margin-top: 5px;
  color: var(--muted);
  font-size: .76rem;
}

.evolution-arrow {
  color: var(--rose);
  font-size: 1.5rem;
  font-weight: 700;
}


/* ---------------------------------------------------------
   CLOSING
   --------------------------------------------------------- */

.rg-kar-closing {
  padding: 100px 0;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(185, 91, 125, .10),
      transparent 40%
    ),
    var(--bg);
}

.rg-kar-closing-card {
  padding: 55px 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf7;
  box-shadow: 0 18px 55px rgba(92, 39, 62, .07);
  text-align: center;
}

.rg-kar-closing-card .eyebrow {
  display: block;
  margin-bottom: 14px;
}

.rg-kar-closing-card h2 {
  margin-bottom: 18px;
}

.rg-kar-closing-card p {
  max-width: 760px;
  margin: 0 auto 30px;
  color: var(--muted);
  line-height: 1.85;
}

.rg-kar-closing-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px;
}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 960px) {

  .rg-kar-story-section {
    padding: 80px 0;
  }

  .rg-kar-story-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .rg-kar-story-media {
    max-width: 750px;
    width: 100%;
    margin-inline: auto;
  }

  .rg-kar-story-content {
    max-width: 850px;
    margin-inline: auto;
  }

  .rg-kar-image-frame img {
    height: 430px;
  }

}


/* ---------------------------------------------------------
   MOBILE
   Image FIRST, text BELOW
   --------------------------------------------------------- */

@media (max-width: 680px) {

  .rg-kar-hero {
    padding-top: calc(var(--header-height) + 45px);
    padding-bottom: 55px;
  }

  .rg-kar-subtitle {
    font-size: 1.3rem;
  }

  .rg-kar-hero-intro {
    font-size: .94rem;
  }

  .rg-kar-story-section {
    padding: 65px 0;
  }

  .rg-kar-story-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .rg-kar-story-media {
    order: 1;
    width: 100%;
  }

  .rg-kar-story-content {
    order: 2;
    width: 100%;
  }

  .rg-kar-image-frame {
    padding: 8px;
  }

  .rg-kar-image-frame img {
    height: 300px;
    border-radius: 14px;
  }

  .rg-kar-image-caption {
    left: 18px;
    bottom: 18px;
    max-width: calc(100% - 36px);
    font-size: .58rem;
  }

  .rg-kar-story-content h2 {
    margin-bottom: 20px;
  }

  .rg-kar-story-content p {
    font-size: .94rem;
    line-height: 1.8;
  }

  .rg-kar-callout {
    padding: 20px;
  }

  .research-principle {
    align-items: flex-start;
  }

  .system-evolution {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .evolution-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

  .evolution-step {
    min-height: 105px;
  }

  .rg-kar-closing {
    padding: 65px 0;
  }

  .rg-kar-closing-card {
    padding: 40px 24px;
  }

  .rg-kar-closing-actions {
    flex-direction: column;
  }

  .rg-kar-closing-actions .primary-btn,
  .rg-kar-closing-actions .secondary-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

}

/* =========================================================
   AWARDS PAGE
   Add this section to the end of css/style.css
   ========================================================= */

/* ---------- Hero Slider ---------- */

.awards-hero {
  position: relative;
  background: #101719;
}

.awards-hero-slider {
  position: relative;
  height: min(720px, 78vh);
  min-height: 540px;
  overflow: hidden;
}

.awards-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  transition:
    opacity 0.7s ease,
    transform 5s ease;
}

.awards-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.awards-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.awards-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(10, 18, 19, 0.84) 0%,
      rgba(10, 18, 19, 0.55) 44%,
      rgba(10, 18, 19, 0.18) 100%
    ),
    linear-gradient(
      0deg,
      rgba(10, 18, 19, 0.72) 0%,
      transparent 48%
    );
}

.awards-slide-caption {
  position: absolute;
  left: 50%;
  bottom: 125px;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 40px));
  color: #fff;
}

.awards-slide-caption .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.awards-slide-caption h1,
.awards-slide-caption h2 {
  max-width: 760px;
  margin: 12px 0 8px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.awards-slide-caption p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.88;
}

.awards-slider-control {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  background: rgba(0,0,0,0.16);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, transform 0.25s ease;
}

.awards-slider-control:hover {
  background: rgba(0,0,0,0.34);
  transform: translateY(-50%) scale(1.05);
}

.awards-slider-prev {
  left: 28px;
}

.awards-slider-next {
  right: 28px;
}

.awards-slider-dots {
  position: absolute;
  z-index: 5;
  bottom: 38px;
  left: 50%;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.awards-slider-dots button {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: rgba(255,255,255,0.38);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.awards-slider-dots button.active {
  width: 58px;
  background: #fff;
}


/* ---------- Intro ---------- */

.awards-intro-section {
  padding-bottom: 55px;
}

.awards-intro-section .section-heading {
  max-width: 900px;
  margin-inline: auto;
}


/* ---------- Award Detail Cards ---------- */

.awards-detail-section {
  padding-top: 55px;
  padding-bottom: 55px;
}

.awards-detail-alt {
  background: rgba(237, 232, 220, 0.24);
}

.awards-detail-card {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.2fr);
  gap: clamp(42px, 6vw, 90px);
  align-items: center;
  padding: clamp(28px, 4vw, 58px);
}

.awards-detail-media {
  min-width: 0;
}

.awards-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(25, 35, 35, 0.12);
  background: #e7e0d4;
}

.awards-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.35);
  pointer-events: none;
}

.awards-image-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.awards-image-label {
  position: absolute;
  right: 15px;
  bottom: 15px;
  padding: 8px 13px;
  border-radius: 3px;
  background: rgba(15, 27, 28, 0.84);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.awards-detail-content h2,
.awards-text-content h2,
.awards-admin-heading h2 {
  margin: 8px 0 20px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
  color: #182324;
}

.awards-detail-content p,
.awards-text-content p,
.awards-admin-content p {
  color: #4e5a59;
  line-height: 1.82;
}

.awards-detail-content strong,
.awards-text-content strong,
.awards-admin-content strong {
  color: #263433;
}


/* ---------- Award Links ---------- */

.award-links {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(38, 52, 51, 0.13);
}

.award-links-label {
  display: block;
  margin-bottom: 13px;
  color: #697574;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.award-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}

.award-link-list .primary-btn,
.award-link-list .secondary-btn {
  margin: 0;
}

.award-link-list .text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 8px 3px;
  color: #304d4a;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(48, 77, 74, 0.28);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.award-link-list .text-link:hover {
  color: #142f2d;
  border-color: #142f2d;
}


/* ---------- Highlight ---------- */

.award-highlight-box {
  display: flex;
  gap: 18px;
  margin: 26px 0;
  padding: 21px 22px;
  border-left: 3px solid #536d69;
  background: rgba(232, 226, 214, 0.52);
}

.highlight-icon {
  flex: 0 0 auto;
  font-size: 1.35rem;
  line-height: 1;
}

.award-highlight-box strong {
  display: block;
  margin-bottom: 5px;
  font-family: "Playfair Display", serif;
  font-size: 1.18rem;
}

.award-highlight-box p {
  margin: 0;
}


/* ---------- Text Card / Regional Congress ---------- */

.awards-text-card {
  position: relative;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 40px;
  padding: clamp(32px, 5vw, 70px);
}

.awards-number {
  font-family: "Playfair Display", serif;
  font-size: clamp(4rem, 9vw, 7.5rem);
  line-height: 0.85;
  color: rgba(53, 76, 73, 0.13);
}

.awards-text-content {
  max-width: 900px;
}

.award-quote {
  display: flex;
  gap: 14px;
  margin: 30px 0;
  padding: 20px 25px;
  border-left: 2px solid rgba(55, 79, 76, 0.35);
}

.award-quote > span {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  line-height: 0.8;
  color: rgba(55, 79, 76, 0.45);
}

.award-quote p {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #425351;
}


/* ---------- Administrative Acclaim ---------- */

.awards-admin-card {
  padding: clamp(30px, 5vw, 65px);
}

.awards-admin-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.awards-admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: clamp(45px, 7vw, 100px);
  align-items: start;
}

.admin-recognition-points {
  display: grid;
  gap: 15px;
  margin-top: 30px;
}

.admin-recognition-point {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  align-items: start;
  padding: 17px 0;
  border-top: 1px solid rgba(38, 52, 51, 0.13);
}

.admin-recognition-point:last-child {
  border-bottom: 1px solid rgba(38, 52, 51, 0.13);
}

.admin-recognition-point > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #314d4a;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
}

.admin-recognition-point strong {
  display: block;
  margin-bottom: 5px;
}

.admin-recognition-point p {
  margin: 0;
  font-size: 0.92rem;
}

.awards-admin-visual {
  position: relative;
  padding: 15px 0;
}

.admin-visual-card {
  padding: 28px;
  background: rgba(229, 224, 214, 0.62);
  border: 1px solid rgba(40, 57, 55, 0.08);
}

.admin-visual-icon {
  display: block;
  margin-bottom: 18px;
  font-size: 1.8rem;
}

.admin-visual-card strong {
  display: block;
  margin-bottom: 9px;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
}

.admin-visual-card p {
  margin: 0;
  font-size: 0.91rem;
  line-height: 1.7;
}

.admin-visual-line {
  width: 1px;
  height: 45px;
  margin: 0 auto;
  background: rgba(49, 77, 74, 0.3);
}


/* ---------- Timeline ---------- */

.awards-timeline-section {
  background: rgba(245, 242, 235, 0.55);
}

.awards-timeline {
  position: relative;
  max-width: 940px;
  margin: 55px auto 0;
}

.awards-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 126px;
  width: 1px;
  background: rgba(49, 77, 74, 0.2);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 100px 52px minmax(0, 1fr);
  gap: 0;
  align-items: start;
  min-height: 150px;
}

.timeline-year {
  padding-top: 3px;
  color: #65716f;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-align: right;
  text-transform: uppercase;
}

.timeline-marker {
  position: relative;
  z-index: 2;
  width: 13px;
  height: 13px;
  margin: 5px auto 0;
  border: 3px solid #f5f2eb;
  border-radius: 50%;
  background: #3f5e5a;
  box-shadow: 0 0 0 1px rgba(49,77,74,0.28);
}

.timeline-content {
  padding: 0 0 45px 25px;
}

.timeline-content h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  color: #263433;
}

.timeline-content p {
  max-width: 650px;
  margin: 0;
  color: #596664;
  line-height: 1.7;
}


/* ---------- YouTube Videos ---------- */

.awards-video-section {
  padding-top: 80px;
  padding-bottom: 100px;
}

.awards-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.awards-video-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(38, 52, 51, 0.1);
  box-shadow: 0 18px 45px rgba(30, 42, 41, 0.07);
}

.awards-video-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.awards-video-thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #172323;
}

.awards-video-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.awards-video-trigger:hover .awards-video-thumbnail img {
  transform: scale(1.045);
}

.awards-video-thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 21, 21, 0.28), transparent 55%);
}

.video-play-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  padding-left: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  color: #233b39;
  font-size: 1.25rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, background 0.25s ease;
}

.awards-video-trigger:hover .video-play-button {
  transform: translate(-50%, -50%) scale(1.08);
  background: #fff;
}

.awards-video-copy {
  padding: 28px 30px 32px;
}

.awards-video-copy h3 {
  margin: 8px 0 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
  line-height: 1.15;
  color: #243332;
}

.awards-video-copy p {
  margin: 0;
  color: #596664;
  line-height: 1.7;
}

.video-text-trigger {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 20px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(48,77,74,0.35);
  background: transparent;
  color: #304d4a;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}


/* ---------- Video Modal ---------- */

.awards-video-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.awards-video-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.awards-video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 16, 0.82);
  backdrop-filter: blur(7px);
}

.awards-video-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(1000px, 100%);
  max-height: calc(100vh - 60px);
  overflow: auto;
  padding: 25px;
  background: #f7f5ef;
  box-shadow: 0 30px 90px rgba(0,0,0,0.35);
}

.awards-video-close {
  position: absolute;
  z-index: 4;
  top: 13px;
  right: 13px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(17,29,29,0.82);
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.awards-video-modal-heading {
  padding: 5px 55px 22px 3px;
}

.awards-video-modal-heading h2 {
  margin: 6px 0 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #233332;
}

.awards-video-player {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0b1111;
}

.awards-video-player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}


/* ---------- Responsive ---------- */

@media (max-width: 960px) {

  .awards-hero-slider {
    min-height: 500px;
    height: 68vh;
  }

  .awards-slide-caption {
    bottom: 105px;
  }

  .awards-slide-caption h1,
  .awards-slide-caption h2 {
    max-width: 650px;
  }

  .awards-detail-card {
    gap: 35px;
  }

  .awards-admin-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .awards-admin-visual {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    align-items: center;
  }

  .admin-visual-line {
    width: 40px;
    height: 1px;
  }

}


@media (max-width: 680px) {

  .awards-hero-slider {
    min-height: 510px;
    height: 72vh;
  }

  .awards-slide-overlay {
    background:
      linear-gradient(
        0deg,
        rgba(10, 18, 19, 0.86) 0%,
        rgba(10, 18, 19, 0.38) 58%,
        rgba(10, 18, 19, 0.18) 100%
      );
  }

  .awards-slide-caption {
    bottom: 105px;
    width: calc(100% - 34px);
  }

  .awards-slide-caption h1,
  .awards-slide-caption h2 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .awards-slider-control {
    top: auto;
    bottom: 34px;
    width: 42px;
    height: 42px;
    transform: none;
  }

  .awards-slider-control:hover {
    transform: scale(1.04);
  }

  .awards-slider-prev {
    left: 18px;
  }

  .awards-slider-next {
    right: 18px;
  }

  .awards-slider-dots {
    bottom: 52px;
  }

  .awards-detail-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .awards-detail-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 22px;
  }

  .awards-detail-media {
    order: 1;
  }

  .awards-detail-content {
    order: 2;
  }

  .awards-image-frame img {
    aspect-ratio: 4 / 3;
  }

  .awards-text-card {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 28px 22px;
  }

  .awards-number {
    font-size: 4rem;
  }

  .awards-admin-card {
    padding: 28px 22px;
  }

  .awards-admin-visual {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .admin-visual-line {
    width: 1px;
    height: 35px;
  }

  .awards-timeline {
    margin-top: 40px;
  }

  .awards-timeline::before {
    left: 68px;
  }

  .timeline-item {
    grid-template-columns: 52px 32px minmax(0, 1fr);
  }

  .timeline-year {
    font-size: 0.67rem;
    text-align: left;
    padding-top: 3px;
  }

  .timeline-content {
    padding-left: 15px;
    padding-bottom: 38px;
  }

  .timeline-content h3 {
    font-size: 1.2rem;
  }

  .timeline-content p {
    font-size: 0.9rem;
  }

  .awards-video-section {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .awards-video-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 35px;
  }

  .awards-video-copy {
    padding: 23px 22px 26px;
  }

  .awards-video-copy h3 {
    font-size: 1.4rem;
  }

  .awards-video-modal {
    padding: 15px;
  }

  .awards-video-modal-dialog {
    padding: 16px;
  }

  .awards-video-modal-heading {
    padding-right: 40px;
  }

  .awards-video-close {
    top: 9px;
    right: 9px;
    width: 34px;
    height: 34px;
  }

}


@media (prefers-reduced-motion: reduce) {

  .awards-slide,
  .awards-slide > img,
  .awards-video-thumbnail img,
  .video-play-button {
    transition: none;
  }

}

/* =========================================================
   GLOBAL CONTENT FRAME
   Flat, clean cards — no rotation / slanted effect
   ========================================================= */

.watercolor-frame {
  position: relative;
  background: #fff;
  border: 1px solid rgba(38, 52, 51, 0.10);
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(30, 42, 41, 0.06);

  /* Explicitly prevent the slanted-card effect */
  transform: none !important;
  rotate: none !important;
  skew: none !important;
}

.watercolor-frame::before,
.watercolor-frame::after {
  transform: none !important;
  rotate: none !important;
  skew: none !important;
}

/* =========================================================
   AWARDS PAGE — REVISED NUMBERED SECTIONS
   Add this to the END of css/style.css

   These rules replace the previous left-image layout for
   Awards 01, 02 and 03.

   The image now sits INSIDE the content column, directly
   below the heading, while the large number occupies the
   left side.
   ========================================================= */


/* ---------- Numbered Award Section ---------- */

.awards-numbered-section {
  padding-top: 55px;
  padding-bottom: 55px;
}

.awards-numbered-card {
  padding: clamp(30px, 5vw, 65px);
}

.awards-numbered-layout {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: clamp(38px, 6vw, 80px);
  align-items: start;
}


/* ---------- Large Section Number ---------- */

.awards-section-number {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
}

.awards-section-number span {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 0.82;
  letter-spacing: -0.06em;
  color: rgba(53, 76, 73, 0.14);
}


/* ---------- Main Content ---------- */

.awards-numbered-content {
  min-width: 0;
  max-width: 940px;
}

.awards-numbered-content h2 {
  margin: 8px 0 25px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.06;
  color: #182324;
}

.awards-numbered-content p {
  color: #4e5a59;
  line-height: 1.82;
}

.awards-numbered-content strong {
  color: #263433;
}


/* ---------- Image Below Heading ---------- */

.awards-inline-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 0 30px;
  background: #e7e0d4;
  border-radius: 4px;
  box-shadow: 0 16px 38px rgba(25, 35, 35, 0.10);
}

.awards-inline-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.awards-inline-image:hover img {
  transform: scale(1.018);
}

.awards-inline-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.awards-inline-caption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 7px 12px;
  border-radius: 3px;
  background: rgba(15, 27, 28, 0.84);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}


/* ---------- Highlight Box ---------- */

.awards-numbered-content .award-highlight-box {
  display: flex;
  gap: 18px;
  margin: 27px 0;
  padding: 21px 22px;
  border-left: 3px solid #536d69;
  background: rgba(232, 226, 214, 0.52);
}

.awards-numbered-content .award-highlight-box .highlight-icon {
  flex: 0 0 auto;
  font-size: 1.35rem;
  line-height: 1;
}

.awards-numbered-content .award-highlight-box strong {
  display: block;
  margin-bottom: 5px;
  font-family: "Playfair Display", serif;
  font-size: 1.18rem;
}

.awards-numbered-content .award-highlight-box p {
  margin: 0;
}


/* ---------- Quote ---------- */

.awards-numbered-content .award-quote {
  display: flex;
  gap: 14px;
  margin: 30px 0;
  padding: 20px 25px;
  border-left: 2px solid rgba(55, 79, 76, 0.35);
}

.awards-numbered-content .award-quote > span {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  line-height: 0.8;
  color: rgba(55, 79, 76, 0.45);
}

.awards-numbered-content .award-quote p {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #425351;
}


/* ---------- Links ---------- */

.awards-numbered-content .award-links {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(38, 52, 51, 0.13);
}

.awards-numbered-content .award-links-label {
  display: block;
  margin-bottom: 13px;
  color: #697574;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.awards-numbered-content .award-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}

.awards-numbered-content .award-link-list .primary-btn,
.awards-numbered-content .award-link-list .secondary-btn {
  margin: 0;
}

.awards-numbered-content .award-link-list .text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 8px 3px;
  color: #304d4a;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(48, 77, 74, 0.28);
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.awards-numbered-content .award-link-list .text-link:hover {
  color: #142f2d;
  border-color: #142f2d;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 960px) {

  .awards-numbered-layout {
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 32px;
  }

  .awards-section-number span {
    font-size: clamp(4.5rem, 10vw, 6.5rem);
  }

  .awards-inline-image img {
    aspect-ratio: 16 / 8.5;
  }

}


@media (max-width: 680px) {

  .awards-numbered-section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .awards-numbered-card {
    padding: 27px 22px;
  }

  /*
     Keep the number and content visually connected,
     but place the number above the content on small screens.
  */

  .awards-numbered-layout {
    display: block;
  }

  .awards-section-number {
    display: block;
    padding: 0;
    margin-bottom: 18px;
    text-align: left;
  }

  .awards-section-number span {
    font-size: 4.4rem;
    line-height: 0.8;
  }

  .awards-numbered-content h2 {
    margin-bottom: 20px;
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .awards-inline-image {
    margin-bottom: 25px;
  }

  .awards-inline-image img {
    aspect-ratio: 16 / 10;
  }

  .awards-inline-caption {
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
    padding: 6px 9px;
    font-size: 0.58rem;
  }

  .awards-numbered-content .award-highlight-box {
    padding: 18px;
  }

  .awards-numbered-content .award-quote {
    padding: 18px;
  }

}

/* =========================================================
   MEDIA COVERAGE PAGE
   Add this to the END of css/style.css
   ========================================================= */


/* =========================================================
   HERO
   ========================================================= */

.media-coverage-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1d2929;
}

.media-coverage-hero-image {
  position: absolute;
  inset: 0;
}

.media-coverage-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-coverage-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(16, 29, 29, 0.88) 0%,
      rgba(16, 29, 29, 0.68) 45%,
      rgba(16, 29, 29, 0.28) 100%
    );
}

.media-coverage-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding-top: 100px;
  padding-bottom: 100px;
  color: #fff;
}

.media-coverage-hero-content .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.media-coverage-hero-content h1 {
  max-width: 800px;
  margin: 18px 0 24px;
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.media-coverage-hero-content p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.8;
}


/* =========================================================
   INTRO
   ========================================================= */

.media-intro-section {
  padding-bottom: 45px;
}


/* =========================================================
   NUMBERED SECTIONS
   ========================================================= */

.media-numbered-section {
  padding-top: 55px;
  padding-bottom: 55px;
}

.media-numbered-card {
  padding: clamp(30px, 5vw, 65px);
  overflow: hidden;
}

.media-numbered-layout {
  display: grid;
  grid-template-columns: 125px minmax(0, 1fr);
  gap: clamp(38px, 6vw, 80px);
  align-items: start;
}

.media-section-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 5px;
}

.media-section-number span {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: rgba(53, 76, 73, 0.14);
}

.media-section-number small {
  margin-top: 22px;
  color: #71807d;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.media-numbered-content {
  min-width: 0;
  max-width: 950px;
}

.media-numbered-content h2 {
  margin: 8px 0 20px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
  color: #182324;
}

.media-section-intro {
  max-width: 820px;
  margin-bottom: 40px;
  color: #586664;
  font-size: 1.03rem;
  line-height: 1.8;
}


/* =========================================================
   PRINT / ONLINE ARTICLE ITEMS
   ========================================================= */

.media-print-item,
.media-online-item {
  padding: 38px 0;
  border-top: 1px solid rgba(38, 52, 51, 0.14);
}

.media-print-item:first-of-type,
.media-online-item:first-of-type {
  padding-top: 10px;
  border-top: 0;
}

.media-item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  margin-bottom: 11px;
}

.media-publication {
  color: #304d4a;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-date {
  color: #7b8583;
  font-size: 0.76rem;
  font-weight: 600;
}

.media-print-item h3,
.media-online-item h3 {
  max-width: 850px;
  margin: 0 0 23px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.18;
  color: #202d2c;
}

.media-print-item p,
.media-online-item p {
  max-width: 880px;
  margin: 0 0 17px;
  color: #53615f;
  line-height: 1.82;
}

.media-print-item p:last-of-type,
.media-online-item p:last-of-type {
  margin-bottom: 0;
}


/* =========================================================
   DEMO IMAGES
   ========================================================= */

.media-demo-image {
  position: relative;
  width: 100%;
  margin: 0 0 27px;
  overflow: hidden;
  background: #e6e0d6;
  border-radius: 3px;
  box-shadow: 0 14px 35px rgba(27, 38, 37, 0.09);
}

.media-demo-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7.8;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.media-demo-image:hover img {
  transform: scale(1.015);
}

.media-demo-image span {
  position: absolute;
  right: 13px;
  bottom: 13px;
  padding: 7px 11px;
  background: rgba(18, 29, 29, 0.82);
  color: #fff;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* =========================================================
   ONLINE NEWS BUTTON
   ========================================================= */

.media-view-news {
  margin-top: 24px;
}


/* =========================================================
   VIDEO SECTION
   ========================================================= */

.media-video-section {
  padding-bottom: 80px;
}

.media-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 35px;
}

.media-video-card {
  min-width: 0;
  overflow: hidden;
  background: #f5f1e9;
  border: 1px solid rgba(39, 54, 53, 0.1);
  border-radius: 4px;
  box-shadow: 0 13px 32px rgba(27, 38, 37, 0.07);
}

.media-video-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.media-video-thumbnail {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1b2929;
}

.media-video-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.media-video-trigger:hover .media-video-thumbnail img {
  transform: scale(1.035);
}

.media-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #263b39;
  font-size: 1.15rem;
  padding-left: 3px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.media-video-trigger:hover .media-video-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: #fff;
}

.media-video-copy {
  padding: 23px 22px 25px;
}

.media-video-copy h3 {
  margin: 8px 0 12px;
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  line-height: 1.18;
  color: #20302f;
}

.media-video-copy p {
  margin: 0;
  color: #5b6866;
  font-size: 0.92rem;
  line-height: 1.7;
}

.media-video-watch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(48, 77, 74, 0.35);
  background: transparent;
  color: #304d4a;
  font: inherit;
  font-size: 0.83rem;
  font-weight: 700;
  cursor: pointer;
}

.media-video-watch:hover {
  color: #142f2d;
  border-color: #142f2d;
}

.media-video-note {
  margin: 25px 0 0;
  padding: 16px 18px;
  border-left: 3px solid rgba(48, 77, 74, 0.35);
  background: rgba(232, 226, 214, 0.45);
  color: #697573;
  font-size: 0.82rem;
  line-height: 1.65;
}


/* =========================================================
   VIDEO MODAL
   ========================================================= */

body.media-video-modal-open {
  overflow: hidden;
}

.media-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.media-video-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.media-video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 18, 0.84);
  backdrop-filter: blur(5px);
}

.media-video-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 1050px);
  max-height: calc(100vh - 50px);
  overflow-y: auto;
  padding: clamp(24px, 4vw, 42px);
  background: #f7f3eb;
  border-radius: 4px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.media-video-modal-close {
  position: absolute;
  top: 15px;
  right: 18px;
  z-index: 4;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(34, 50, 49, 0.14);
  border-radius: 50%;
  background: rgba(247, 243, 235, 0.9);
  color: #253533;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}

.media-video-modal-close:hover {
  background: #fff;
}

.media-video-modal-heading {
  padding-right: 50px;
  margin-bottom: 22px;
}

.media-video-modal-heading h2 {
  margin: 7px 0 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  color: #1d2c2b;
}

.media-video-player-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111c1c;
}

.media-video-player-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.media-video-local-fallback {
  margin-top: 16px;
  padding: 17px 19px;
  background: rgba(226, 220, 210, 0.65);
  color: #596664;
  font-size: 0.88rem;
  line-height: 1.65;
}

.media-video-local-fallback p {
  margin: 0 0 14px;
}


/* =========================================================
   CLOSING
   ========================================================= */

.media-closing-section {
  padding-top: 20px;
  padding-bottom: 100px;
}

.media-closing-card {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(35px, 6vw, 65px);
  text-align: center;
  background: #e9e3d8;
  border: 1px solid rgba(45, 61, 59, 0.1);
}

.media-closing-card h2 {
  margin: 10px 0 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  color: #20302f;
}

.media-closing-card p {
  max-width: 720px;
  margin: 0 auto 27px;
  color: #586664;
  line-height: 1.8;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 960px) {

  .media-numbered-layout {
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 32px;
  }

  .media-section-number span {
    font-size: clamp(4.5rem, 10vw, 6.5rem);
  }

  .media-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


@media (max-width: 680px) {

  .media-coverage-hero {
    min-height: 500px;
  }

  .media-coverage-hero-content {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .media-coverage-hero-content h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .media-numbered-section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .media-numbered-card {
    padding: 27px 22px;
  }

  .media-numbered-layout {
    display: block;
  }

  .media-section-number {
    display: block;
    margin-bottom: 24px;
    padding: 0;
    text-align: left;
  }

  .media-section-number span {
    font-size: 4.4rem;
    line-height: 0.8;
  }

  .media-section-number small {
    margin-top: 12px;
    text-align: left;
  }

  .media-numbered-content h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .media-demo-image img {
    aspect-ratio: 16 / 10;
  }

  .media-demo-image span {
    right: 9px;
    bottom: 9px;
    max-width: calc(100% - 18px);
    font-size: 0.55rem;
  }

  .media-video-grid {
    grid-template-columns: 1fr;
  }

  .media-video-modal {
    padding: 12px;
  }

  .media-video-modal-dialog {
    max-height: calc(100vh - 24px);
    padding: 22px 17px 18px;
  }

  .media-video-modal-close {
    top: 9px;
    right: 9px;
    width: 37px;
    height: 37px;
  }

  .media-video-modal-heading {
    padding-right: 42px;
  }

  .media-video-player-wrap {
    aspect-ratio: 16 / 10;
  }

}

 /* =========================================================
   COMPLEMENTING ERSS-112 PAGE
   Page-specific styles
   ========================================================= */

:root {
  --erss-ink: #17231d;
  --erss-green: #26382f;
  --erss-green-soft: #354a3f;
  --erss-gold: #a08252;
  --erss-gold-light: #d7c5a5;
  --erss-paper: #f7f6f1;
  --erss-paper-dark: #ecece5;
  --erss-white: #ffffff;
  --erss-muted: #6c756f;
  --erss-line: rgba(23, 35, 29, 0.13);
  --erss-shadow: 0 25px 70px rgba(23, 35, 29, 0.10);
}


/* =========================================================
   PAGE BASE
   ========================================================= */

.erss-page {
  background: var(--erss-paper);
  color: var(--erss-ink);
}

.erss-page *,
.erss-page *::before,
.erss-page *::after {
  box-sizing: border-box;
}


/* =========================================================
   HERO
   ========================================================= */

.erss-hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(160, 130, 82, 0.16),
      transparent 27%
    ),
    radial-gradient(
      circle at 12% 90%,
      rgba(38, 56, 47, 0.08),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #f7f6f1 0%,
      #eef0eb 100%
    );
  border-bottom: 1px solid var(--erss-line);
}

.erss-hero::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  right: -230px;
  top: -230px;
  border: 1px solid rgba(160, 130, 82, 0.20);
  border-radius: 50%;
}

.erss-hero::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -120px;
  top: -120px;
  border: 1px dashed rgba(38, 56, 47, 0.13);
  border-radius: 50%;
}

.erss-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 0 110px;
}

.erss-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 25px;
  color: var(--erss-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
}

.erss-hero-eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.erss-hero-title {
  max-width: 950px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.5rem, 7.5vw, 7.3rem);
  font-weight: 600;
  line-height: 0.93;
  letter-spacing: -0.055em;
}

.erss-hero-title span {
  display: block;
  color: var(--erss-gold);
  font-style: italic;
}

.erss-hero-subtitle {
  max-width: 700px;
  margin: 35px 0 0;
  color: var(--erss-muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.8;
}

.erss-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: 42px;
  padding: 15px 21px;
  border: 1px solid rgba(160, 130, 82, 0.30);
  background: rgba(255, 255, 255, 0.56);
  font-size: 0.84rem;
  font-weight: 600;
}

.erss-hero-badge strong {
  color: var(--erss-gold);
}

.erss-hero-symbol {
  position: absolute;
  z-index: 1;
  right: 7%;
  top: 50%;
  width: 260px;
  height: 260px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(38, 56, 47, 0.15);
  border-radius: 50%;
}

.erss-hero-symbol::before {
  content: "";
  position: absolute;
  width: 188px;
  height: 188px;
  border: 1px dashed rgba(160, 130, 82, 0.38);
  border-radius: 50%;
}

.erss-hero-symbol::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 188px;
  background: rgba(160, 130, 82, 0.17);
  transform: rotate(45deg);
}

.erss-symbol-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.erss-symbol-plus {
  display: block;
  color: var(--erss-gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 5rem;
  line-height: 0.9;
}

.erss-symbol-text {
  display: block;
  margin-top: 13px;
  color: var(--erss-muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}


/* =========================================================
   INTRODUCTION
   ========================================================= */

.erss-introduction {
  padding: 120px 0 100px;
  background: var(--erss-white);
}

.erss-intro-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.65fr;
  gap: 90px;
  align-items: start;
}

.erss-section-label {
  position: relative;
  padding-left: 55px;
  color: var(--erss-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.erss-section-label::before {
  content: "01";
  position: absolute;
  left: 0;
  top: -13px;
  color: rgba(160, 130, 82, 0.30);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.55rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}

.erss-intro-content h2 {
  max-width: 850px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 4.7vw, 4.5rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.erss-intro-content h2 em {
  color: var(--erss-gold);
  font-style: italic;
}

.erss-intro-content p {
  max-width: 790px;
  margin: 30px 0 0;
  color: var(--erss-muted);
  font-size: 1rem;
  line-height: 1.9;
}


/* =========================================================
   BIG STATEMENT
   ========================================================= */

.erss-statement {
  padding: 25px 0 115px;
  background: var(--erss-white);
}

.erss-statement-card {
  position: relative;
  overflow: hidden;
  padding: 75px 8%;
  background: var(--erss-ink);
  color: var(--erss-white);
  box-shadow: var(--erss-shadow);
}

.erss-statement-card::before {
  content: "+";
  position: absolute;
  right: 4%;
  top: -90px;
  color: rgba(255, 255, 255, 0.035);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22rem;
  line-height: 1;
}

.erss-statement-kicker {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  color: var(--erss-gold-light);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
}

.erss-statement-card h2 {
  position: relative;
  z-index: 2;
  max-width: 950px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
}

.erss-statement-card h2 span {
  color: var(--erss-gold-light);
  font-style: italic;
}

.erss-statement-card p {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1rem;
  line-height: 1.85;
}

.erss-statement-rule {
  position: relative;
  z-index: 2;
  width: 75px;
  height: 1px;
  margin-top: 40px;
  background: var(--erss-gold-light);
}


/* =========================================================
   COMPARISON
   ========================================================= */

.erss-comparison {
  padding: 125px 0;
  background:
    linear-gradient(
      rgba(38, 56, 47, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(38, 56, 47, 0.035) 1px,
      transparent 1px
    ),
    var(--erss-paper);
  background-size: 48px 48px;
}

.erss-comparison-header {
  display: grid;
  grid-template-columns: 0.75fr 1.65fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 65px;
}

.erss-comparison-header h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.erss-comparison-header h2 em {
  color: var(--erss-gold);
  font-style: italic;
}

.erss-comparison-header p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--erss-muted);
  line-height: 1.8;
}


/* =========================================================
   COMPARISON CARDS
   ========================================================= */

.erss-comparison-cards {
  display: grid;
  gap: 2px;
  background: var(--erss-line);
  border: 1px solid var(--erss-line);
}

.erss-comparison-item {
  display: grid;
  grid-template-columns: 0.82fr 1fr 1fr;
  background: var(--erss-white);
}

.erss-comparison-column {
  min-height: 175px;
  padding: 31px 32px;
  border-right: 1px solid var(--erss-line);
}

.erss-comparison-column:last-child {
  border-right: 0;
}

.erss-dimension {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
}

.erss-dimension-number {
  color: rgba(160, 130, 82, 0.52);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.5rem;
  line-height: 0.9;
}

.erss-dimension-title {
  max-width: 180px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
}

.erss-comparison-column h4 {
  margin: 0 0 13px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
}

.erss-er-column h4 {
  color: var(--erss-muted);
}

.erss-rl-column {
  position: relative;
  background:
    linear-gradient(
      135deg,
      rgba(160, 130, 82, 0.065),
      transparent
    ),
    var(--erss-white);
}

.erss-rl-column::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 3px;
  background: var(--erss-gold);
}

.erss-rl-column h4 {
  color: var(--erss-green);
}

.erss-comparison-column p {
  margin: 0;
  color: var(--erss-muted);
  font-size: 0.89rem;
  line-height: 1.75;
}


/* =========================================================
   OPERATIONAL SECTION
   ========================================================= */

.erss-operation {
  padding: 125px 0;
  background: var(--erss-white);
}

.erss-operation-intro {
  max-width: 850px;
  margin-bottom: 65px;
}

.erss-operation-intro .erss-section-label {
  margin-bottom: 28px;
}

.erss-operation-intro .erss-section-label::before {
  content: "02";
}

.erss-operation-intro h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.erss-operation-intro h2 em {
  color: var(--erss-gold);
  font-style: italic;
}

.erss-operation-intro p {
  max-width: 750px;
  margin: 28px 0 0;
  color: var(--erss-muted);
  line-height: 1.85;
}


/* =========================================================
   OPERATIONAL FLOW
   ========================================================= */

.erss-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--erss-line);
  border-bottom: 1px solid var(--erss-line);
}

.erss-flow-card {
  position: relative;
  min-height: 330px;
  padding: 38px 30px;
  border-right: 1px solid var(--erss-line);
}

.erss-flow-card:last-child {
  border-right: 0;
}

.erss-flow-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 3;
  right: -15px;
  top: 50%;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid var(--erss-line);
  border-radius: 50%;
  background: var(--erss-white);
  color: var(--erss-gold);
  font-size: 0.8rem;
}

.erss-flow-number {
  display: block;
  margin-bottom: 65px;
  color: rgba(160, 130, 82, 0.35);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4rem;
  line-height: 0.8;
}

.erss-flow-card h3 {
  margin: 0 0 13px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.2;
}

.erss-flow-card p {
  margin: 0;
  color: var(--erss-muted);
  font-size: 0.88rem;
  line-height: 1.72;
}


/* =========================================================
   HYPER-LOCAL SECTION
   ========================================================= */

.erss-local {
  padding: 125px 0;
  background: var(--erss-green);
  color: var(--erss-white);
}

.erss-local-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.65fr;
  gap: 90px;
}

.erss-local .erss-section-label {
  color: var(--erss-gold-light);
}

.erss-local .erss-section-label::before {
  content: "03";
  color: rgba(215, 197, 165, 0.30);
}

.erss-local-content h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.erss-local-content h2 em {
  color: var(--erss-gold-light);
  font-style: italic;
}

.erss-local-content > p {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.85;
}

.erss-local-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 58px;
  background: rgba(255, 255, 255, 0.11);
}

.erss-local-feature {
  min-height: 190px;
  padding: 30px;
  background: var(--erss-green);
}

.erss-local-feature-number {
  display: block;
  margin-bottom: 28px;
  color: var(--erss-gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
}

.erss-local-feature h3 {
  margin: 0 0 11px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.erss-local-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
  line-height: 1.7;
}


/* =========================================================
   FINAL POSITIONING
   ========================================================= */

.erss-position {
  padding: 130px 0;
  background: var(--erss-paper);
}

.erss-position-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.erss-position-inner .erss-section-label {
  display: inline-block;
  padding-left: 0;
}

.erss-position-inner .erss-section-label::before {
  display: none;
}

.erss-position-inner h2 {
  margin: 32px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 5.5vw, 5.4rem);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.erss-position-inner h2 span {
  color: var(--erss-gold);
  font-style: italic;
}

.erss-position-inner p {
  max-width: 790px;
  margin: 32px auto 0;
  color: var(--erss-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.erss-position-mark {
  width: 1px;
  height: 75px;
  margin: 45px auto 0;
  background: var(--erss-gold);
}


/* =========================================================
   CLOSING STRIP
   ========================================================= */

.erss-closing {
  padding: 0 0 100px;
  background: var(--erss-paper);
}

.erss-closing-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 38px 45px;
  border: 1px solid var(--erss-line);
  background: var(--erss-white);
}

.erss-closing-box strong {
  display: block;
  margin-bottom: 7px;
  color: var(--erss-green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
}

.erss-closing-box p {
  margin: 0;
  color: var(--erss-muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.erss-closing-mark {
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(160, 130, 82, 0.40);
  border-radius: 50%;
  color: var(--erss-gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
}


/* =========================================================
   RESPONSIVE — 1120px
   ========================================================= */

@media (max-width: 1120px) {

  .erss-hero-symbol {
    right: 2%;
    opacity: 0.65;
  }

  .erss-intro-grid,
  .erss-comparison-header,
  .erss-local-grid {
    gap: 55px;
  }

  .erss-comparison-column {
    padding: 27px;
  }

  .erss-flow-card {
    padding: 32px 24px;
  }

}


/* =========================================================
   RESPONSIVE — 960px
   ========================================================= */

@media (max-width: 960px) {

  .erss-hero {
    min-height: 610px;
  }

  .erss-hero-symbol {
    width: 190px;
    height: 190px;
    right: -30px;
    top: 75%;
  }

  .erss-hero-symbol::before {
    width: 135px;
    height: 135px;
  }

  .erss-hero-symbol::after {
    height: 135px;
  }

  .erss-symbol-plus {
    font-size: 3.6rem;
  }

  .erss-intro-grid,
  .erss-comparison-header,
  .erss-local-grid {
    grid-template-columns: 1fr;
  }

  .erss-intro-grid {
    gap: 45px;
  }

  .erss-comparison-header {
    gap: 25px;
  }

  .erss-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .erss-flow-card:nth-child(2) {
    border-right: 0;
  }

  .erss-flow-card:nth-child(3),
  .erss-flow-card:nth-child(4) {
    border-top: 1px solid var(--erss-line);
  }

  .erss-flow-card:nth-child(2)::after,
  .erss-flow-card:nth-child(3)::after {
    display: none;
  }

  .erss-local-grid {
    gap: 50px;
  }

}


/* =========================================================
   RESPONSIVE — 760px
   ========================================================= */

@media (max-width: 760px) {

  .erss-hero {
    min-height: auto;
  }

  .erss-hero-inner {
    padding: 90px 0 80px;
  }

  .erss-hero-title {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .erss-hero-subtitle {
    font-size: 0.98rem;
  }

  .erss-hero-symbol {
    display: none;
  }

  .erss-introduction,
  .erss-comparison,
  .erss-operation,
  .erss-local,
  .erss-position {
    padding: 82px 0;
  }

  .erss-statement {
    padding: 10px 0 82px;
  }

  .erss-statement-card {
    padding: 52px 28px;
  }

  .erss-statement-card::before {
    font-size: 12rem;
  }


  /* Mobile comparison */

  .erss-comparison-cards {
    display: block;
    border: 0;
    background: transparent;
  }

  .erss-comparison-item {
    display: block;
    margin-bottom: 18px;
    border: 1px solid var(--erss-line);
    background: var(--erss-white);
  }

  .erss-comparison-column {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--erss-line);
  }

  .erss-comparison-column:last-child {
    border-bottom: 0;
  }

  .erss-dimension {
    padding-bottom: 22px;
  }

  .erss-dimension-title {
    max-width: none;
  }

  .erss-er-column::before,
  .erss-rl-column::before {
    display: block;
    margin-bottom: 10px;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .erss-er-column::before {
    content: "ERSS-112";
    color: var(--erss-muted);
  }

  .erss-rl-column::before {
    content: "RL System";
    color: var(--erss-gold);
  }

  .erss-rl-column {
    padding-left: 32px;
  }


  /* Mobile flow */

  .erss-flow {
    grid-template-columns: 1fr;
  }

  .erss-flow-card {
    min-height: auto;
    padding: 35px 28px;
    border-right: 0;
    border-bottom: 1px solid var(--erss-line);
  }

  .erss-flow-card:nth-child(2),
  .erss-flow-card:nth-child(3),
  .erss-flow-card:nth-child(4) {
    border-top: 0;
  }

  .erss-flow-card:last-child {
    border-bottom: 0;
  }

  .erss-flow-card::after {
    display: none !important;
  }

  .erss-flow-number {
    margin-bottom: 35px;
  }


  /* Mobile local features */

  .erss-local-features {
    grid-template-columns: 1fr;
  }

  .erss-local-feature {
    min-height: auto;
  }


  /* Mobile closing */

  .erss-closing {
    padding-bottom: 70px;
  }

  .erss-closing-box {
    align-items: flex-start;
    padding: 30px;
  }

}


/* =========================================================
   RESPONSIVE — 680px
   ========================================================= */

@media (max-width: 680px) {

  .erss-hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
  }

  .erss-hero-badge {
    align-items: flex-start;
    font-size: 0.78rem;
  }

  .erss-section-label {
    padding-left: 46px;
  }

  .erss-section-label::before {
    font-size: 2.15rem;
  }

  .erss-comparison-column {
    padding: 24px;
  }

  .erss-rl-column {
    padding-left: 27px;
  }

  .erss-closing-box {
    flex-direction: column;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .erss-page *,
  .erss-page *::before,
  .erss-page *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

}

/* =========================================================
   ERSS-112 PAGE — CHANGES ONLY
   ========================================================= */


/* ---------------------------------------------------------
   1. HERO — DESKTOP LEFT/RIGHT BREATHING ROOM
   --------------------------------------------------------- */

.erss-hero-inner {
  padding-left: 50px;
  padding-right: 50px;
}


/* ---------------------------------------------------------
   2. INTRODUCTION — FULL-WIDTH CONTENT
   Removes the old left-side "01 The distinction" column.
   --------------------------------------------------------- */

.erss-intro-grid {
  display: block;
  max-width: 1180px;
  margin: 0 auto;
}

.erss-intro-content {
  width: 100%;
}

.erss-intro-content .erss-section-label {
  display: inline-block;
  margin-bottom: 32px;
  padding-left: 55px;
}

.erss-intro-content h2 {
  max-width: 1050px;
}

.erss-intro-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;

  margin-top: 42px;
  padding-top: 35px;

  border-top: 1px solid var(--erss-line);
}

.erss-intro-content p {
  max-width: none;
  margin: 0;
}


/* ---------------------------------------------------------
   3. HYPER-LOCAL SECTION — LIGHT EDITORIAL DESIGN
   Replaces the dark/black appearance.
   --------------------------------------------------------- */

.erss-local {
  position: relative;
  overflow: hidden;

  padding: 125px 0;

  background:
    radial-gradient(
      circle at 90% 15%,
      rgba(160, 130, 82, 0.15),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      #edf0e9 0%,
      #f5f2e9 100%
    );

  color: var(--erss-ink);

  border-top: 1px solid rgba(160, 130, 82, 0.18);
  border-bottom: 1px solid rgba(160, 130, 82, 0.18);
}

.erss-local::before {
  content: "";
  position: absolute;

  width: 520px;
  height: 520px;

  right: -220px;
  bottom: -280px;

  border: 1px solid rgba(38, 56, 47, 0.10);
  border-radius: 50%;
}

.erss-local::after {
  content: "";
  position: absolute;

  width: 340px;
  height: 340px;

  right: -125px;
  bottom: -190px;

  border: 1px dashed rgba(160, 130, 82, 0.25);
  border-radius: 50%;
}

.erss-local-grid {
  position: relative;
  z-index: 2;
}

.erss-local .erss-section-label {
  color: var(--erss-gold);
}

.erss-local .erss-section-label::before {
  content: "03";
  color: rgba(160, 130, 82, 0.30);
}

.erss-local-content h2 {
  color: var(--erss-ink);
}

.erss-local-content h2 em {
  color: var(--erss-gold);
}

.erss-local-content > p {
  color: #606a64;
}

.erss-local-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;

  margin-top: 58px;

  background: rgba(38, 56, 47, 0.14);
  border: 1px solid rgba(38, 56, 47, 0.14);
}

.erss-local-feature {
  min-height: 190px;
  padding: 32px;

  background: rgba(255, 255, 255, 0.78);

  transition:
    transform 250ms ease,
    background 250ms ease;
}

.erss-local-feature:hover {
  background: rgba(255, 255, 255, 0.98);
  transform: translateY(-2px);
}

.erss-local-feature-number {
  color: var(--erss-gold);
}

.erss-local-feature h3 {
  color: var(--erss-green);
}

.erss-local-feature p {
  color: #68716b;
}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 1120px) {

  .erss-hero-inner {
    padding-left: 50px;
    padding-right: 50px;
  }

}


@media (max-width: 960px) {

  .erss-hero-inner {
    padding-left: 35px;
    padding-right: 35px;
  }

}


@media (max-width: 760px) {

  .erss-hero-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .erss-intro-text {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .erss-local-features {
    grid-template-columns: 1fr;
  }

}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-page {
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(222, 157, 181, .13),
      transparent 25%
    ),
    var(--bg);
}


/* =========================================================
   CONTACT HERO
   ========================================================= */

.contact-hero {
  position: relative;
  overflow: hidden;
  padding:
    calc(var(--header-height) + 105px)
    0
    105px;
  background:
    radial-gradient(
      circle at 85% 18%,
      rgba(222, 157, 181, .34),
      transparent 28%
    ),
    radial-gradient(
      circle at 12% 80%,
      rgba(185, 91, 125, .08),
      transparent 25%
    ),
    linear-gradient(
      145deg,
      #fff8fb 0%,
      #fff1f5 52%,
      #fffaf5 100%
    );
}

.contact-hero::before,
.contact-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.contact-hero::before {
  width: 360px;
  height: 360px;
  right: -170px;
  top: 85px;
  border: 1px solid rgba(124, 49, 83, .08);
}

.contact-hero::after {
  width: 210px;
  height: 210px;
  right: -75px;
  top: 160px;
  border: 1px solid rgba(185, 91, 125, .12);
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  text-align: center;
  margin: 0 auto;
}

.contact-hero .eyebrow {
  margin-bottom: 18px;
}

.contact-hero h1 {
  max-width: 850px;
  margin-inline: auto;
}

.contact-hero h1 span {
  display: block;
  color: var(--rose);
}

.contact-hero-subtitle {
  margin:
    22px auto 0;
  color: var(--brand);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.contact-hero-intro {
  max-width: 700px;
  margin: 24px auto 31px;
  color: var(--muted);
  font-size: 1.02rem;
}

.contact-hero .primary-btn {
  margin-inline: auto;
}


/* =========================================================
   INTRODUCTION / LETTER
   ========================================================= */

.contact-intro-section {
  padding: 85px 0 90px;
  background: #fff;
}

.contact-letter {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 35px;
  align-items: start;
  padding: clamp(30px, 5vw, 58px);
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.95),
      rgba(255,240,245,.85)
    );
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.contact-letter-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--brand-dark),
    var(--rose)
  );
  box-shadow: 0 10px 25px rgba(124,49,83,.18);
  font-size: 1.2rem;
}

.contact-letter h2 {
  max-width: 760px;
  margin-bottom: 22px;
}

.contact-letter p {
  max-width: 780px;
  color: var(--muted);
}

.contact-letter p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   SUPPORT SECTION
   ========================================================= */

.contact-support-section {
  padding: 105px 0;
  background:
    linear-gradient(
      180deg,
      #fff8fb 0%,
      #fbeef3 100%
    );
}

.contact-support-section .section-heading {
  max-width: 850px;
  margin-inline: auto;
}

.contact-support-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-support-card {
  position: relative;
  overflow: hidden;
  min-height: 365px;
  padding: 42px 36px 35px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: 25px;
  box-shadow: 0 12px 34px rgba(92,39,62,.07);
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.contact-support-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.contact-support-card.featured {
  background:
    linear-gradient(
      145deg,
      #fff,
      #fff0f5
    );
  border-color: #dfbdca;
}

.contact-support-card::after {
  content: "";
  position: absolute;
  right: -65px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 1px solid rgba(185,91,125,.09);
}

.contact-card-number {
  position: absolute;
  right: 28px;
  top: 22px;
  color: #e9cbd6;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
}

.contact-card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 27px;
  border-radius: 17px;
  color: var(--brand);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  font-size: 1.25rem;
}

.contact-card-content {
  position: relative;
  z-index: 1;
}

.contact-card-content .card-kicker {
  margin-bottom: 9px;
}

.contact-card-content h3 {
  margin-bottom: 15px;
  font-size: 1.65rem;
}

.contact-card-content p {
  color: var(--muted);
  font-size: .91rem;
}

.contact-card-content p:last-child {
  margin-bottom: 0;
}

.contact-card-note {
  padding-top: 14px;
  margin-top: 18px !important;
  border-top: 1px solid var(--line);
  color: var(--brand) !important;
  font-size: .79rem !important;
  font-weight: 600;
}


/* =========================================================
   QUOTE / HUMAN ELEMENT
   ========================================================= */

.contact-quote-section {
  padding: 105px 0;
  background: #fff;
}

.contact-quote-card {
  position: relative;
  padding: 65px clamp(30px, 7vw, 85px);
  text-align: center;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(222,157,181,.20),
      transparent 38%
    ),
    #fffaf5;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 14px 42px rgba(92,39,62,.06);
}

.contact-quote-symbol {
  height: 32px;
  color: var(--rose);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: .7;
  opacity: .65;
}

.contact-quote-card blockquote {
  max-width: 790px;
  margin: 20px auto 28px;
  color: var(--brand-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.35;
}

.contact-quote-line {
  width: 55px;
  height: 2px;
  margin: 0 auto 22px;
  background: var(--rose);
}

.contact-quote-card p {
  margin: 0;
  color: var(--muted);
}


/* =========================================================
   CONTACT DETAILS
   ========================================================= */

.contact-details-section {
  padding: 105px 0;
  background:
    linear-gradient(
      180deg,
      #fdf1f5,
      #fff8fb
    );
}

.contact-details-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 75px;
  align-items: center;
}

.contact-details-copy h2 span {
  display: block;
  color: var(--rose);
}

.contact-details-copy > p {
  max-width: 600px;
  color: var(--muted);
}

.contact-details-small {
  font-size: .88rem;
}

.contact-details-card {
  padding: 16px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  padding: 22px 20px;
  border-bottom: 1px solid var(--line);
}

.contact-detail-item:last-child {
  border-bottom: 0;
}

.contact-detail-icon {
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--brand);
  background: var(--surface-soft);
  font-weight: 700;
}

.contact-detail-label {
  display: block;
  margin-bottom: 3px;
  color: var(--rose);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-detail-value {
  display: inline-block;
  color: var(--ink);
  text-decoration: none;
  font-size: .91rem;
  line-height: 1.65;
}

a.contact-detail-value:hover {
  color: var(--brand);
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.contact-closing {
  padding: 100px 0 115px;
  background: #fff;
}

.contact-closing-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 270px;
  gap: 50px;
  align-items: center;
  padding: clamp(42px, 6vw, 72px);
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(222,157,181,.28),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      var(--brand-dark),
      #6e294a
    );
  border-radius: 32px;
  box-shadow: 0 22px 60px rgba(84,30,57,.20);
}

.contact-closing-content {
  position: relative;
  z-index: 1;
}

.contact-closing .eyebrow {
  color: #e5afc4;
}

.contact-closing h2 {
  color: #fff;
  margin-bottom: 22px;
}

.contact-closing h2 span {
  color: #e9a9c1;
}

.contact-closing p {
  max-width: 670px;
  color: #eadfe4;
}

.contact-closing .primary-btn {
  margin-top: 13px;
  background: #fff;
  color: var(--brand-dark);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.contact-closing .primary-btn:hover {
  background: #fff0f5;
}

.contact-closing-decoration {
  position: relative;
  z-index: 1;
  width: 220px;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-self: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  transform: rotate(-5deg);
}

.contact-closing-decoration::before,
.contact-closing-decoration::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
}

.contact-closing-decoration::before {
  inset: 13px;
}

.contact-closing-decoration::after {
  inset: -16px;
}

.contact-closing-decoration span {
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
}

.contact-closing-decoration small {
  margin-top: 7px;
  color: #dba5ba;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .25em;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 960px) {

  .contact-hero {
    padding-top: calc(var(--header-height) + 75px);
    padding-bottom: 80px;
  }

  .contact-support-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-details-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .contact-closing-card {
    grid-template-columns: 1fr;
  }

  .contact-closing-decoration {
    display: none;
  }

}


@media (max-width: 680px) {

  .contact-hero {
    padding:
      calc(var(--header-height) + 55px)
      0
      65px;
  }

  .contact-hero-intro {
    font-size: .93rem;
  }

  .contact-intro-section,
  .contact-support-section,
  .contact-quote-section,
  .contact-details-section {
    padding: 70px 0;
  }

  .contact-letter {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 30px 25px;
    border-radius: 23px;
  }

  .contact-letter-mark {
    width: 48px;
    height: 48px;
  }

  .contact-support-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .contact-support-card {
    min-height: 0;
    padding: 34px 27px 30px;
  }

  .contact-card-number {
    right: 22px;
    top: 18px;
    font-size: 1.65rem;
  }

  .contact-card-content h3 {
    font-size: 1.45rem;
  }

  .contact-quote-card {
    padding: 50px 25px;
    border-radius: 23px;
  }

  .contact-quote-card blockquote {
    font-size: 1.45rem;
  }

  .contact-detail-item {
    padding: 19px 12px;
  }

  .contact-detail-value {
    font-size: .84rem;
  }

  .contact-closing {
    padding: 65px 0 80px;
  }

  .contact-closing-card {
    padding: 38px 27px;
    border-radius: 25px;
  }

}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .contact-support-card {
    transition: none;
  }

}