/* ==========================================================
   FRIENDS OF THE GLEN COVE YOUTH BOARD
   MASTER SITE STYLES
========================================================== */

:root {
  --navy: #163d76;
  --navy-dark: #08233f;
  --blue: #2677ab;
  --blue-light: #edf6fb;
  --gold: #d5ae63;
  --gold-dark: #b98d43;
  --gold-light: #f8eed8;
  --cream: #f8f6f1;
  --white: #ffffff;
  --text: #243340;
  --muted: #657580;
  --border: #dce4e9;
  --shadow: 0 18px 45px rgba(8, 35, 63, 0.13);
  --radius: 20px;
  --container: 1180px;
}


/* RESET */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}


/* GLOBAL */

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-label {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}

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

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading h2,
.about-section h2,
.impact-story h2,
.scholarship-section h2,
.donate-section h2,
.contact-section h2,
.event-payment-section h2,
.duck-bbq-section h2,
.duck-action-section h2,
.tastings-feature-section h2,
.tastings-casino-section h2,
.tastings-community-section h2,
.scholarship-page-intro h2,
.scholarship-recognition-section h2,
.scholarship-application-section h2,
.scholarship-donate-section h2 {
  color: var(--navy-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 4vw, 3.15rem);
  line-height: 1.13;
  margin-bottom: 18px;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading.light h2,
.section-heading.light p {
  color: var(--white);
}

.light-heading {
  color: var(--white) !important;
}


/* BUTTONS */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 25px;
  border-radius: 999px;
  font-weight: 750;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--navy-dark);
  background: var(--gold);
  box-shadow: 0 10px 26px rgba(213, 174, 99, 0.3);
}

.button-primary:hover {
  background: #e2bb73;
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.09);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.17);
}

.button-dark {
  color: var(--white);
  background: var(--navy-dark);
}

.button-dark:hover {
  background: var(--blue);
}

.button-full {
  width: 100%;
}

.text-button,
.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 800;
}


/* TOP BAR */

.top-bar {
  color: var(--white);
  background: var(--navy-dark);
  font-size: 0.83rem;
}

.top-bar-inner {
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar a {
  color: var(--gold);
  font-weight: 750;
}


/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 300px;
}

.site-logo {
  width: 65px;
  height: 65px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-main {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.brand-name {
  color: var(--navy-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.14rem;
  font-weight: 700;
}


/* NAVIGATION */

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav .active {
  color: var(--blue);
}

.main-nav .nav-donate {
  padding: 10px 20px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
}

.main-nav .nav-donate:hover {
  color: var(--white);
  background: var(--navy-dark);
}

.mobile-menu-button {
  display: none;
  border: 0;
  background: none;
  color: var(--navy-dark);
  font-size: 1.8rem;
  cursor: pointer;
}


/* SITE-WIDE HERO STANDARD */

.hero,
.event-page-hero,
.tastings-page-hero,
.scholarship-page-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content,
.event-page-hero-content,
.tastings-page-hero-content,
.scholarship-page-hero-content {
  width: min(92%, var(--container));
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  text-align: left;
}

.hero-content > *,
.event-page-hero-content > *,
.tastings-page-hero-content > *,
.scholarship-page-hero-content > * {
  max-width: 620px;
}

.hero .eyebrow,
.event-page-hero .eyebrow,
.tastings-page-hero .eyebrow,
.scholarship-page-hero .eyebrow {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.81rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}


/* HOMEPAGE HERO */

.hero {
  min-height: 650px;

  background:
    linear-gradient(
      90deg,
      rgba(8, 35, 63, 0.96) 0%,
      rgba(8, 35, 63, 0.88) 30%,
      rgba(22, 61, 118, 0.58) 53%,
      rgba(22, 61, 118, 0.18) 78%,
      rgba(22, 61, 118, 0.04) 100%
    ),
    url("../images/hero.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero h1 {
  margin-bottom: 23px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 4.65rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.hero-description {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.1rem;
  line-height: 1.7;
}


/* ABOUT */

.about-section {
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 75px;
  align-items: center;
}

.about-copy h2 {
  margin-bottom: 23px;
}

.large-copy {
  margin-bottom: 17px;
  color: var(--navy-dark);
  font-size: 1.2rem;
  line-height: 1.65;
}

.about-copy > p:not(.section-label) {
  margin-bottom: 15px;
}

.about-photo-wrap {
  position: relative;
  padding-bottom: 45px;
}

.about-photo {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: var(--shadow);
}

.photo-caption-card {
  position: absolute;
  left: -30px;
  bottom: 0;
  max-width: 330px;
  padding: 23px 25px;
  background: var(--gold-light);
  border-left: 5px solid var(--gold);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(8, 35, 63, 0.12);
}

.photo-caption-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy-dark);
  font-family: Georgia, serif;
  font-size: 1.3rem;
}

.photo-caption-card span {
  color: var(--muted);
  font-size: 0.9rem;
}


/* IMPACT STORY */

.impact-story {
  padding: 85px 0;
  background: var(--navy-dark);
}

.impact-story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
}

.impact-story-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 24px;
}

.impact-story-copy h2 {
  color: var(--white);
}

.impact-story-copy p:not(.section-label) {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
}


/* IMPACT */

.impact-section {
  padding: 90px 0;
  background: #0d3156;
}

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

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.impact-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.impact-number {
  margin-bottom: 10px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 2.35rem;
  font-weight: 700;
}

.impact-title {
  margin-bottom: 8px;
  color: var(--white);
  font-weight: 800;
}

.impact-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.93rem;
}


/* PROGRAMS */

.programs-section {
  background: var(--cream);
}

.program-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 42px;
}

.program-feature {
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 9px 25px rgba(8, 35, 63, 0.08);
}

.program-photo {
  height: 275px;
  overflow: hidden;
}

.program-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-feature-content {
  padding: 27px;
}

.mini-label {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.program-feature h3 {
  margin-bottom: 9px;
  color: var(--navy-dark);
  font-family: Georgia, serif;
  font-size: 1.5rem;
}

.program-feature p {
  color: var(--muted);
}


/* SUPPORT CARDS */

.support-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.support-card {
  padding: 27px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.support-icon {
  display: block;
  margin-bottom: 13px;
  font-size: 1.7rem;
}

.support-card h3 {
  margin-bottom: 8px;
  color: var(--navy-dark);
  font-family: Georgia, serif;
}

.support-card p {
  color: var(--muted);
  font-size: 0.93rem;
}


/* PHOTO STORY */

.photo-story-section {
  padding: 85px 0;
}

.photo-story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.photo-story-item {
  height: 385px;
  overflow: hidden;
  border-radius: 18px;
}

.photo-story-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* HOMEPAGE SCHOLARSHIP */

.scholarship-section {
  background:
    linear-gradient(
      135deg,
      var(--gold-light),
      #ffffff
    );
}

.scholarship-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 65px;
  align-items: center;
}

.scholarship-content p:not(.section-label) {
  margin-bottom: 14px;
  color: var(--muted);
}

.scholarship-highlight {
  min-height: 330px;
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  background:
    linear-gradient(
      145deg,
      var(--blue),
      var(--navy)
    );
  border-radius: 27px;
}

.highlight-small {
  color: var(--gold-light);
}

.scholarship-highlight strong {
  margin: 8px 0;
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 3.3rem;
}


/* EVENTS */

.events-section {
  background: var(--white);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.event-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 9px 27px rgba(8, 35, 63, 0.08);
}

.event-photo-link {
  display: block;
  overflow: hidden;
}

.event-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.event-content {
  padding: 28px;
}

.event-tag {
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.event-content h3 {
  margin-bottom: 4px;
  color: var(--navy-dark);
  font-family: Georgia, serif;
  font-size: 1.75rem;
}

.event-location {
  margin-bottom: 12px;
  color: var(--gold-dark) !important;
  font-weight: 700;
}

.event-content p {
  color: var(--muted);
}

.event-button {
  margin-top: 20px;
}


/* GET INVOLVED */

.get-involved-section {
  background:
    linear-gradient(
      135deg,
      var(--blue),
      var(--navy)
    );
}

.get-involved-section .section-label {
  color: var(--gold-light);
}

.involvement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.involvement-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
}

.involvement-number {
  display: block;
  margin-bottom: 17px;
  color: var(--gold-light);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.involvement-card h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1.5rem;
}

.involvement-card p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.involvement-card a {
  color: var(--gold-light);
  font-weight: 800;
}


/* DONATE */

.donate-section {
  padding: 90px 0;
  background: var(--cream);
}

.donate-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 65px;
  align-items: center;
}

