:root {
  --ink: #17231f;
  --ink-soft: #51605a;
  --forest: #183a31;
  --forest-2: #245447;
  --accent: #db2f77;
  --accent-dark: #ad1c59;
  --cream: #f5f2eb;
  --paper: #fcfbf8;
  --sage: #dce9e2;
  --line: rgba(23, 35, 31, .12);
  --white: #fff;
  --shadow: 0 22px 60px rgba(22, 45, 37, .12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 6vw, 6.35rem); margin-bottom: 28px; }
h2 { font-size: clamp(2.25rem, 4.4vw, 4.35rem); margin-bottom: 0; }
h3 { font-size: 1.55rem; margin-bottom: 12px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 120px 0; }

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 1000;
  transform: translateY(-150%); padding: 10px 16px; border-radius: 8px;
  background: var(--white); color: var(--ink); font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #ff8ab8; outline-offset: 4px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  background: rgba(24, 58, 49, .88);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { background: rgba(24, 58, 49, .97); box-shadow: 0 10px 35px rgba(0,0,0,.14); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); text-decoration: none; }
.brand-mark {
  width: 52px; height: 52px; display: grid; place-items: center; flex: 0 0 auto;
  overflow: hidden; border-radius: 50%; background: var(--white); box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; padding: 3px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.18; }
.brand-copy strong { font-size: 15px; letter-spacing: -.01em; }
.brand-copy small { margin-top: 4px; color: rgba(255,255,255,.66); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { color: rgba(255,255,255,.78); text-decoration: none; font-size: 14px; font-weight: 700; transition: color .2s ease; }
.main-nav a:hover { color: var(--white); }
.main-nav .nav-cta {
  padding: 11px 18px; border-radius: 999px; color: var(--white);
  background: var(--accent); box-shadow: 0 8px 22px rgba(219,47,119,.28);
}
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 0; border-radius: 50%; background: rgba(255,255,255,.1); cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 4px 0; border-radius: 2px; background: var(--white); transition: .2s ease; }