.donate-copy p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
}

.donate-box {
  padding: 38px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.donate-box-label {
  margin-bottom: 7px;
  color: var(--blue) !important;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.donate-box h3 {
  margin-bottom: 12px;
  color: var(--navy-dark);
  font-family: Georgia, serif;
  font-size: 1.7rem;
}

.donate-box > p {
  margin-bottom: 22px;
  color: var(--muted);
}

.secure-note {
  margin: 13px 0 0 !important;
  text-align: center;
  font-size: 0.78rem;
}


/* CONTACT */

.contact-section {
  padding: 75px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.contact-layout > div:first-child p:last-child {
  color: var(--muted);
}

.contact-card {
  padding: 30px;
  background: var(--blue-light);
  border-radius: 18px;
}

.contact-card h3 {
  margin-bottom: 7px;
  color: var(--navy-dark);
  font-family: Georgia, serif;
  font-size: 1.4rem;
}

.contact-card p {
  color: var(--muted);
}


/* SHARED EVENT HERO */

.event-page-hero {
  min-height: 590px;
}

.event-page-hero h1,
.tastings-page-hero h1 {
  margin-bottom: 20px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.event-page-date {
  margin-bottom: 15px;
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 800;
}

.event-page-intro {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.93);
  font-size: 1.12rem;
}


/* EVENT QUICK BAR */

.event-quick-section {
  background: var(--gold);
}

.event-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.event-quick-item {
  padding: 26px 20px;
  border-right: 1px solid rgba(8, 35, 63, 0.15);
}

.event-quick-item:last-child {
  border-right: 0;
}

.event-quick-item span {
  display: block;
  margin-bottom: 3px;
  color: rgba(8, 35, 63, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.event-quick-item strong {
  color: var(--navy-dark);
}


/* EVENT INTRO */

.event-intro-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
}

.event-page-heading {
  margin-bottom: 20px;
  color: var(--navy-dark);
  font-family: Georgia, serif;
  font-size: clamp(2.1rem, 3.7vw, 3rem);
  line-height: 1.1;
}

.event-large-copy {
  margin-bottom: 15px;
  color: var(--navy-dark);
  font-size: 1.2rem;
}


/* DUCK DERBY */

.duck-page-hero {
  min-height: 590px;

  background:
    linear-gradient(
      90deg,
      rgba(8, 35, 63, 0.97) 0%,
      rgba(8, 35, 63, 0.91) 31%,
      rgba(8, 35, 63, 0.62) 54%,
      rgba(8, 35, 63, 0.22) 78%,
      rgba(8, 35, 63, 0.07) 100%
    ),
    url("../images/duck-derby-hero.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.duck-price-box {
  padding: 40px;
  background: var(--gold-light);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.duck-price {
  margin: 12px 0;
  color: var(--navy-dark);
  font-family: Georgia, serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.duck-price-box p {
  margin-bottom: 20px;
  color: var(--muted);
}

.duck-action-section {
  padding: 85px 0;
  background: var(--navy-dark);
}

.duck-action-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 65px;
  align-items: center;
}

.duck-action-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
}

.duck-action-copy h2 {
  color: var(--white);
}

.duck-action-copy p:not(.section-label) {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.duck-prizes {
  padding: 85px 0;
  background: #0d3156;
}

.prize-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}

.prize-card {
  padding: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
}

.prize-card-main {
  background:
    linear-gradient(
      145deg,
      rgba(213, 174, 99, 0.26),
      rgba(255, 255, 255, 0.07)
    );
}

.prize-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-weight: 800;
}

.prize-card strong {
  color: var(--white);
  font-family: Georgia, serif;
  font-size: clamp(3rem, 6vw, 5rem);
}

.giveaway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.giveaway-card {
  padding: 28px;
  background: var(--cream);
  border-radius: 17px;
}

.giveaway-card h3 {
  margin-bottom: 10px;
  color: var(--navy-dark);
  font-family: Georgia, serif;
}

.giveaway-card p {
  color: var(--muted);
}

.duck-bbq-section {
  padding: 80px 0;
  background: var(--gold-light);
}

.duck-bbq-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 70px;
  align-items: center;
}

.duck-bbq-layout p {
  color: var(--muted);
}

.bbq-price {
  padding: 32px;
  background: var(--white);
  border-left: 5px solid var(--gold);
  border-radius: 15px;
}

.bbq-price span {
  display: block;
  color: var(--blue);
  font-weight: 800;
}

.bbq-price strong {
  display: block;
  margin: 5px 0;
  color: var(--navy-dark);
  font-family: Georgia, serif;
  font-size: 3.2rem;
}


/* FLYERS */

.flyer-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 60px;
  align-items: start;
}

.flyer-layout p {
  color: var(--muted);
}

.flyer-image-wrap {
  padding: 15px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.flyer-image-wrap img {
  width: 100%;
  border-radius: 12px;
}


/* EVENING OF TASTINGS */

/* EVENING OF TASTINGS HERO */

.tastings-page-hero {
  min-height: 610px;

  background:
    linear-gradient(
      90deg,
      rgba(30, 18, 13, 0.98) 0%,
      rgba(35, 22, 16, 0.94) 28%,
      rgba(48, 30, 20, 0.78) 43%,
      rgba(60, 38, 25, 0.38) 58%,
      rgba(60, 38, 25, 0.10) 76%,
      rgba(60, 38, 25, 0.03) 100%
    ),
    url("../images/tastings-hero.jpg");

  /*
     Slightly enlarging the image gives us horizontal
     room to reposition the people.
  */
  background-size: 115% auto;

  /*
     Moves the people toward the right-hand side.
  */
  background-position: 72% 20%;

  background-repeat: no-repeat;
  background-color: #21130d;
}

.tasting-ticket-box {
  padding: 40px;
  background: var(--gold-light);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.tasting-ticket-price {
  margin: 12px 0;
  color: var(--navy-dark);
  font-family: Georgia, serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.tasting-ticket-box p {
  margin-bottom: 18px;
  color: var(--muted);
}


/* TASTINGS FEATURE */

.tastings-feature-section {
  padding: 85px 0;
  background: #211711;
}

.tastings-feature-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 65px;
  align-items: center;
}

.tastings-feature-image img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 24px;
}

.tastings-feature-copy h2 {
  color: var(--white);
}

.tastings-feature-copy p:not(.section-label) {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.8);
}


/* TASTINGS EXPERIENCE */

.tastings-experience-section {
  background: var(--cream);
}

.tastings-experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.tastings-experience-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.tastings-experience-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.tastings-experience-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-dark);
  font-family: Georgia, serif;
  font-size: 1.45rem;
}

.tastings-experience-card p {
  color: var(--muted);
}


/* TASTINGS CASINO */

.tastings-casino-section {
  padding: 85px 0;
  background: var(--navy-dark);
}

.tastings-casino-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 65px;
  align-items: center;
}

.tastings-casino-section h2 {
  color: var(--white);
}

.tastings-casino-section p:not(.section-label) {
  color: rgba(255, 255, 255, 0.8);
}

.tastings-casino-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 24px;
}


/* SPONSORSHIPS */

.sponsorship-section {
  background: var(--white);
}

.sponsorship-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sponsor-card {
  padding: 30px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.sponsor-featured {
  background:
    linear-gradient(
      145deg,
      var(--gold-light),
      var(--white)
    );
  border: 2px solid var(--gold);
}

.sponsor-level {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.sponsor-price {
  display: block;
  margin-bottom: 14px;
  color: var(--navy-dark);
  font-family: Georgia, serif;
  font-size: 2.5rem;
  line-height: 1.1;
}

.sponsor-card p {
  color: var(--muted);
}


/* TASTINGS COMMUNITY */

.tastings-community-section {
  padding: 85px 0;
  background: var(--gold-light);
}

.tastings-community-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 65px;
  align-items: center;
}

.tastings-community-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 24px;
}


/* TASTINGS GALLERY */

.tastings-gallery-section {
  background: var(--white);
}

.tastings-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tastings-gallery-item {
  height: 310px;
  overflow: hidden;
  border-radius: 16px;
}

.tastings-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-credit-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.82rem;
}


/* TASTINGS INVITATION */

.tastings-invitation-section {
  padding: 85px 0;
  background: #211711;
}

.tastings-invitation-section p {
  color: rgba(255, 255, 255, 0.82);
}

.invitation-price {
  margin-top: 20px;
  color: var(--gold) !important;
  font-size: 1.3rem;
  font-weight: 800;
}


/* EVENT PAYMENT */

.event-payment-section {
  padding: 80px 0;
  background: var(--blue-light);
}

.payment-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.payment-layout > div:first-child p:last-child {
  color: var(--muted);
}

.contact-person-grid {
  display: grid;
  gap: 15px;
}

.contact-person {
  padding: 22px;
  background: var(--white);
  border-radius: 14px;
}

.contact-person strong {
  display: block;
  color: var(--navy-dark);
  font-family: Georgia, serif;
  font-size: 1.2rem;
}

.contact-person a {
  color: var(--blue);
  font-weight: 800;
}

.tastings-payment-card {
  padding: 32px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.tastings-payment-card h3 {
  margin-bottom: 10px;
  color: var(--navy-dark);
  font-family: Georgia, serif;
  font-size: 1.5rem;
}

.tastings-payment-card p {
  margin-bottom: 12px;
  color: var(--muted);
}

.tastings-payment-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-dark);
}


/* ==========================================================
   SCHOLARSHIP PAGE
========================================================== */

.scholarship-page-hero {
  min-height: 600px;

  background:
    linear-gradient(
      90deg,
      rgba(8, 35, 63, 0.97) 0%,
      rgba(8, 35, 63, 0.91) 31%,
      rgba(22, 61, 118, 0.62) 54%,
      rgba(22, 61, 118, 0.23) 77%,
      rgba(22, 61, 118, 0.06) 100%
    ),
    url("../images/scholarship-recipients.jpg");

  background-size: cover;
  background-position: center 8%;
  background-repeat: no-repeat;
}

.scholarship-page-hero h1 {
  margin-bottom: 22px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.scholarship-hero-description {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.93);
  font-size: 1.12rem;
  line-height: 1.7;
}


/* SCHOLARSHIP INTRO */

.scholarship-page-intro {
  background: var(--white);
}

.scholarship-page-intro-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 65px;
  align-items: center;
}

.scholarship-values-card {
  padding: 38px;
  background: var(--gold-light);
  border-left: 5px solid var(--gold);
  border-radius: 20px;
}

.scholarship-value-list {
  display: grid;
  gap: 10px;
}

.scholarship-value-list span {
  padding: 12px 15px;
  color: var(--navy-dark);
  background: rgba(255, 255, 255, 0.65);
  border-radius: 10px;
  font-weight: 700;
}


/* SCHOLARSHIP RECIPIENTS */

.scholarship-recipients-section {
  padding: 90px 0;
  background: var(--navy-dark);
}

.scholarship-recipients-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 65px;
  align-items: center;
}

.scholarship-recipients-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.scholarship-recipients-copy h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.12;
}

.scholarship-recipients-copy > p:not(.section-label) {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.recipient-name-list {
  display: grid;
  gap: 10px;
  margin: 25px 0;
}

.recipient-name-list div {
  padding: 13px 17px;
  color: var(--navy-dark);
  background: var(--gold);
  border-radius: 10px;
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
}


/* RECOGNITION */

.scholarship-recognition-section {
  background: var(--cream);
}

.scholarship-recognition-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 65px;
  align-items: center;
}

.scholarship-recognition-layout p:not(.section-label) {
  margin-bottom: 15px;
  color: var(--muted);
}

.scholarship-recognition-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}


/* SCHOLARSHIP VALUES */

.scholarship-focus-section {
  padding: 90px 0;
  background:
    linear-gradient(
      135deg,
      var(--blue),
      var(--navy)
    );
}

.scholarship-focus-section .section-label {
  color: var(--gold-light);
}

.scholarship-focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.scholarship-focus-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
}

.scholarship-focus-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.scholarship-focus-card h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1.45rem;
}

.scholarship-focus-card p {
  color: rgba(255, 255, 255, 0.78);
}


/* APPLICATION */

.scholarship-application-section {
  background: var(--white);
}

.scholarship-application-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 65px;
  align-items: center;
}

.scholarship-application-layout > div:first-child p:not(.section-label) {
  margin-bottom: 15px;
  color: var(--muted);
}

.application-status-card {
  padding: 38px;
  background: var(--blue-light);
  border-radius: 22px;
}

.application-status-label {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.application-status-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy-dark);
  font-family: Georgia, serif;
  font-size: 2.4rem;
}

.application-status-card p {
  margin-bottom: 22px;
  color: var(--muted);
}


/* SUPPORT SCHOLARSHIPS */

.scholarship-donate-section {
  padding: 75px 0;
  background: var(--navy-dark);
}

.scholarship-donate-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  align-items: center;
}

.scholarship-donate-section h2 {
  color: var(--white);
}

.scholarship-donate-section p:not(.section-label) {
  color: rgba(255, 255, 255, 0.8);
}


/* EVENT NOTICE / BACK */

.event-notice {
  padding: 28px 0;
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.84);
  text-align: center;
}

.event-notice p + p {
  margin-top: 5px;
}

.back-events-section {
  padding: 35px 0 55px;
}


/* FOOTER */