.hero {
  position: relative; min-height: 790px; padding: 150px 0 88px; overflow: hidden;
  color: var(--white); background: var(--forest);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 58px 58px; mask-image: linear-gradient(to right, #000, transparent 75%);
}
.hero-glow {
  position: absolute; width: 650px; height: 650px; left: -240px; bottom: -360px; border-radius: 50%;
  background: rgba(219,47,119,.23); filter: blur(30px);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 74px; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin-bottom: 22px; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 2px; background: var(--accent); }
.eyebrow.dark { color: var(--accent-dark); }
.eyebrow.light { color: rgba(255,255,255,.68); }
.hero h1 em { color: #f784b2; font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero-lead { max-width: 650px; margin-bottom: 34px; color: rgba(255,255,255,.74); font-size: clamp(1.05rem, 1.6vw, 1.24rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 54px; }
.button {
  display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 13px 20px;
  border: 1px solid transparent; border-radius: 999px; text-decoration: none; font-size: 14px; font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--accent); box-shadow: 0 12px 28px rgba(219,47,119,.28); }
.button-primary:hover { background: #eb3e85; }
.button-ghost { border-color: rgba(255,255,255,.22); color: var(--white); background: rgba(255,255,255,.06); }
.button-ghost:hover { background: rgba(255,255,255,.12); }
.hero-proof { display: flex; gap: 34px; margin: 0; padding: 0; list-style: none; }
.hero-proof li { display: flex; flex-direction: column; }
.hero-proof strong { font-size: 1.2rem; color: var(--white); }
.hero-proof span { color: rgba(255,255,255,.55); font-size: 12px; }

.hero-visual { position: relative; justify-self: end; width: min(100%, 520px); }
.photo-frame { position: relative; z-index: 1; overflow: hidden; aspect-ratio: .88; border-radius: 190px 190px 30px 30px; box-shadow: 0 34px 80px rgba(0,0,0,.33); }
.photo-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,35,28,.3), transparent 45%); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 52%; }
.schedule-card {
  position: absolute; z-index: 3; left: -52px; bottom: 38px; display: flex; align-items: center; gap: 14px;
  width: 260px; padding: 18px; border-radius: 18px; color: var(--ink); background: rgba(255,255,255,.95);
  box-shadow: var(--shadow); backdrop-filter: blur(15px);
}
.schedule-card small { display: block; margin-bottom: 4px; color: var(--ink-soft); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.schedule-card strong { display: block; font-size: 14px; line-height: 1.45; }
.schedule-icon { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--white); background: var(--accent); font-size: 20px; }
.hero-dots { position: absolute; z-index: 0; right: -50px; top: 62px; width: 170px; height: 170px; opacity: .35; background-image: radial-gradient(#f784b2 1.8px, transparent 1.8px); background-size: 15px 15px; }

.quick-info { background: var(--white); border-bottom: 1px solid var(--line); }
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.quick-grid > div { display: flex; align-items: center; gap: 15px; min-height: 112px; padding: 22px 32px; border-right: 1px solid var(--line); }
.quick-grid > div:first-child { padding-left: 0; }
.quick-grid > div:last-child { border-right: 0; }
.quick-icon { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--accent-dark); background: #fde7f0; font-weight: 900; }
.quick-grid p { display: flex; flex-direction: column; margin: 0; line-height: 1.35; }
.quick-grid small { margin-bottom: 3px; color: var(--ink-soft); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.quick-grid strong { font-size: 14px; }

.education { background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 60px; margin-bottom: 58px; }
.section-heading > p { margin: 0 0 6px; color: var(--ink-soft); }
.section-heading.compact { margin-bottom: 48px; }
.course-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.course-card { position: relative; min-height: 360px; padding: 34px; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.course-card::after { content: ""; position: absolute; width: 260px; height: 260px; right: -110px; bottom: -120px; border-radius: 50%; opacity: .6; }
.course-card.puppy { background: #f7e7ee; }
.course-card.puppy::after { background: #e99aba; }
.course-card.adult { background: var(--sage); }
.course-card.adult::after { background: #9ac5ae; }
.course-top { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; margin-bottom: 80px; }
.course-number { font-size: 13px; font-weight: 900; letter-spacing: .15em; }
.course-badge { padding: 7px 11px; border-radius: 999px; background: rgba(255,255,255,.64); font-size: 11px; font-weight: 800; }
.course-card h3, .course-card p, .course-time { position: relative; z-index: 1; max-width: 430px; }
.course-card h3 { font-size: 2rem; }
.course-card p { color: var(--ink-soft); }
.course-time { display: flex; gap: 8px; align-items: center; margin-top: 28px; }
.course-time span { font-size: 12px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .08em; }
.course-time strong { font-size: 14px; }
.first-visit { display: grid; grid-template-columns: .82fr 1.18fr; gap: 62px; margin-top: 22px; padding: 55px; border-radius: var(--radius-lg); color: var(--white); background: var(--forest); box-shadow: var(--shadow); }
.first-visit h2 { font-size: clamp(2.1rem, 4vw, 3.5rem); margin-bottom: 18px; }
.first-visit-intro > p:not(.eyebrow) { color: rgba(255,255,255,.66); }
.first-visit-intro > a { display: inline-block; margin-top: 14px; color: #f784b2; font-size: 14px; font-weight: 800; text-decoration: none; }
.checklist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 0; padding: 0; list-style: none; }
.checklist li { display: flex; align-items: center; gap: 12px; min-height: 82px; padding: 15px; border-radius: 16px; background: rgba(255,255,255,.075); border: 1px solid rgba(255,255,255,.09); }
.checklist li > span { width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--white); background: var(--accent); font-size: 13px; font-weight: 900; }
.checklist div { display: flex; flex-direction: column; }
.checklist strong { font-size: 13px; }
.checklist small { color: rgba(255,255,255,.58); font-size: 11px; }

.disciplines { background: var(--cream); }
.discipline-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); }
.discipline-card { min-height: 510px; padding: 34px; overflow: hidden; border-right: 1px solid var(--line); transition: transform .25s ease, background .25s ease; }
.discipline-card:last-child { border-right: 0; }
.discipline-card:hover { background: #f8f3f5; }
.discipline-card.featured { color: var(--white); background: var(--accent); }
.discipline-photo { position: relative; height: 220px; margin: -34px -34px 30px; overflow: hidden; background: var(--forest); }
.discipline-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,38,31,.25), transparent 58%); pointer-events: none; }
.discipline-photo img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .55s ease; }
.discipline-card:hover .discipline-photo img { transform: scale(1.035); }
.discipline-photo-obeissance img { object-position: 50% 43%; }
.discipline-photo-ring img { object-position: 50% 47%; }
.discipline-photo-igp img { object-position: 50% 52%; }
.discipline-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; color: var(--accent-dark); background: #fde7f0; font-size: 22px; }
.featured .discipline-icon { color: var(--white); background: rgba(255,255,255,.18); }
.discipline-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; }
.discipline-index { margin: 0; color: var(--ink-soft); font-size: 11px; font-weight: 900; letter-spacing: .16em; }
.featured .discipline-index { color: rgba(255,255,255,.7); }
.discipline-tag { margin-bottom: 10px; color: var(--accent-dark); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.featured .discipline-tag { color: rgba(255,255,255,.72); }
.discipline-summary { min-height: 138px; color: var(--ink-soft); font-size: 14px; }
.featured .discipline-summary { color: rgba(255,255,255,.76); }
.discipline-details { display: grid; gap: 9px; margin: 24px 0 0; padding: 21px 0 0 18px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 13px; line-height: 1.45; }
.featured .discipline-details { border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.84); }
.discipline-details li::marker { color: var(--accent); }
.featured .discipline-details li::marker { color: #fff; }
.disciplines-note { max-width: 820px; margin: 30px auto 0; padding: 19px 24px; border-radius: 16px; color: var(--ink-soft); background: rgba(255,255,255,.72); text-align: center; font-size: 14px; }
.disciplines-note strong { color: var(--ink); }

.field-story { padding: 110px 0; color: var(--white); background: var(--forest); overflow: hidden; }
.field-grid { display: grid; grid-template-columns: .83fr 1.17fr; align-items: center; gap: 90px; }
.club-emblem {
  position: relative; min-height: 500px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 180px 24px 24px 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.025));
  box-shadow: 0 35px 65px rgba(0,0,0,.22);
}
.club-emblem::before {
  content: ""; position: absolute; width: 330px; height: 330px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%;
}
.club-emblem img { position: relative; width: 150px; height: 150px; margin-bottom: 26px; object-fit: contain; border-radius: 50%; background: #fff; box-shadow: 0 18px 45px rgba(0,0,0,.22); }
.club-emblem span, .club-emblem small { position: relative; color: rgba(255,255,255,.58); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.club-emblem strong { position: relative; margin: 4px 0; color: #f784b2; font-family: Georgia, "Times New Roman", serif; font-size: 4.7rem; line-height: 1; font-weight: 400; }
.field-copy blockquote { max-width: 680px; margin: 0 0 28px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.25rem, 4.7vw, 4.5rem); line-height: 1.08; letter-spacing: -.035em; }
.field-copy > p:not(.eyebrow) { max-width: 610px; color: rgba(255,255,255,.66); }
.text-link { display: inline-flex; gap: 10px; margin-top: 18px; color: #f784b2; text-decoration: none; font-size: 14px; font-weight: 850; }


.galleries { overflow: hidden; background: #efeae0; }
.gallery-layout { display: grid; grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr); align-items: stretch; gap: 20px; }
.gallery-feature {
  position: relative; min-height: 560px; overflow: hidden; border-radius: var(--radius-lg);
  color: var(--white); background: var(--forest); box-shadow: 0 22px 55px rgba(22,45,37,.13);
}
.gallery-feature-link { position: relative; display: block; width: 100%; height: 100%; min-height: 560px; overflow: hidden; color: var(--white); text-decoration: none; }
.gallery-feature-photo { position: absolute; inset: 0; overflow: hidden; }
.gallery-feature-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,28,23,.04) 25%, rgba(10,28,23,.9) 100%); }
.gallery-feature-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-feature-link:hover .gallery-feature-photo img { transform: scale(1.035); }
.gallery-feature-photo.is-empty { display: grid; place-items: center; background: linear-gradient(145deg, var(--forest), var(--forest-2)); }
.gallery-feature-photo.is-empty::before {
  content: "CEC"; color: rgba(255,255,255,.1); font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(6rem, 12vw, 10rem);
}
.gallery-feature-copy { position: absolute; z-index: 2; inset: auto 30px 30px; }
.gallery-feature-copy small { display: block; margin-bottom: 8px; color: #f5a4c5; font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.gallery-feature-copy strong { display: block; max-width: 470px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.75rem, 3.4vw, 2.7rem); line-height: 1.08; font-weight: 500; }
.gallery-feature-action { display: inline-flex; align-items: center; gap: 8px; margin-top: 17px; font-size: 12px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.gallery-directory { min-width: 0; padding: 19px 24px 17px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 18px 45px rgba(22,45,37,.08); }
.gallery-directory-head { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
.gallery-directory-head small { color: var(--accent-dark); font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.gallery-directory-head h3 { margin: 2px 0 13px; font-size: 1.55rem; }
.gallery-count { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--white); background: var(--forest); font-size: 12px; font-weight: 900; }
.gallery-list { display: grid; }
.gallery-row {
  min-height: 82px; display: grid; grid-template-columns: 38px minmax(0, 1fr) auto; align-items: center; gap: 14px;
  padding: 12px 3px; border-bottom: 1px solid var(--line); color: var(--ink); text-decoration: none;
  animation: gallery-rise .4s both; transition: padding .2s ease, background .2s ease;
}
.gallery-row:hover { padding-inline: 10px; background: var(--cream); }
.gallery-row-index { color: var(--accent-dark); font-size: 10px; font-weight: 900; letter-spacing: .1em; }
.gallery-row-copy { min-width: 0; display: flex; flex-direction: column; }
.gallery-row-copy strong { overflow: hidden; font-size: 14px; line-height: 1.3; text-overflow: ellipsis; white-space: nowrap; }
.gallery-row-copy small { margin-top: 4px; overflow: hidden; color: var(--ink-soft); font-size: 10px; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.gallery-row-action { display: inline-flex; align-items: center; gap: 7px; color: var(--accent-dark); font-size: 10px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; }
.gallery-more {
  width: 100%; margin-top: 14px; padding: 12px 16px; border: 1px solid var(--line); border-radius: 999px;
  color: var(--forest); background: var(--cream); font-weight: 850; font-size: 12px; cursor: pointer;
}
.gallery-more:hover { background: var(--sage); }
.gallery-feedback { margin: 20px 0 0; color: var(--ink-soft); font-size: 12px; text-align: center; }
.gallery-fallback { padding: 27px 12px; color: var(--ink-soft); text-align: center; }
.gallery-fallback strong { display: block; margin-bottom: 6px; color: var(--ink); font-size: 1.05rem; }
.gallery-feature-skeleton { position: absolute; inset: 0; background: linear-gradient(100deg, #21463c 25%, #315c50 50%, #21463c 75%); background-size: 220% 100%; animation: gallery-shimmer 1.5s infinite; }
.gallery-row-skeleton { min-height: 82px; display: grid; align-content: center; gap: 9px; border-bottom: 1px solid var(--line); }
.gallery-row-skeleton span { height: 10px; border-radius: 999px; background: linear-gradient(90deg, #e4ded2 25%, #f8f5ef 50%, #e4ded2 75%); background-size: 220% 100%; animation: gallery-shimmer 1.5s infinite; }
.gallery-row-skeleton span:first-child { width: 52%; height: 14px; }
.gallery-row-skeleton span:last-child { width: 76%; }
@keyframes gallery-shimmer { to { background-position-x: -220%; } }
@keyframes gallery-rise { from { opacity: 0; transform: translateY(10px); } }

.events { background: var(--paper); }
.event-list { border-top: 1px solid var(--line); }
.event-card { display: grid; grid-template-columns: 120px 1fr auto; align-items: center; gap: 38px; min-height: 152px; padding: 22px 18px; border-bottom: 1px solid var(--line); transition: background .2s ease, padding .2s ease; }
.event-card:hover { padding-inline: 28px; background: var(--cream); }
.event-card time { width: 82px; height: 82px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 50%; color: var(--accent-dark); background: #fde7f0; line-height: 1.1; }
.event-card time span { font-size: 1.35rem; font-weight: 900; }
.event-card time small { margin-top: 4px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.event-card h3 { margin-bottom: 6px; font-size: 1.6rem; }
.event-card div > p:last-child { margin: 0; color: var(--ink-soft); font-size: 14px; }
.event-type { margin-bottom: 5px; color: var(--accent-dark); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.event-status { padding: 7px 12px; border-radius: 999px; color: var(--ink-soft); background: var(--cream); font-size: 11px; font-weight: 800; }
.event-card.is-upcoming .event-status { color: var(--white); background: var(--accent); }
.event-card.is-current .event-status { color: var(--forest); background: #b9eacb; }

.club { background: var(--cream); }
.club-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 100px; }
.club-copy > p:not(.eyebrow) { max-width: 680px; color: var(--ink-soft); font-size: 17px; }
.club-copy h2 { margin-bottom: 30px; }
.president-card { display: flex; align-items: center; gap: 22px; padding: 30px; border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow); }
.initials { width: 82px; height: 82px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--white); background: var(--forest); font-weight: 900; }
.president-card small { color: var(--ink-soft); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.president-card h3 { margin: 4px 0 7px; }
.president-card a { color: var(--accent-dark); font-size: 14px; font-weight: 850; text-decoration: none; }
.partners { margin-top: 90px; padding-top: 42px; border-top: 1px solid var(--line); }
.partners-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 28px; }
.partners-heading .eyebrow { margin-bottom: 0; }
.partners-heading h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; font-weight: 500; }
.partner-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 0; padding: 0; list-style: none; }
.partner-card {
  position: relative; min-height: 112px; display: grid; grid-template-columns: 68px 1fr auto; align-items: center; gap: 17px;
  padding: 18px 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.72);
  text-decoration: none; transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.partner-card:hover { transform: translateY(-3px); background: var(--white); box-shadow: 0 16px 35px rgba(22,45,37,.1); }
.partner-logo {
  position: relative; width: 68px; height: 68px; display: grid; place-items: center; overflow: hidden;
  border: 1px solid var(--line); border-radius: 16px; color: var(--forest); background: var(--white);
  font-size: 12px; font-weight: 900;
}
.partner-logo > span { position: absolute; }
.partner-logo img { position: relative; z-index: 1; width: 82%; height: 82%; object-fit: contain; background: var(--white); }
.partner-logo img.is-broken { opacity: 0; }
.partner-card > span:nth-child(2) { min-width: 0; display: flex; flex-direction: column; }
.partner-card strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.16rem; line-height: 1.25; }
.partner-card small { margin-top: 4px; color: var(--ink-soft); font-size: 11px; }
.partner-products { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.partner-product {
  display: inline-flex; align-items: center; gap: 5px; padding: 4px 8px; border-radius: 999px;
  color: var(--forest); background: var(--sage); font-size: 10px; font-weight: 850; line-height: 1;
}
.partner-product svg {
  width: 14px; height: 14px; flex: 0 0 auto; fill: none; stroke: var(--accent-dark);
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.partner-arrow { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: var(--accent-dark); background: #fde7f0; font-weight: 900; }

.contact { padding: 110px 0; color: var(--white); background: var(--accent-dark); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.contact-copy h2 { margin-bottom: 25px; }
.contact-copy > p:not(.eyebrow) { max-width: 520px; color: rgba(255,255,255,.72); }
.social-links { display: flex; gap: 12px; margin-top: 34px; }
.social-links a { display: inline-flex; gap: 12px; align-items: center; padding: 10px 15px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; text-decoration: none; font-size: 13px; font-weight: 800; }
.contact-card { margin: 0; overflow: hidden; border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 30px 70px rgba(80,0,31,.24); font-style: normal; }
.contact-card a { position: relative; display: grid; gap: 4px; padding: 25px 65px 25px 28px; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); }
.contact-card a:last-child { border-bottom: 0; }
.contact-card a:hover { background: var(--cream); }
.contact-label { color: var(--ink-soft); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.contact-card strong { font-size: 15px; overflow-wrap: anywhere; }
.contact-arrow { position: absolute; right: 26px; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--accent); }

footer { padding: 34px 0; background: #102a23; color: rgba(255,255,255,.62); }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.footer-brand { justify-self: start; }
.footer-grid p { margin: 0; font-size: 11px; text-align: center; }
.footer-meta { display: grid; justify-items: center; gap: 5px; }
.footer-meta a { color: rgba(255,255,255,.76); font-size: 11px; font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.footer-grid > a:last-child { justify-self: end; color: rgba(255,255,255,.76); text-decoration: none; font-size: 12px; font-weight: 800; }

/* Privacy policy */
.legal-body { background: var(--cream); }
.legal-header { position: sticky; top: 0; z-index: 20; color: var(--white); background: var(--forest); border-bottom: 1px solid rgba(255,255,255,.1); }
.legal-nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: var(--white); text-decoration: none; font-size: 13px; font-weight: 800; }
.legal-back:hover { background: rgba(255,255,255,.1); }
.legal-hero { padding: 72px 0 66px; color: var(--white); background: var(--forest); }
.legal-hero h1 { max-width: 920px; margin-bottom: 22px; font-size: clamp(2.7rem, 6vw, 5.4rem); }
.legal-hero > .container > p:not(.eyebrow) { max-width: 760px; margin-bottom: 24px; color: rgba(255,255,255,.76); font-size: 1.08rem; }
.legal-updated { display: inline-flex; padding: 8px 13px; border-radius: 999px; color: var(--forest); background: var(--sage); font-size: 12px; font-weight: 850; }
.legal-content { padding: 64px 0 110px; }
.legal-card { width: min(100%, 920px); margin-inline: auto; padding: clamp(28px, 5vw, 64px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); }
.legal-card section + section { margin-top: 42px; padding-top: 38px; border-top: 1px solid var(--line); }
.legal-card h2 { margin-bottom: 17px; font-size: clamp(1.45rem, 3vw, 2rem); }
.legal-card p { color: var(--ink-soft); }
.legal-card p:last-child { margin-bottom: 0; }
.legal-card ul { margin: 10px 0 0; padding-left: 22px; color: var(--ink-soft); }
.legal-card li + li { margin-top: 7px; }
.legal-card a { color: var(--accent-dark); font-weight: 750; overflow-wrap: anywhere; }
.legal-contact { padding: 22px; border-radius: 18px; background: var(--sage); }
.legal-contact strong { display: block; margin-bottom: 7px; color: var(--forest); }
.legal-footer .footer-grid { grid-template-columns: 1fr auto; }
.legal-footer .footer-grid > a:last-child { justify-self: end; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .section { padding: 90px 0; }
  .menu-toggle { display: block; position: relative; z-index: 102; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  body.menu-open .site-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .main-nav {
    position: fixed; inset: 0; z-index: 101; width: 100vw; height: 100vh; height: 100dvh; min-height: 100vh;
    display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 24px;
    padding: max(100px, calc(env(safe-area-inset-top) + 86px)) max(30px, calc((100vw - 900px)/2)) max(44px, calc(env(safe-area-inset-bottom) + 28px));
    overflow-y: auto; overscroll-behavior: contain; background: var(--forest);
    opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .25s ease;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { font-size: clamp(1.8rem, 6vw, 3rem); }
  .main-nav .nav-cta { padding: 10px 0; border-radius: 0; background: none; box-shadow: none; color: #f784b2; }
  .hero { min-height: auto; padding-top: 140px; }
  .hero-grid { grid-template-columns: 1fr; gap: 70px; }
  .hero-copy { max-width: 790px; }
  .hero-visual { width: min(86%, 610px); justify-self: center; }
  .photo-frame { aspect-ratio: 1.05; border-radius: 180px 180px 28px 28px; }
  .section-heading, .club-grid, .contact-grid { grid-template-columns: 1fr; gap: 35px; }
  .gallery-layout { grid-template-columns: 1fr; }
  .gallery-feature, .gallery-feature-link { min-height: 470px; }
  .section-heading > p { max-width: 680px; }
  .discipline-grid { grid-template-columns: 1fr; }
  .discipline-card { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .discipline-photo { height: 300px; }
  .discipline-card:last-child { border-bottom: 0; }
  .discipline-summary { min-height: auto; }
  .first-visit { grid-template-columns: 1fr; gap: 38px; }
  .field-grid { gap: 55px; }
  .club-grid { align-items: start; }
  .president-card { max-width: 520px; }
  .partner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { gap: 50px; }
  .footer-grid { grid-template-columns: 1fr auto; }
  .footer-grid p { grid-column: 1/-1; grid-row: 2; text-align: left; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .nav-wrap { min-height: 68px; }
  .brand-mark { width: 45px; height: 45px; }
  .brand-copy strong { font-size: 13px; }
  .brand-copy small { font-size: 9px; }
  .hero { padding: 122px 0 70px; }
  .hero h1 { font-size: clamp(2.75rem, 13.4vw, 4.4rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; margin-bottom: 38px; }
  .button { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .hero-proof strong { font-size: 1rem; }
  .hero-proof span { font-size: 10px; }
  .hero-visual { width: 100%; }
  .photo-frame { aspect-ratio: .9; border-radius: 120px 120px 22px 22px; }
  .schedule-card { left: 12px; right: 12px; bottom: 14px; width: auto; }
  .hero-dots { display: none; }
  .quick-grid { grid-template-columns: 1fr; padding: 10px 0; }
  .quick-grid > div, .quick-grid > div:first-child { min-height: 80px; padding: 15px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-grid > div:last-child { border-bottom: 0; }
  .section-heading { gap: 22px; margin-bottom: 38px; }
  h2 { font-size: clamp(2.15rem, 11vw, 3.3rem); }
  .course-grid { grid-template-columns: 1fr; }
  .course-card { min-height: 330px; padding: 26px; }
  .course-top { margin-bottom: 62px; }
  .first-visit { padding: 34px 22px; border-radius: 24px; }
  .checklist { grid-template-columns: 1fr; }
  .discipline-grid { grid-template-columns: 1fr; }
  .discipline-card { min-height: 0; padding: 27px 23px; border-right: 0; border-bottom: 1px solid var(--line); }
  .discipline-photo { height: 220px; margin: -27px -23px 26px; }
  .discipline-card:last-child { border-bottom: 0; }
  .discipline-head { margin-bottom: 36px; }
  .discipline-summary { min-height: 0; }
  .disciplines-note { padding: 18px; text-align: left; }
  .field-story { padding: 75px 0; }
  .field-grid { grid-template-columns: 1fr; gap: 48px; }
  .club-emblem { min-height: 420px; max-width: 440px; border-radius: 100px 20px 20px 20px; }
  .club-emblem strong { font-size: 4rem; }
  .field-copy blockquote { font-size: clamp(2.15rem, 10.5vw, 3.4rem); }
  .gallery-feature, .gallery-feature-link { min-height: 360px; }
  .gallery-feature-copy { inset: auto 22px 23px; }
  .gallery-directory { padding: 15px 16px 14px; border-radius: 23px; }
  .gallery-row { grid-template-columns: 29px minmax(0, 1fr) auto; gap: 10px; }
  .gallery-row-action { font-size: 0; }
  .gallery-row-action span { font-size: 15px; }
  .event-card { grid-template-columns: 76px 1fr; gap: 15px; min-height: 135px; padding: 20px 0; }
  .event-card:hover { padding-inline: 0; }
  .event-card time { width: 68px; height: 68px; }
  .event-card time span { font-size: 1.05rem; }
  .event-status { grid-column: 2; justify-self: start; margin-top: -4px; }
  .club-copy > p:not(.eyebrow) { font-size: 16px; }
  .president-card { padding: 22px; }
  .initials { width: 65px; height: 65px; }
  .partners { margin-top: 65px; }
  .partners-heading { display: block; }
  .partners-heading h3 { margin-top: 10px; }
  .partner-grid { grid-template-columns: 1fr; gap: 12px; }
  .partner-card { grid-template-columns: 56px 1fr auto; padding: 15px; }
  .partner-logo { width: 56px; height: 56px; }
  .contact { padding: 75px 0; }
  .social-links { flex-wrap: wrap; }
  .contact-card a { padding-left: 22px; }
  .footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; }
  .footer-grid p { order: 3; width: 100%; }
  .footer-meta { width: 100%; order: 3; }
  .legal-nav .brand-copy { display: none; }
  .legal-back { padding: 9px 13px; font-size: 12px; }
  .legal-hero { padding: 52px 0 50px; }
  .legal-content { padding: 36px 0 72px; }
  .legal-card { border-radius: 22px; }
  .legal-footer .footer-grid { display: grid; grid-template-columns: 1fr; justify-items: center; }
  .legal-footer .footer-grid > a:last-child { justify-self: center; }
}

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