.site-footer {
  padding-top: 60px;
  color: rgba(255, 255, 255, 0.75);
  background: var(--navy-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.footer-logo {
  width: 57px;
  height: 57px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-grid h3 {
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1.35rem;
}

.footer-grid h4 {
  margin-bottom: 14px;
  color: var(--gold);
}

.footer-grid a {
  display: block;
  margin-bottom: 8px;
}

.footer-about > p {
  max-width: 450px;
}

.footer-bottom {
  margin-top: 48px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.83rem;
}

/* ==========================================================
   ABOUT PAGE
========================================================== */


/* =========================================================
   ABOUT PAGE HERO
========================================================= */

.about-page-hero {
  position: relative;

  min-height: 610px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(8, 35, 63, 0.78) 0%,
      rgba(8, 35, 63, 0.66) 30%,
      rgba(22, 61, 118, 0.38) 54%,
      rgba(22, 61, 118, 0.12) 78%,
      rgba(22, 61, 118, 0.02) 100%
    ),
    url("../images/community-support-1.jpg");

  /*
     Keep both people visible while preserving
     a readable text area on the left.
  */
  background-size: 118% auto;
  background-position: 0% 40%;

  background-repeat: no-repeat;
  background-color: var(--navy-dark);
}


.about-page-hero-content {
  width: min(92%, var(--container));

  max-width: var(--container);

  margin-left: auto;
  margin-right: auto;

  position: relative;

  z-index: 2;

  text-align: left;
}


.about-page-hero-content > * {
  max-width: 630px;
}


.about-page-hero .eyebrow {
  margin-bottom: 18px;

  color: var(--gold);

  font-size: 0.81rem;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.17em;
}


.about-page-hero h1 {
  margin-bottom: 23px;

  color: var(--white);

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(3.2rem, 6vw, 5.7rem);

  line-height: 0.98;

  letter-spacing: -0.025em;
}


.about-hero-description {
  color: rgba(255, 255, 255, 0.93);

  font-size: 1.12rem;

  line-height: 1.7;
}


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

.about-page-intro {
  background: var(--white);
}


.about-page-intro-layout {
  display: grid;

  grid-template-columns: 1.15fr 0.85fr;

  gap: 70px;

  align-items: center;
}


.about-page-intro h2,
.about-community-section h2,
.about-history-section h2,
.about-partnership-section h2,
.board-section h2,
.about-volunteer-section h2,
.about-contact-section h2 {

  margin-bottom: 18px;

  color: var(--navy-dark);

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(2.05rem, 4vw, 3.15rem);

  line-height: 1.13;
}


.about-page-intro-layout > div:first-child p:not(.section-label) {
  margin-bottom: 16px;

  color: var(--muted);
}


.about-page-intro-layout .large-copy {
  color: var(--navy-dark);
}


/* MISSION CARD */

.about-mission-card {
  padding: 42px;

  background:
    linear-gradient(
      145deg,
      var(--gold-light),
      #ffffff
    );

  border: 1px solid rgba(213, 174, 99, 0.5);

  border-radius: 24px;

  box-shadow: var(--shadow);
}


.about-mission-card h3 {
  margin-bottom: 15px;

  color: var(--navy-dark);

  font-family: Georgia, serif;

  font-size: 1.7rem;

  line-height: 1.2;
}


.about-mission-card p {
  color: var(--muted);
}


.about-mission-line {
  width: 65px;
  height: 3px;

  margin: 24px 0;

  background: var(--gold);
}


/* ==========================================================
   PROGRAMS
========================================================== */

.about-support-section {
  padding: 90px 0;

  background:
    linear-gradient(
      135deg,
      var(--blue),
      var(--navy)
    );
}


.about-support-section .section-label {
  color: var(--gold-light);
}


.about-support-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}


.about-support-card {
  padding: 31px;

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

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 19px;
}


.about-support-number {
  display: block;

  margin-bottom: 17px;

  color: var(--gold-light);

  font-size: 0.74rem;

  font-weight: 800;

  letter-spacing: 0.14em;
}


.about-support-card h3 {
  margin-bottom: 10px;

  color: var(--white);

  font-family: Georgia, serif;

  font-size: 1.5rem;
}


.about-support-card p {
  color: rgba(255, 255, 255, 0.79);
}


/* ==========================================================
   COMMUNITY SECTION
========================================================== */

.about-community-section {
  background: var(--cream);
}


.about-community-layout {
  display: grid;

  grid-template-columns: 1.05fr 0.95fr;

  gap: 70px;

  align-items: center;
}


.about-community-photo img {
  width: 100%;

  height: 480px;

  object-fit: cover;

  border-radius: 25px;

  box-shadow: var(--shadow);
}


.about-community-layout > div:last-child p:not(.section-label) {
  margin-bottom: 16px;

  color: var(--muted);
}


.about-community-layout .large-copy {
  color: var(--navy-dark);
}


.about-community-layout .button {
  margin-top: 10px;
}


/* ==========================================================
   HISTORY
========================================================== */

.about-history-section {
  padding: 95px 0;

  background: var(--white);
}


.history-timeline {
  position: relative;

  max-width: 950px;

  margin-top: 55px;
}


.history-timeline::before {
  content: "";

  position: absolute;

  left: 128px;
  top: 12px;
  bottom: 10px;

  width: 2px;

  background: var(--gold);
}


.history-item {
  position: relative;

  display: grid;

  grid-template-columns: 105px 45px 1fr;

  gap: 0;

  padding-bottom: 52px;
}


.history-item:last-child {
  padding-bottom: 0;
}


.history-year {
  padding-top: 3px;

  color: var(--blue);

  font-family: Georgia, serif;

  font-size: 1.65rem;

  font-weight: 700;
}


.history-marker {
  position: relative;
}


.history-marker::before {
  content: "";

  position: absolute;

  top: 8px;
  left: 15px;

  width: 17px;
  height: 17px;

  background: var(--gold);

  border: 5px solid var(--white);

  border-radius: 50%;

  box-shadow:
    0 0 0 2px var(--gold);
}


.history-content {
  padding-left: 18px;
}


.history-content h3 {
  margin-bottom: 7px;

  color: var(--navy-dark);

  font-family: Georgia, serif;

  font-size: 1.5rem;
}


.history-content p {
  max-width: 650px;

  color: var(--muted);
}


/* ==========================================================
   FRIENDS + YOUTH BUREAU
========================================================== */

.about-partnership-section {
  padding: 90px 0;

  background: var(--navy-dark);
}


.about-partnership-layout {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 70px;

  align-items: center;
}


.about-partnership-section h2 {
  color: var(--white);
}


.about-partnership-section p:not(.section-label) {
  margin-bottom: 15px;

  color: rgba(255, 255, 255, 0.8);
}


.about-partnership-statements {
  display: grid;

  grid-template-columns: 1fr auto 1fr;

  gap: 18px;

  align-items: center;
}


.about-partnership-statements > div:not(.partnership-plus) {
  min-height: 190px;

  padding: 27px;

  display: flex;

  flex-direction: column;

  justify-content: center;

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

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 18px;
}


.about-partnership-statements strong {
  display: block;

  margin-bottom: 10px;

  color: var(--gold);

  font-family: Georgia, serif;

  font-size: 1.55rem;
}


.about-partnership-statements span {
  color: rgba(255, 255, 255, 0.77);
}


.partnership-plus {
  color: var(--gold);

  font-size: 2.4rem;

  font-weight: 300;
}


/* ==========================================================
   BOARD
========================================================== */

.board-section {
  background: var(--cream);
}


.board-leadership-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 18px;

  margin-bottom: 18px;
}


.board-special-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  margin-bottom: 48px;
}


.board-card {
  padding: 28px;

  background: var(--white);

  border: 1px solid var(--border);

  border-radius: 18px;

  box-shadow: 0 8px 22px rgba(8, 35, 63, 0.06);
}


.board-leader {
  border-top: 4px solid var(--gold);
}


.board-role {
  display: block;

  margin-bottom: 8px;

  color: var(--blue);

  font-size: 0.72rem;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.12em;
}


.board-card h3 {
  color: var(--navy-dark);

  font-family: Georgia, serif;

  font-size: 1.35rem;
}


.board-members-title {
  margin-bottom: 20px;

  color: var(--navy-dark);

  font-family: Georgia, serif;

  font-size: 1.65rem;
}


.board-member-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 13px;
}


.board-member {
  padding: 17px;

  color: var(--navy-dark);

  background: var(--white);

  border: 1px solid var(--border);

  border-radius: 12px;

  font-weight: 700;
}


.board-note {
  margin-top: 23px;

  color: var(--muted);

  font-size: 0.82rem;
}


/* ==========================================================
   VOLUNTEER CTA
========================================================== */

.about-volunteer-section {
  padding: 85px 0;

  background:
    linear-gradient(
      135deg,
      #0d3156,
      var(--navy-dark)
    );
}


.about-volunteer-layout {
  display: grid;

  grid-template-columns: 1.2fr 0.8fr;

  gap: 60px;

  align-items: center;
}


.about-volunteer-section h2 {
  color: var(--white);
}


.about-volunteer-section p:not(.section-label) {
  max-width: 680px;

  color: rgba(255, 255, 255, 0.8);
}


.about-volunteer-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 13px;
}


.about-contact-link {
  width: 100%;

  margin-top: 5px;

  color: var(--gold);

  font-weight: 750;
}


/* ==========================================================
   ABOUT CONTACT
========================================================== */

.about-contact-section {
  background: var(--white);
}


.about-contact-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}


.about-contact-card {
  padding: 30px;

  background: var(--blue-light);

  border-radius: 18px;
}


.about-contact-card span {
  display: block;

  margin-bottom: 8px;

  color: var(--blue);

  font-size: 0.72rem;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.12em;
}


.about-contact-card strong {
  display: block;

  color: var(--navy-dark);

  font-family: Georgia, serif;

  font-size: 1.25rem;

  overflow-wrap: anywhere;
}


.about-contact-card p {
  margin-top: 5px;

  color: var(--muted);
}
/* ==========================================================
   GET INVOLVED PAGE
========================================================== */


/* HERO */

.involved-page-hero {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(8, 35, 63, 0.86) 0%,
      rgba(8, 35, 63, 0.72) 30%,
      rgba(22, 61, 118, 0.43) 52%,
      rgba(22, 61, 118, 0.14) 74%,
      rgba(22, 61, 118, 0.03) 100%
    ),
    url("../images/get-involved-hero.jpg");

  background-size: 100% auto;
  background-position: center 56%;
  background-repeat: no-repeat;
  background-color: var(--navy-dark);
}


.involved-page-hero-content {
  width: min(92%, var(--container));

  max-width: var(--container);

  margin-left: auto;
  margin-right: auto;

  position: relative;

  z-index: 2;

  text-align: left;
}


.involved-page-hero-content > * {
  max-width: 630px;
}


.involved-page-hero .eyebrow {
  margin-bottom: 18px;

  color: var(--gold);

  font-size: 0.81rem;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.17em;
}


.involved-page-hero h1 {
  margin-bottom: 23px;

  color: var(--white);

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(3.2rem, 6vw, 5.7rem);

  line-height: 0.98;

  letter-spacing: -0.025em;
}


.involved-hero-description {
  color: rgba(255, 255, 255, 0.93);

  font-size: 1.12rem;

  line-height: 1.7;
}


/* INTRO */

.involved-intro-section {
  background: var(--white);
}


.involved-intro-layout {
  display: grid;

  grid-template-columns: 1.15fr 0.85fr;

  gap: 70px;

  align-items: center;
}


.involved-intro-section h2,
.involved-events-section h2,
.involved-sponsor-section h2,
.involved-scholarship-section h2,
.involved-donate-section h2,
.involved-check-section h2,
.involved-connect-section h2 {

  margin-bottom: 18px;

  color: var(--navy-dark);

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(2.05rem, 4vw, 3.15rem);

  line-height: 1.13;
}


.involved-intro-layout > div:first-child p:not(.section-label) {
  margin-bottom: 16px;

  color: var(--muted);
}


.involved-intro-layout .large-copy {
  color: var(--navy-dark);
}


.involved-message-card {
  padding: 42px;

  background:
    linear-gradient(
      145deg,
      var(--gold-light),
      #ffffff
    );

  border: 1px solid rgba(213, 174, 99, 0.5);

  border-radius: 24px;

  box-shadow: var(--shadow);
}


.involved-message-card h3 {
  margin-bottom: 14px;

  color: var(--navy-dark);

  font-family: Georgia, serif;

  font-size: 1.8rem;
}


.involved-message-card p {
  color: var(--muted);
}


.involved-message-line {
  width: 70px;
  height: 3px;

  margin: 23px 0;

  background: var(--gold);
}


.involved-message-card strong {
  color: var(--navy-dark);
}


/* WAYS TO HELP */

.involved-ways-section {
  padding: 90px 0;

  background:
    linear-gradient(
      135deg,
      var(--blue),
      var(--navy)
    );
}


.involved-ways-section .section-label {
  color: var(--gold-light);
}


.involved-ways-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}


.involved-way-card {
  padding: 32px;

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

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 19px;
}


.involved-way-number {
  display: block;

  margin-bottom: 17px;

  color: var(--gold-light);

  font-size: 0.74rem;

  font-weight: 800;

  letter-spacing: 0.14em;
}


.involved-way-card h3 {
  margin-bottom: 10px;

  color: var(--white);

  font-family: Georgia, serif;

  font-size: 1.5rem;
}


.involved-way-card p {
  margin-bottom: 18px;

  color: rgba(255, 255, 255, 0.79);
}


.involved-way-card a {
  color: var(--gold-light);

  font-weight: 800;
}


/* EVENTS */

.involved-events-section {
  background: var(--cream);
}


.involved-events-layout {
  display: grid;

  grid-template-columns: 1.05fr 0.95fr;

  gap: 70px;

  align-items: center;
}


.involved-events-photo img {
  width: 100%;

  height: 480px;

  object-fit: cover;

  border-radius: 25px;

  box-shadow: var(--shadow);
}


.involved-events-layout > div:last-child p:not(.section-label) {
  margin-bottom: 16px;

  color: var(--muted);
}


.involved-events-layout .large-copy {
  color: var(--navy-dark);
}


.involved-event-buttons {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 25px;
}


/* SPONSOR */

.involved-sponsor-section {
  padding: 85px 0;

  background: var(--navy-dark);
}


.involved-sponsor-layout {
  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  gap: 70px;

  align-items: center;
}


.involved-sponsor-section h2 {
  color: var(--white);
}


.involved-sponsor-section p:not(.section-label) {
  margin-bottom: 15px;

  color: rgba(255, 255, 255, 0.8);
}


.involved-sponsor-card {
  padding: 38px;

  background: var(--white);

  border-radius: 22px;

  box-shadow: var(--shadow);
}


.involved-sponsor-card > span {
  display: block;

  margin-bottom: 7px;

  color: var(--blue);

  font-size: 0.74rem;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.12em;
}


.involved-sponsor-card strong {
  display: block;

  margin-bottom: 12px;

  color: var(--navy-dark);

  font-family: Georgia, serif;

  font-size: 2rem;
}


.involved-sponsor-card p {
  margin-bottom: 22px;

  color: var(--muted);
}


/* SCHOLARSHIPS */

.involved-scholarship-section {
  background: var(--white);
}


.involved-scholarship-layout {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 70px;

  align-items: center;
}


.involved-scholarship-layout > div:first-child p:not(.section-label) {
  margin-bottom: 15px;

  color: var(--muted);
}


.involved-scholarship-photo img {
  width: 100%;

  height: 440px;

  object-fit: cover;

  object-position: center top;

  border-radius: 24px;

  box-shadow: var(--shadow);
}


/* DONATE */

.involved-donate-section {
  padding: 90px 0;

  background:
    linear-gradient(
      135deg,
      #0d3156,
      var(--navy-dark)
    );
}


.involved-donate-layout {
  display: grid;

  grid-template-columns: 1.15fr 0.85fr;

  gap: 70px;

  align-items: center;
}


.involved-donate-section h2 {
  color: var(--white);
}


.involved-donate-section p:not(.section-label) {
  margin-bottom: 15px;

  color: rgba(255, 255, 255, 0.8);
}


.involved-donate-card {
  padding: 38px;

  background: var(--white);

  border-radius: 22px;

  box-shadow: var(--shadow);
}


.involved-donate-card h3 {
  margin-bottom: 12px;

  color: var(--navy-dark);

  font-family: Georgia, serif;

  font-size: 1.7rem;
}


.involved-donate-card > p {
  margin-bottom: 20px;

  color: var(--muted) !important;
}


.involved-donate-card .secure-note {
  margin-top: 12px !important;

  margin-bottom: 0 !important;
}


/* CHECK */

.involved-check-section {
  background: var(--cream);
}


.involved-check-layout {
  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  gap: 70px;

  align-items: center;
}


.involved-check-layout > div:first-child > p:not(.section-label) {
  color: var(--muted);
}


.check-payee {
  display: block;

  margin-top: 8px;

  color: var(--navy-dark);

  font-family: Georgia, serif;

  font-size: 1.45rem;
}


.mailing-address-card {
  padding: 35px;

  background: var(--white);

  border-left: 5px solid var(--gold);

  border-radius: 18px;

  box-shadow: var(--shadow);
}


.mailing-address-card span {
  display: block;

  margin-bottom: 8px;

  color: var(--blue);

  font-size: 0.72rem;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.12em;
}


.mailing-address-card strong {
  display: block;

  margin-bottom: 8px;

  color: var(--navy-dark);

  font-family: Georgia, serif;

  font-size: 1.35rem;
}


.mailing-address-card p {
  color: var(--muted);
}


/* CONNECT */

.involved-connect-section {
  padding: 85px 0;

  background: var(--gold-light);
}


.involved-connect-layout {
  display: grid;

  grid-template-columns: 1.15fr 0.85fr;

  gap: 70px;

  align-items: center;
}


.involved-connect-layout > div:first-child p:not(.section-label) {
  margin-bottom: 15px;

  color: var(--muted);
}


.involved-connect-card {
  padding: 35px;

  background: var(--white);

  border-radius: 21px;

  box-shadow: var(--shadow);
}


.involved-connect-card h3 {
  margin-bottom: 10px;

  color: var(--navy-dark);

  font-family: Georgia, serif;

  font-size: 1.5rem;
}


.involved-connect-card p {
  margin-bottom: 22px;

  color: var(--muted);
}

/* TABLET */

@media (max-width: 1050px) {

  .main-nav {
    gap: 14px;
    font-size: 0.85rem;
  }

  .brand {
    min-width: 250px;
  }

}


@media (max-width: 1000px) {

  .mobile-menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 15px 4% 25px;
    background: var(--white);
    box-shadow: 0 12px 25px rgba(8, 35, 63, 0.12);
  }

  .main-nav.open,
  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 8px;
  }

  .main-nav .nav-donate {
    margin-top: 8px;
    text-align: center;
  }

  .about-layout,
  .impact-story-layout,
  .scholarship-layout,
  .donate-layout,
  .contact-layout,
  .event-intro-layout,
  .duck-action-layout,
  .duck-bbq-layout,
  .flyer-layout,
  .payment-layout,
  .tastings-feature-layout,
  .tastings-casino-layout,
  .tastings-community-layout,
  .scholarship-page-intro-layout,
  .scholarship-recipients-layout,
  .scholarship-recognition-layout,
  .scholarship-application-layout,
  .scholarship-donate-layout {
    grid-template-columns: 1fr;
  }

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

  .support-card-grid,
  .impact-grid,
  .giveaway-grid,
  .tastings-experience-grid,
  .sponsorship-grid,
  .scholarship-focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

}


/* MOBILE */

@media (max-width: 700px) {

  .section,
  .impact-section,
  .donate-section,
  .photo-story-section,
  .scholarship-recipients-section,
  .scholarship-focus-section {
    padding: 65px 0;
  }

  .top-bar-inner {
    justify-content: center;
  }

  .top-bar span {
    display: none;
  }

  .header-inner {
    min-height: 76px;
  }

  .site-logo {
    width: 50px;
    height: 50px;
  }

  .brand {
    min-width: 0;
  }

  .brand-main {
    font-size: 0.58rem;
  }

  .brand-name {
    font-size: 0.88rem;
  }

  .main-nav {
    top: 76px;
  }


  /* HERO TEXT STANDARD */

  .hero-content,
  .event-page-hero-content,
  .tastings-page-hero-content,
  .scholarship-page-hero-content {
    width: 92%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .hero-content > *,
  .event-page-hero-content > *,
  .tastings-page-hero-content > *,
  .scholarship-page-hero-content > * {
    max-width: 100%;
  }


  /* HOMEPAGE */

  .hero {
    min-height: 620px;
    background-position: 61% center;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 11vw, 3.9rem);
  }

  .hero-description {
    font-size: 1rem;
  }


  /* EVENT HERO */

  .event-page-hero,
  .tastings-page-hero,
  .scholarship-page-hero {
    min-height: 590px;
  }

  .duck-page-hero {
    background-position: 58% center;
  }

  .tastings-page-hero {
    background-position: 58% 20%;
  }

  .scholarship-page-hero {
    background-position: 62% 8%;
  }

  .about-page-hero {
    min-height: 590px;
    background-size: cover;
    background-position: 56% center;
  }

  .event-page-hero h1,
  .tastings-page-hero h1,
  .scholarship-page-hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
    line-height: 0.98;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }


  /* GRIDS */

  .program-feature-grid,
  .support-card-grid,
  .photo-story-grid,
  .impact-grid,
  .event-grid,
  .involvement-grid,
  .footer-grid,
  .giveaway-grid,
  .prize-grid,
  .event-quick-grid,
  .tastings-experience-grid,
  .sponsorship-grid,
  .tastings-gallery-grid,
  .scholarship-focus-grid {
    grid-template-columns: 1fr;
  }


  /* PHOTOS */

  .about-photo {
    height: 350px;
  }

  .photo-caption-card {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: none;
    margin: -25px 18px 0;
  }

  .impact-story-image img {
    height: 330px;
  }

  .program-photo {
    height: 260px;
  }

  .photo-story-item {
    height: 350px;
  }

  .scholarship-highlight {
    min-height: 260px;
    padding: 32px;
  }

  .scholarship-highlight strong {
    font-size: 2.7rem;
  }

  .event-photo {
    height: auto;
  }

  .event-quick-item {
    border-right: 0;
    border-bottom: 1px solid rgba(8, 35, 63, 0.15);
  }

  .event-quick-item:last-child {
    border-bottom: 0;
  }

  .duck-price-box,
  .prize-card,
  .tasting-ticket-box {
    padding: 28px;
  }

  .duck-action-image img,
  .tastings-feature-image img,
  .tastings-casino-image img,
  .tastings-community-image img {
    height: 320px;
  }

  .tastings-gallery-item {
    height: 300px;
  }

  .scholarship-recipients-image img,
  .scholarship-recognition-image img {
    height: auto;
  }

  .scholarship-donate-layout .button {
    width: 100%;
  }

}
/* =========================================================
   HOMEPAGE UPCOMING EVENTS SPOTLIGHT
========================================================= */

.home-event-spotlight {
  padding: 58px 0;

  background:
    linear-gradient(
      135deg,
      var(--navy-dark) 0%,
      var(--navy) 65%,
      #225f91 100%
    );
}


.home-event-spotlight-heading {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 35px;

  margin-bottom: 30px;
}


.home-event-spotlight-heading > div {
  max-width: 720px;
}


.home-event-spotlight-heading .section-label {
  margin-bottom: 8px;

  color: var(--gold);
}


.home-event-spotlight-heading h2 {
  margin: 0;

  color: #fff;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(2rem, 4vw, 3.1rem);

  line-height: 1.08;
}


.home-event-view-all {
  flex-shrink: 0;

  padding-bottom: 5px;

  color: var(--gold-light);

  font-weight: 800;

  text-decoration: none;
}


.home-event-view-all:hover {
  color: #fff;
}


.home-event-spotlight-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 22px;
}


.home-event-highlight {
  display: grid;

  grid-template-columns: 88px 1fr;

  gap: 24px;

  align-items: center;

  padding: 28px;

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

  border:
    1px solid
    rgba(255, 255, 255, 0.16);

  border-radius: 18px;

  box-shadow:
    0 12px 30px
    rgba(0, 0, 0, 0.08);

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}


.home-event-highlight:hover {
  transform: translateY(-3px);

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

  border-color:
    rgba(213, 174, 99, 0.55);
}


.home-event-date {
  width: 82px;
  height: 94px;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  background: var(--gold);

  border-radius: 13px;

  color: var(--navy-dark);

  box-shadow:
    0 7px 20px
    rgba(0, 0, 0, 0.16);
}


.home-event-date span {
  margin-bottom: 3px;

  font-size: 0.72rem;

  font-weight: 900;

  letter-spacing: 0.14em;
}


.home-event-date strong {
  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 2.55rem;

  line-height: 0.95;
}


.home-event-highlight-content {
  min-width: 0;
}


.home-event-highlight-content .mini-label {
  margin: 0 0 5px;

  color: var(--gold-light);

  font-size: 0.75rem;

  font-weight: 800;

  letter-spacing: 0.07em;

  text-transform: uppercase;
}


.home-event-highlight-content h3 {
  margin: 0 0 8px;

  color: #fff;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 1.55rem;

  line-height: 1.2;
}


.home-event-highlight-content p:not(.mini-label) {
  margin: 0 0 11px;

  color:
    rgba(255, 255, 255, 0.82);

  font-size: 0.96rem;

  line-height: 1.55;
}


.home-event-highlight-content a {
  color: var(--gold-light);

  font-weight: 800;

  text-decoration: none;
}


.home-event-highlight-content a:hover {
  color: #fff;
}


/* =========================================================
   HOMEPAGE SECTION BUTTON
========================================================= */

.homepage-section-button {
  margin-top: 38px;

  text-align: center;
}


/* =========================================================
   EVENT SPOTLIGHT RESPONSIVE
========================================================= */

@media (max-width: 900px) {

  .home-event-spotlight-grid {
    grid-template-columns: 1fr;
  }


  .home-event-spotlight-heading {
    align-items: flex-start;

    flex-direction: column;

    gap: 16px;
  }

}


@media (max-width: 600px) {

  .home-event-spotlight {
    padding: 45px 0;
  }


  .home-event-highlight {
    grid-template-columns: 70px 1fr;

    gap: 17px;

    padding: 21px 18px;
  }


  .home-event-date {
    width: 68px;
    height: 78px;
  }


  .home-event-date span {
    font-size: 0.64rem;
  }


  .home-event-date strong {
    font-size: 2rem;
  }


  .home-event-highlight-content h3 {
    font-size: 1.3rem;
  }


  .home-event-highlight-content p:not(.mini-label) {
    font-size: 0.91rem;
  }

}


@media (max-width: 430px) {

  .home-event-highlight {
    grid-template-columns: 1fr;

    align-items: start;
  }


  .home-event-date {
    width: 72px;
    height: 72px;
  }

}
/* =========================================================
   HOMEPAGE LOWER SECTION POLISH
   Events → Support → Contact → Footer
========================================================= */


/* ---------------------------------------------------------
   UPCOMING EVENTS
   Remove excessive space beneath event cards
--------------------------------------------------------- */

.events-section {
  padding-top: 80px;
  padding-bottom: 75px;
}

.events-section .event-grid {
  margin-bottom: 0;
}

.event-card {
  margin-bottom: 0;
}


/* ---------------------------------------------------------
   SUPPORT THE FRIENDS
--------------------------------------------------------- */

.get-involved-section {
  padding: 68px 0 72px;

  background:
    linear-gradient(
      120deg,
      #287eae 0%,
      var(--navy) 50%,
      #17487f 100%
    );
}

.get-involved-section .section-heading {
  margin-bottom: 32px;
}

.get-involved-section .section-heading h2 {
  margin-bottom: 12px;
}

.get-involved-section .section-heading p:last-child {
  max-width: 690px;
  margin-bottom: 0;
}


/* Support cards */

.involvement-grid {
  gap: 18px;
}

.involvement-card {
  padding: 26px 28px;

  min-height: 190px;

  display: flex;
  flex-direction: column;

  border-radius: 16px;

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

  border: 1px solid rgba(255, 255, 255, 0.15);

  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.06);
}

.involvement-card h3 {
  margin-top: 13px;
  margin-bottom: 9px;
}

.involvement-card p {
  margin-bottom: 14px;
}

.involvement-card a {
  margin-top: auto;
}


/* ---------------------------------------------------------
   STAY CONNECTED
--------------------------------------------------------- */

.contact-section {
  padding: 58px 0 60px;

  background: #fff;
}

.contact-layout {
  align-items: center;

  gap: 70px;
}

.contact-layout > div:first-child {
  max-width: 650px;
}

.contact-layout h2 {
  margin-bottom: 13px;
}

.contact-layout p {
  margin-bottom: 0;
}


/* Contact information card */

.contact-card {
  padding: 27px 30px;

  border-radius: 16px;

  background: var(--blue-light);

  border-left: 4px solid var(--gold);

  box-shadow:
    0 8px 24px rgba(8, 35, 63, 0.05);
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 9px;
}

.contact-card p {
  margin-bottom: 0;
}


/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */

.site-footer {
  margin-top: 0;

  padding-top: 50px;
}

.footer-grid {
  padding-bottom: 38px;
}


/* ---------------------------------------------------------
   DESKTOP
--------------------------------------------------------- */

@media (min-width: 901px) {

  .get-involved-section .section-heading {
    text-align: left;

    max-width: 760px;
  }

}


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

@media (max-width: 900px) {

  .events-section {
    padding-top: 65px;
    padding-bottom: 60px;
  }

  .get-involved-section {
    padding: 58px 0;
  }

  .contact-section {
    padding: 50px 0;
  }

  .contact-layout {
    gap: 35px;
  }

}


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

@media (max-width: 650px) {

  .events-section {
    padding-top: 52px;
    padding-bottom: 50px;
  }

  .get-involved-section {
    padding: 50px 0;
  }

  .get-involved-section .section-heading {
    margin-bottom: 26px;
  }

  .involvement-grid {
    gap: 14px;
  }

  .involvement-card {
    min-height: auto;

    padding: 23px;
  }

  .contact-section {
    padding: 45px 0;
  }

  .contact-layout {
    gap: 28px;
  }

  .contact-card {
    padding: 23px;
  }

  .site-footer {
    padding-top: 42px;
  }

}

/* =========================================================
   EVENING OF TASTINGS GALLERY PHOTO POSITION FIX
========================================================= */

/* Bottom-left basket photo */
img[src*="tastings-basket"] {
  object-position: center 20%;
}

/* Bottom-middle speaker photo */
img[src*="tastings-speaker"] {
  object-position: center 18%;
}
/* =========================================================
   SINGLE REMAINING UPCOMING EVENT
========================================================= */

.home-event-spotlight.single-upcoming-event
.home-event-spotlight-grid {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}
/* ==========================================================
   GET INVOLVED COMMUNITY STORY
========================================================== */

.involved-story-section {
  background: var(--white);
}

.involved-story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.involved-story-copy {
  max-width: 540px;
}

.involved-story-copy h2 {
  margin-bottom: 18px;

  color: var(--navy-dark);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(2.05rem, 4vw, 3.15rem);

  line-height: 1.13;
}

.involved-story-copy p:not(.section-label) {
  margin-bottom: 15px;

  color: var(--muted);
}

.involved-story-copy .large-copy {
  color: var(--navy-dark);
}

.involved-story-photo {
  display: flex;
  justify-content: center;
}

.involved-story-photo img {
  width: 100%;
  max-width: 520px;
  height: 380px;

  object-fit: cover;
  object-position: center;

  border-radius: 24px;

  box-shadow: var(--shadow);
}


/* TABLET */

@media (max-width: 1000px) {

  .involved-story-layout {
    grid-template-columns: 1fr;
  }

  .involved-story-copy {
    max-width: 700px;
  }

  .involved-story-photo {
    justify-content: flex-start;
  }

}


/* MOBILE */

@media (max-width: 700px) {

  .involved-page-hero {
    min-height: 590px;
    background-size: cover;
    background-position: 56% 30%;
  }

  .involved-story-photo img {
    max-width: 100%;
    height: auto;
  }

}

/* ==========================================================
   MOBILE WIDTH / PAGE-SPECIFIC RESPONSIVE FIX
   About + Get Involved
   Prevents horizontal overflow and stacks page grids cleanly.
========================================================== */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 1000px) {

  .about-page-intro-layout,
  .about-community-layout,
  .about-partnership-layout,
  .about-volunteer-layout,
  .involved-intro-layout,
  .involved-events-layout,
  .involved-sponsor-layout,
  .involved-scholarship-layout,
  .involved-donate-layout,
  .involved-check-layout,
  .involved-connect-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-page-intro-layout,
  .about-community-layout,
  .about-partnership-layout,
  .about-volunteer-layout,
  .involved-intro-layout,
  .involved-events-layout,
  .involved-sponsor-layout,
  .involved-scholarship-layout,
  .involved-donate-layout,
  .involved-check-layout,
  .involved-connect-layout,
  .involved-story-layout {
    gap: 42px;
  }

  .about-support-grid,
  .board-leadership-grid,
  .board-member-grid,
  .about-contact-grid,
  .involved-ways-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-partnership-statements {
    grid-template-columns: minmax(0, 1fr);
  }

  .partnership-plus {
    text-align: center;
    line-height: 1;
  }

  .about-page-hero-content,
  .involved-page-hero-content {
    width: 92%;
    max-width: none;
  }

  .about-page-hero-content > *,
  .involved-page-hero-content > * {
    max-width: 100%;
  }
}

@media (max-width: 700px) {

  .about-support-grid,
  .board-leadership-grid,
  .board-special-grid,
  .board-member-grid,
  .about-contact-grid,
  .involved-ways-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-page-intro-layout,
  .about-community-layout,
  .about-partnership-layout,
  .about-volunteer-layout,
  .involved-intro-layout,
  .involved-story-layout,
  .involved-events-layout,
  .involved-sponsor-layout,
  .involved-scholarship-layout,
  .involved-donate-layout,
  .involved-check-layout,
  .involved-connect-layout {
    gap: 30px;
  }

  .about-mission-card,
  .about-support-card,
  .board-card,
  .about-contact-card,
  .involved-message-card,
  .involved-way-card,
  .involved-sponsor-card,
  .involved-donate-card,
  .mailing-address-card,
  .involved-connect-card {
    min-width: 0;
    max-width: 100%;
  }

  .about-contact-card strong,
  .about-contact-card a,
  .involved-way-card a,
  .check-payee {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .history-timeline {
    width: 100%;
    max-width: 100%;
    margin-top: 35px;
  }

  .history-timeline::before {
    left: 12px;
  }

  .history-item {
    grid-template-columns: minmax(0, 1fr);
    padding-left: 42px;
    padding-bottom: 38px;
  }

  .history-year {
    padding-top: 0;
    margin-bottom: 6px;
    font-size: 1.35rem;
  }

  .history-marker {
    position: absolute;
    left: 0;
    top: 0;
  }

  .history-marker::before {
    top: 7px;
    left: 4px;
  }

  .history-content {
    padding-left: 0;
    min-width: 0;
  }

  .about-partnership-statements > div:not(.partnership-plus) {
    min-height: auto;
  }

  .about-volunteer-actions {
    align-items: stretch;
  }

  .about-volunteer-actions .button {
    width: 100%;
  }

  .involved-event-buttons {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .involved-event-buttons .button {
    width: 100%;
  }
}

/* ==========================================================
   MOBILE HERO POLISH — ABOUT + SCHOLARSHIPS
   Keeps headlines readable and prevents oversized mobile heroes.
========================================================== */

@media (max-width: 700px) {

  .about-page-hero,
  .scholarship-page-hero {
    min-height: 620px;
    padding: 54px 0;
  }

  .about-page-hero-content,
  .scholarship-page-hero-content {
    width: 90%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .about-page-hero .eyebrow,
  .scholarship-page-hero .eyebrow {
    margin-bottom: 14px;
    font-size: 0.70rem;
    line-height: 1.5;
    letter-spacing: 0.12em;
  }

  .about-page-hero h1,
  .scholarship-page-hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.65rem, 12vw, 3.55rem);
    line-height: 1;
    overflow-wrap: normal;
    word-break: normal;
  }

  .about-hero-description,
  .scholarship-hero-description {
    font-size: 1rem;
    line-height: 1.58;
  }

  .about-page-hero .hero-buttons,
  .scholarship-page-hero .hero-buttons {
    width: 100%;
    gap: 12px;
    margin-top: 24px;
  }

  .about-page-hero .hero-buttons .button,
  .scholarship-page-hero .hero-buttons .button {
    width: min(100%, 390px);
    min-height: 52px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .scholarship-page-hero {
    background-position: 64% 8%;
  }

  .about-page-hero {
    background-position: 56% center;
  }
}

