/* =============================================================
   WM COMPUTARIZADO SRL · Sistema visual
   Paleta y ritmo basados en el logotipo institucional.
   ============================================================= */

:root {
  --blue: #2f6fe4;
  --blue-deep: #0c2b59;
  --blue-ink: #102a4d;
  --aqua: #36b7c2;
  --aqua-soft: #dff5f4;
  --green: #8bc63f;
  --green-soft: #e6f3c9;
  --sand: #f7f5ed;
  --paper: #ffffff;
  --ink: #152a46;
  --muted: #6d7b8f;
  --line: #dbe2e8;
  --coral: #f4866e;
  --gold: #f3c969;
  --shadow-sm: 0 10px 30px rgba(12, 43, 89, 0.09);
  --shadow-lg: 0 28px 80px rgba(12, 43, 89, 0.2);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --radius-xl: 48px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--sand);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-editing { cursor: crosshair; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { border: 0; cursor: pointer; }

::selection { color: var(--blue-deep); background: var(--green-soft); }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--blue-deep);
  background: var(--green);
  border-radius: 8px;
  transform: translateY(-180%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 48px)); margin: 0 auto; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Header */
.utility-bar { color: #c6d6ec; background: var(--blue-deep); font-size: 11px; }
.utility-inner { display: flex; align-items: center; justify-content: space-between; min-height: 35px; gap: 20px; }
.utility-message, .utility-links, .utility-links a { display: flex; align-items: center; }
.utility-message { gap: 8px; margin: 0; }
.status-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 4px rgba(139,198,63,.14); }
.utility-links { gap: 12px; justify-content: flex-end; }
.utility-links a { color: var(--aqua); font-weight: 700; }
.utility-links a:hover { color: #fff; }
.utility-divider { width: 1px; height: 12px; background: rgba(255,255,255,.24); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(247,245,237,.95);
  border-bottom: 1px solid rgba(12,43,89,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 82px; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; gap: 10px; }
.brand-logo { width: 58px; height: 58px; object-fit: contain; background: #fff; border-radius: 15px; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { color: var(--blue-deep); font-size: 16px; font-weight: 800; letter-spacing: -.04em; }
.brand-copy small { max-width: 155px; margin-top: 5px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; justify-content: flex-end; gap: 25px; color: #5c6b80; font-size: 12px; font-weight: 800; }
.main-nav > a { position: relative; padding: 9px 0; transition: color .2s ease; }
.main-nav > a:not(.nav-cta)::after { position: absolute; right: 0; bottom: 1px; left: 0; height: 2px; content: ""; background: var(--aqua); transform: scaleX(0); transform-origin: right; transition: transform .25s var(--ease); }
.main-nav > a:hover, .main-nav > a.is-active { color: var(--blue-deep); }
.main-nav > a:hover::after, .main-nav > a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; padding: 12px 16px !important; color: #fff !important; background: var(--blue); border-radius: 999px; transition: background .2s ease, transform .2s ease !important; }
.nav-cta:hover { background: var(--aqua); transform: translateY(-2px); }
.nav-toggle { display: none; width: 43px; height: 43px; padding: 10px; background: transparent; border: 1px solid var(--line); border-radius: 11px; }
.nav-toggle span { display: block; width: 100%; height: 2px; margin: 4px 0; background: var(--blue-deep); transition: transform .25s ease, opacity .25s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Common */
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 20px; color: var(--blue); font-family: "DM Mono", monospace; font-size: 10px; font-weight: 500; letter-spacing: .13em; line-height: 1.2; text-transform: uppercase; }
.eyebrow--light { color: #b8cbe6; }
.eyebrow-dot { width: 7px; height: 7px; flex: 0 0 7px; background: var(--coral); border-radius: 50%; box-shadow: 0 0 0 4px rgba(244,134,110,.15); }
.eyebrow-dot--aqua { background: var(--aqua); box-shadow: 0 0 0 4px rgba(54,183,194,.16); }
.section { padding: 115px 0; }
.section-heading { margin-bottom: 54px; }
.section-heading h2, .inner-title { margin: 0; color: var(--blue-deep); font-size: clamp(2.55rem, 5vw, 4.6rem); font-weight: 800; letter-spacing: -.09em; line-height: 1.02; }
.section-heading h2 em, .inner-title em { color: var(--blue); font-style: normal; }
.section-heading--split { display: flex; align-items: end; justify-content: space-between; gap: 45px; }
.section-lead { max-width: 400px; margin: 0 0 5px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 50px; padding: 13px 20px; border: 1px solid transparent; border-radius: 999px; font-size: 12px; font-weight: 800; line-height: 1.2; transition: transform .25s var(--ease), background .25s ease, box-shadow .25s ease, border-color .25s ease; }
.button:hover { transform: translateY(-3px); }
.button span { font-size: 17px; font-weight: 400; line-height: 0; }
.button--blue { color: #fff; background: var(--blue); box-shadow: 0 10px 24px rgba(47,111,228,.2); }
.button--blue:hover { background: var(--blue-deep); box-shadow: 0 15px 30px rgba(47,111,228,.27); }
.button--green { color: var(--blue-deep); background: var(--green); box-shadow: 0 10px 24px rgba(139,198,63,.18); }
.button--green:hover { background: #a4d95a; }
.button--platform { position: relative; isolation: isolate; color: var(--blue-deep); background: linear-gradient(110deg, #a9dc50 0%, #d9f47c 48%, #7ed8c8 100%); border: 2px solid rgba(255,255,255,.62); box-shadow: 0 12px 30px rgba(139,198,63,.32), 0 0 0 5px rgba(201,243,91,.1); font-weight: 800; }
.button--platform::before { position: absolute; z-index: -1; inset: -7px; content: ""; border: 1px solid rgba(201,243,91,.48); border-radius: inherit; animation: platform-ring 2.4s ease-in-out infinite; }
.button--platform:hover { color: var(--blue-deep); background: linear-gradient(110deg, #c4ed71 0%, #e8fb9d 48%, #87e3d3 100%); box-shadow: 0 16px 36px rgba(139,198,63,.4), 0 0 0 6px rgba(201,243,91,.14); }
.button--platform .button-platform-icon { display: inline-grid; width: 21px; height: 21px; color: #fff; background: var(--blue); border-radius: 50%; place-items: center; font-size: 12px; line-height: 1; }
.button--light { color: var(--blue-deep); background: #fff; }
.button--light:hover { background: var(--aqua-soft); }
.button--outline-light { color: #fff; background: transparent; border-color: rgba(255,255,255,.36); }
.button--outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.button--full { width: 100%; }
.text-link, .underlined-link { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 800; transition: gap .2s ease, color .2s ease; }
.text-link:hover, .underlined-link:hover { gap: 14px; }
.text-link--light { color: #d9e6f7; }
.underlined-link { padding-bottom: 4px; color: var(--blue-deep); border-bottom: 1px solid currentColor; }
.underlined-link span { font-size: 17px; font-weight: 400; line-height: 0; }

/* Home hero */
.hero-section { position: relative; min-height: 690px; padding: 86px 0 38px; overflow: hidden; color: #fff; background: var(--blue-deep); }
.hero-grid-lines { position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, black, transparent 90%); -webkit-mask-image: linear-gradient(to bottom, black, transparent 90%); pointer-events: none; }
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-orb--one { top: -250px; right: -100px; width: 680px; height: 680px; background: radial-gradient(circle at 35% 35%, rgba(54,183,194,.32), transparent 68%); }
.hero-orb--two { bottom: -360px; left: 20%; width: 700px; height: 700px; background: radial-gradient(circle, rgba(139,198,63,.14), transparent 68%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr); align-items: center; gap: 72px; min-width: 0; }
.hero-copy { min-width: 0; padding: 12px 0 26px; }
.hero-copy h1 { max-width: 690px; margin: 0; font-size: clamp(3.25rem, 6.2vw, 5.9rem); font-weight: 800; letter-spacing: -.09em; line-height: .99; }
.hero-copy h1 em { color: var(--aqua); font-style: normal; }
.hero-copy h1 strong { color: var(--green); font-weight: 800; }
.hero-description { max-width: 500px; margin: 28px 0 0; color: #bfd0e8; font-size: 16px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 23px; margin-top: 33px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 25px; margin-top: 56px; padding-top: 19px; border-top: 1px solid rgba(255,255,255,.16); }
.proof-item { display: flex; align-items: center; gap: 10px; }
.proof-icon { display: grid; width: 31px; height: 31px; color: var(--blue-deep); background: var(--aqua); border-radius: 50%; place-items: center; font-size: 15px; font-weight: 800; }
.proof-item > span:last-child { display: grid; line-height: 1.2; }
.proof-item strong { color: #fff; font-size: 11px; font-weight: 800; }
.proof-item small { margin-top: 4px; color: #8fa8c9; font-size: 10px; }
.hero-visual { position: relative; min-width: 0; min-height: 530px; }
.hero-photo-main { position: absolute; top: 10px; right: 28px; width: 78%; height: 490px; overflow: hidden; border: 7px solid rgba(255,255,255,.1); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); transform: rotate(3deg); }
.hero-photo-main img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.82) contrast(1.04); }
.hero-photo-main::after { position: absolute; inset: 0; content: ""; background: linear-gradient(150deg, rgba(12,43,89,.02), rgba(12,43,89,.5)); }
.hero-photo-side { position: absolute; z-index: 2; top: 150px; left: 0; width: 39%; height: 220px; overflow: hidden; border: 6px solid rgba(255,255,255,.1); border-radius: 24px; box-shadow: var(--shadow-lg); transform: rotate(-7deg); }
.hero-photo-side img { width: 100%; height: 100%; object-fit: cover; }
.hero-label { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 12px 14px; color: var(--blue-deep); background: var(--green); border-radius: 14px; box-shadow: 0 14px 30px rgba(0,0,0,.2); }
.hero-label--top { top: 35px; right: 0; transform: rotate(5deg); }
.hero-label--bottom { right: 0; bottom: 34px; color: #fff; background: rgba(19,45,82,.94); transform: rotate(-3deg); }
.hero-label > span:last-child { display: grid; line-height: 1.2; }
.hero-label strong { font-size: 11px; font-weight: 800; }
.hero-label small { max-width: 160px; margin-top: 3px; color: rgba(12,43,89,.68); font-size: 9px; line-height: 1.3; }
.hero-label--bottom small { color: #a9bddb; }
.label-number { color: var(--coral); font-family: "DM Mono", monospace; font-size: 19px; }
.hero-sticker { position: absolute; top: 94px; left: 25%; display: grid; width: 90px; height: 90px; color: #fff; background: var(--aqua); border-radius: 50%; place-items: center; box-shadow: 0 10px 24px rgba(0,0,0,.17); transform: rotate(-12deg); }
.hero-sticker strong { font-size: 20px; font-weight: 800; letter-spacing: -.08em; }
.hero-sticker small { position: absolute; bottom: 18px; color: #fff; font-family: "DM Mono", monospace; font-size: 6px; letter-spacing: .1em; }
.hero-footnote { position: relative; z-index: 1; display: flex; align-items: center; gap: 14px; margin-top: 53px; color: #8fa8c9; font-family: "DM Mono", monospace; font-size: 10px; }
.footnote-line { width: 64px; height: 1px; background: rgba(255,255,255,.2); }
.footnote-line--short { width: 26px; background: var(--green); }

/* Home sections */
.quick-strip { color: var(--blue-deep); background: var(--aqua); }
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); min-height: 100px; }
.quick-item { display: flex; align-items: center; gap: 15px; padding: 19px 28px; border-right: 1px solid rgba(12,43,89,.14); }
.quick-item:first-child { padding-left: 0; }
.quick-item:last-child { border-right: 0; }
.quick-index, .path-number { color: rgba(12,43,89,.55); font-family: "DM Mono", monospace; font-size: 10px; }
.quick-item div { display: grid; gap: 2px; }
.quick-item strong { font-size: 13px; font-weight: 800; }
.quick-item div span { color: rgba(12,43,89,.64); font-size: 11px; }
.intro-section { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; }
.section-kicker { display: flex; align-items: center; align-self: start; gap: 12px; color: var(--muted); font-family: "DM Mono", monospace; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.kicker-line { width: 36px; height: 1px; background: var(--coral); }
.intro-content h2 { margin: 0; color: var(--blue-deep); font-size: clamp(2.5rem, 5vw, 4.7rem); font-weight: 800; letter-spacing: -.09em; line-height: 1.02; }
.intro-content h2 em { color: var(--aqua); font-style: normal; }
.intro-content > p { max-width: 590px; margin: 27px 0 29px; color: var(--muted); font-size: 15px; line-height: 1.8; }
.courses-preview { background: var(--sand); }
.course-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.course-preview-card { position: relative; overflow: hidden; background: #fff; border: 1px solid rgba(12,43,89,.06); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s ease; }
.course-preview-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.course-preview-card img { width: 100%; height: 210px; object-fit: cover; filter: saturate(.82); transition: transform .5s var(--ease), filter .3s ease; }
.course-preview-card:hover img { filter: saturate(1); transform: scale(1.05); }
.course-preview-body { padding: 22px 22px 25px; }
.course-tag { display: inline-block; margin: 0 0 12px; color: var(--aqua); font-family: "DM Mono", monospace; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.course-preview-card h3 { margin: 0; color: var(--blue-deep); font-size: 19px; font-weight: 800; letter-spacing: -.05em; line-height: 1.2; }
.course-preview-card p { margin: 9px 0 19px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.course-preview-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-size: 11px; font-weight: 800; }
.course-preview-link span { font-size: 16px; }
.section-footer { display: flex; align-items: center; justify-content: center; margin-top: 40px; }
.story-section { color: #fff; background: var(--blue-deep); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 100px; }
.story-visual { position: relative; min-height: 505px; }
.story-image { width: 82%; height: 480px; overflow: hidden; border: 7px solid rgba(255,255,255,.1); border-radius: var(--radius-xl); transform: rotate(-4deg); }
.story-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75) contrast(1.05); }
.story-year { position: absolute; right: 0; bottom: 28px; display: grid; width: 142px; height: 142px; color: var(--blue-deep); background: var(--green); border-radius: 50%; place-items: center; text-align: center; transform: rotate(8deg); }
.story-year strong { display: block; font-size: 27px; font-weight: 800; letter-spacing: -.09em; line-height: 1; }
.story-year span { display: block; margin-top: 5px; font-size: 9px; font-weight: 800; line-height: 1.2; text-transform: uppercase; }
.story-copy .eyebrow { color: #b8cbe6; }
.story-copy h2 { margin: 0; color: #fff; font-size: clamp(2.5rem, 5vw, 4.6rem); font-weight: 800; letter-spacing: -.09em; line-height: 1.02; }
.story-copy h2 em { color: var(--aqua); font-style: normal; }
.story-copy > p { max-width: 490px; margin: 26px 0 0; color: #aec2df; font-size: 14px; line-height: 1.85; }
.story-copy .underlined-link { margin-top: 27px; color: var(--green); }
.values-preview { background: var(--paper); }
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.value-card { min-height: 205px; padding: 21px 19px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; transition: transform .25s var(--ease), background .25s ease, border-color .25s ease; }
.value-card:hover { background: var(--aqua-soft); border-color: var(--aqua); transform: translateY(-5px); }
.value-index { color: var(--aqua); font-family: "DM Mono", monospace; font-size: 10px; }
.value-card h3 { margin: 50px 0 8px; color: var(--blue-deep); font-size: 18px; font-weight: 800; letter-spacing: -.05em; }
.value-card p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.6; }
.gallery-preview { background: var(--aqua-soft); }
.gallery-preview-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 40px; }
.gallery-strip { display: grid; grid-template-columns: 1.3fr .8fr .8fr 1fr; gap: 13px; }
.gallery-strip a, .gallery-tile { position: relative; min-height: 240px; overflow: hidden; border-radius: var(--radius-md); }
.gallery-strip a:first-child { min-height: 330px; }
.gallery-strip a:nth-child(3) { min-height: 290px; }
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-strip a:hover img { transform: scale(1.06); }
.gallery-strip a::after { position: absolute; inset: 0; content: ""; background: linear-gradient(transparent 45%, rgba(12,43,89,.62)); }
.gallery-caption { position: absolute; z-index: 1; right: 15px; bottom: 14px; left: 15px; color: #fff; font-size: 11px; font-weight: 800; }
.cta-section { color: #fff; background: var(--blue); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner h2 { max-width: 650px; margin: 0; font-size: clamp(2.2rem, 4.6vw, 4.1rem); font-weight: 800; letter-spacing: -.09em; line-height: 1.03; }
.cta-inner h2 em { color: var(--green); font-style: normal; }
.cta-inner .button { flex: 0 0 auto; }

/* Inner page hero */
.page-hero { position: relative; padding: 83px 0 88px; overflow: hidden; color: #fff; background: var(--blue-deep); }
.page-hero::after { position: absolute; right: -90px; bottom: -250px; width: 520px; height: 520px; content: ""; border: 1px solid rgba(54,183,194,.3); border-radius: 50%; box-shadow: 0 0 0 38px rgba(54,183,194,.04), 0 0 0 76px rgba(54,183,194,.04), 0 0 0 114px rgba(54,183,194,.04); }
.page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .75fr; align-items: end; gap: 70px; }
.page-hero h1 { max-width: 720px; margin: 0; font-size: clamp(3.2rem, 6vw, 5.7rem); font-weight: 800; letter-spacing: -.095em; line-height: .99; }
.page-hero h1 em { color: var(--aqua); font-style: normal; }
.page-hero-description { max-width: 400px; margin: 0 0 5px; color: #b9cbe4; font-size: 15px; line-height: 1.8; }
.page-hero--compact { padding: 67px 0 73px; }
.page-hero--compact h1 { font-size: clamp(2.7rem, 5.5vw, 5rem); }
.breadcrumb { display: flex; align-items: center; gap: 9px; margin-bottom: 28px; color: #9bb5d7; font-family: "DM Mono", monospace; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--aqua); }
.breadcrumb span { color: var(--coral); }

/* Course page */
.course-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 27px; padding-bottom: 17px; border-bottom: 1px solid var(--line); }
.filter-list { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; }
.filter-button { padding: 9px 14px; color: var(--muted); background: transparent; border: 1px solid transparent; border-radius: 999px; font-size: 11px; font-weight: 800; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.filter-button:hover { color: var(--blue-deep); border-color: var(--line); }
.filter-button.is-active { color: #fff; background: var(--blue); }
.course-count { color: var(--muted); font-family: "DM Mono", monospace; font-size: 10px; white-space: nowrap; }
.course-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.course-card { overflow: hidden; background: #fff; border: 1px solid rgba(12,43,89,.07); border-radius: var(--radius-md); box-shadow: 0 4px 0 rgba(12,43,89,.02); transition: transform .3s var(--ease), box-shadow .3s ease; }
.course-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-5px); }
.course-card-image { position: relative; height: 205px; overflow: hidden; background: var(--aqua-soft); }
.course-card-image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(145deg, rgba(12,43,89,.02), rgba(12,43,89,.3)); }
.course-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.course-card:hover .course-card-image img { transform: scale(1.06); }
.course-badge { position: absolute; z-index: 1; top: 13px; left: 13px; padding: 6px 9px; color: var(--blue-deep); background: var(--green); border-radius: 5px; font-family: "DM Mono", monospace; font-size: 9px; font-weight: 500; text-transform: uppercase; }
.course-card-body { padding: 21px 21px 23px; }
.course-card-body h2 { margin: 0; color: var(--blue-deep); font-size: 19px; font-weight: 800; letter-spacing: -.055em; line-height: 1.18; }
.course-card-body p { min-height: 59px; margin: 10px 0 19px; color: var(--muted); font-size: 11px; line-height: 1.7; }
.course-card-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-size: 11px; font-weight: 800; }
.course-card-link span { font-size: 16px; }
.empty-state { margin: 30px 0; color: var(--muted); font-size: 14px; }
.course-note { display: flex; align-items: center; gap: 10px; margin-top: 30px; color: var(--muted); font-size: 11px; }
.course-note::before { width: 7px; height: 7px; content: ""; background: var(--aqua); border-radius: 50%; }

/* About / mission pages */
.history-section { background: var(--paper); }
.history-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 95px; }
.history-copy h2 { margin: 0; color: var(--blue-deep); font-size: clamp(2.5rem, 5vw, 4.4rem); font-weight: 800; letter-spacing: -.09em; line-height: 1.03; }
.history-copy h2 em { color: var(--aqua); font-style: normal; }
.history-copy > p { margin: 25px 0 0; color: var(--muted); font-size: 15px; line-height: 1.85; }
.history-callout { margin-top: 30px; padding: 18px 20px; color: var(--blue-deep); background: var(--green-soft); border-left: 4px solid var(--green); border-radius: 0 13px 13px 0; font-size: 13px; font-weight: 700; line-height: 1.65; }
.history-visual { position: relative; min-height: 480px; }
.history-building { width: 88%; height: 455px; overflow: hidden; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); transform: rotate(3deg); }
.history-building img { width: 100%; height: 100%; object-fit: cover; }
.history-photo { position: absolute; bottom: -13px; left: 0; width: 48%; height: 215px; overflow: hidden; border: 6px solid #fff; border-radius: 23px; box-shadow: var(--shadow-sm); transform: rotate(-6deg); }
.history-photo img { width: 100%; height: 100%; object-fit: cover; }
.history-badge { position: absolute; right: 0; bottom: 38px; display: grid; width: 126px; height: 126px; color: var(--blue-deep); background: var(--aqua); border-radius: 50%; place-items: center; text-align: center; transform: rotate(7deg); }
.history-badge strong { display: block; font-size: 23px; font-weight: 800; letter-spacing: -.08em; line-height: 1; }
.history-badge span { display: block; margin-top: 5px; font-size: 8px; font-weight: 800; line-height: 1.25; text-transform: uppercase; }
.timeline-section { background: var(--sand); }
.timeline { display: grid; grid-template-columns: 150px 1fr; max-width: 780px; margin: 0 auto; }
.timeline-year { padding: 24px 25px 24px 0; color: var(--blue); font-family: "DM Mono", monospace; font-size: 13px; border-top: 1px solid var(--line); }
.timeline-copy { padding: 24px 0 24px 25px; border-top: 1px solid var(--line); }
.timeline-copy h3 { margin: 0 0 6px; color: var(--blue-deep); font-size: 18px; font-weight: 800; letter-spacing: -.04em; }
.timeline-copy p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.principles-section { color: #fff; background: var(--blue-deep); }
.principles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; margin-top: 52px; }
.principle-card { min-height: 310px; padding: 28px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-md); background: rgba(255,255,255,.045); }
.principle-card--aqua { color: var(--blue-deep); background: var(--aqua); }
.principle-card--green { color: var(--blue-deep); background: var(--green); }
.principle-number { font-family: "DM Mono", monospace; font-size: 10px; opacity: .68; }
.principle-icon { display: grid; width: 47px; height: 47px; margin: 51px 0 18px; color: var(--aqua); background: var(--blue-deep); border-radius: 50%; place-items: center; font-size: 21px; }
.principle-card--aqua .principle-icon, .principle-card--green .principle-icon { color: var(--blue-deep); background: rgba(255,255,255,.42); }
.principle-card h2 { margin: 0; font-size: 27px; font-weight: 800; letter-spacing: -.07em; line-height: 1.1; }
.principle-card p { max-width: 430px; margin: 12px 0 0; color: #b5c9e4; font-size: 13px; line-height: 1.75; }
.principle-card--aqua p, .principle-card--green p { color: rgba(12,43,89,.73); }
.values-section { background: var(--paper); }
.values-page-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.values-page-card { min-height: 250px; padding: 22px 19px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--sand); }
.values-page-card:nth-child(2n) { background: var(--aqua-soft); }
.values-page-card:nth-child(3n) { background: var(--green-soft); }
.values-page-card .value-card h3 { margin-top: 65px; }
.values-page-card p { color: var(--muted); font-size: 11px; line-height: 1.65; }

/* Gallery */
.gallery-section { background: var(--paper); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-item { position: relative; min-height: 260px; overflow: hidden; border-radius: var(--radius-md); background: var(--aqua-soft); cursor: zoom-in; }
.gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 2; min-height: 350px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease), filter .3s ease; }
.gallery-item:hover img { filter: saturate(1.08); transform: scale(1.06); }
.gallery-item::after { position: absolute; inset: 0; content: ""; background: linear-gradient(transparent 48%, rgba(12,43,89,.7)); pointer-events: none; }
.gallery-caption { position: absolute; z-index: 1; right: 17px; bottom: 15px; left: 17px; color: #fff; font-size: 11px; font-weight: 800; }
.gallery-item-button { position: absolute; z-index: 2; top: 12px; right: 12px; display: grid; width: 33px; height: 33px; color: var(--blue-deep); background: var(--green); border-radius: 50%; place-items: center; font-size: 17px; }
.lightbox { position: fixed; z-index: 300; inset: 0; display: grid; padding: 30px; background: rgba(5,20,43,.92); place-items: center; }
.lightbox[hidden] { display: none; }
.lightbox-inner { position: relative; width: min(950px, 100%); }
.lightbox img { width: 100%; max-height: 78vh; object-fit: contain; border-radius: 18px; }
.lightbox-caption { margin: 15px 0 0; color: #dce8f7; font-size: 12px; text-align: center; }
.lightbox-close { position: absolute; top: 12px; right: 12px; display: grid; width: 40px; height: 40px; color: #fff; background: rgba(255,255,255,.14); border-radius: 50%; place-items: center; font-size: 23px; }

/* Contact */
.contact-section { position: relative; overflow: hidden; background: var(--aqua-soft); }
.contact-section::after { position: absolute; top: -180px; left: -150px; width: 500px; height: 500px; content: ""; border: 1px solid rgba(12,43,89,.13); border-radius: 50%; box-shadow: 0 0 0 35px rgba(12,43,89,.025), 0 0 0 70px rgba(12,43,89,.025); }
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: 90px; }
.contact-copy h2 { margin: 0; color: var(--blue-deep); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; letter-spacing: -.09em; line-height: 1.02; }
.contact-copy h2 em { color: var(--coral); font-style: normal; }
.contact-copy > p:not(.eyebrow) { max-width: 390px; margin: 24px 0 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.contact-list { display: grid; gap: 17px; margin-top: 37px; }
.contact-item { display: flex; align-items: flex-start; gap: 12px; }
.contact-icon { display: grid; width: 35px; height: 35px; flex: 0 0 35px; color: var(--blue-deep); background: var(--green); border-radius: 10px; place-items: center; font-size: 14px; font-weight: 800; }
.contact-item > span:last-child { display: grid; gap: 2px; }
.contact-item small { color: var(--muted); font-family: "DM Mono", monospace; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.contact-item strong, .contact-item a { color: var(--blue-deep); font-size: 12px; font-weight: 800; }
.contact-item a:hover { color: var(--blue); }
.contact-form { padding: 31px 32px 28px; background: #fff; border-radius: var(--radius-md); box-shadow: 0 18px 50px rgba(12,43,89,.1); }
.form-heading { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 26px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.form-heading span { color: var(--coral); font-family: "DM Mono", monospace; font-size: 10px; }
.form-heading strong { color: var(--blue-deep); font-size: 12px; font-weight: 800; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field > span { color: var(--blue-deep); font-size: 10px; font-weight: 800; }
.field b { color: var(--coral); }
.field input, .field select, .field textarea { width: 100%; padding: 12px 13px; color: var(--blue-deep); background: var(--sand); border: 1px solid transparent; border-radius: 9px; outline: 0; font-size: 12px; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.field textarea { min-height: 96px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #9aa7b8; }
.field input:focus, .field select:focus, .field textarea:focus { background: #fff; border-color: var(--aqua); box-shadow: 0 0 0 3px rgba(54,183,194,.15); }
.field input.is-invalid, .field select.is-invalid, .field textarea.is-invalid { border-color: var(--coral); }
.checkbox-field { display: flex; align-items: flex-start; gap: 9px; margin: 2px 0 19px; color: var(--muted); font-size: 10px; line-height: 1.5; }
.checkbox-field input { width: 15px; height: 15px; flex: 0 0 15px; margin: 0; accent-color: var(--blue); }
.form-note { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 13px 0 0; color: var(--muted); font-size: 9px; text-align: center; }
.form-note span { color: var(--aqua); font-size: 13px; }
.form-status { min-height: 18px; margin: 12px 0 0; color: var(--muted); font-size: 11px; text-align: center; }
.form-status.is-success { color: #23885f; }
.form-status.is-error { color: #c65c47; }

/* Footer */
.site-footer { color: #b5c7e2; background: var(--blue-deep); }
.footer-top { display: grid; grid-template-columns: 1.5fr .8fr 1fr 1.25fr; gap: 48px; padding-top: 70px; padding-bottom: 58px; }
.footer-brand-column > p { max-width: 285px; margin: 19px 0 0; color: #829bbf; font-size: 11px; line-height: 1.7; }
.footer-links-column, .footer-cta-column { display: flex; align-items: flex-start; flex-direction: column; gap: 9px; }
.footer-label { margin-bottom: 8px; color: var(--aqua); font-family: "DM Mono", monospace; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.footer-links-column a { color: #b5c7e2; font-size: 11px; transition: color .2s ease, transform .2s ease; }
.footer-links-column a:hover { color: var(--green); transform: translateX(3px); }
.footer-cta-column h3 { max-width: 230px; margin: 0 0 9px; color: #fff; font-size: 20px; font-weight: 800; letter-spacing: -.06em; line-height: 1.2; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 61px; border-top: 1px solid rgba(255,255,255,.1); color: #7188ad; font-family: "DM Mono", monospace; font-size: 9px; }
.footer-heart { color: var(--coral); font-size: 14px; }

/* Local editor */
.edit-launch { position: fixed; z-index: 120; right: 19px; bottom: 19px; display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; color: var(--blue-deep); background: var(--green); border: 1px solid rgba(12,43,89,.15); border-radius: 999px; box-shadow: 0 10px 25px rgba(12,43,89,.17); font-size: 10px; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.edit-launch:hover { background: var(--aqua); transform: translateY(-3px); }
.edit-launch > span { color: var(--coral); font-size: 14px; }
.editor-dock { position: fixed; z-index: 130; right: 19px; bottom: 19px; width: min(365px, calc(100% - 38px)); padding: 20px; color: #fff; background: var(--blue-deep); border: 1px solid rgba(255,255,255,.14); border-radius: 18px; box-shadow: 0 25px 70px rgba(0,0,0,.3); animation: dock-in .35s var(--ease) both; }
.editor-dock[hidden] { display: none; }
.editor-dock__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.editor-dock__header > div { display: grid; gap: 5px; }
.editor-kicker { color: var(--green); font-family: "DM Mono", monospace; font-size: 9px; letter-spacing: .12em; }
.editor-dock__header strong { font-size: 14px; letter-spacing: -.03em; }
.editor-close { width: 27px; height: 27px; color: #aabbd7; background: rgba(255,255,255,.08); border-radius: 50%; font-size: 20px; line-height: 1; }
.editor-dock > p { margin: 16px 0; color: #9fb4d2; font-size: 10px; line-height: 1.6; }
.editor-actions { display: flex; flex-wrap: wrap; gap: 7px; }
.editor-button { padding: 9px 11px; color: #dce8f7; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; font-size: 10px; font-weight: 800; transition: background .2s ease, color .2s ease; }
.editor-button:hover { color: var(--blue-deep); background: var(--aqua); }
.editor-button--primary { color: var(--blue-deep); background: var(--green); border-color: var(--green); }
.editor-button--quiet { color: #9fb4d2; background: transparent; }
.toast { position: fixed; z-index: 200; bottom: 26px; left: 50%; max-width: calc(100% - 40px); padding: 11px 16px; color: var(--blue-deep); background: var(--green); border-radius: 999px; box-shadow: var(--shadow-sm); font-size: 11px; font-weight: 800; opacity: 0; pointer-events: none; transform: translate(-50%, 18px); transition: opacity .25s ease, transform .25s var(--ease); }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.noscript-message { position: fixed; z-index: 200; right: 15px; bottom: 15px; left: 15px; padding: 14px 17px; color: #fff; background: var(--blue-deep); border-radius: 10px; font-size: 12px; text-align: center; }
[data-editable] { outline: 1px dashed transparent; outline-offset: 4px; transition: outline-color .2s ease, background .2s ease; }
body.is-editing [data-editable] { outline-color: rgba(244,134,110,.85); background: rgba(244,134,110,.08); cursor: text; }
body.is-editing [data-editable]:focus { outline: 2px solid var(--coral); background: rgba(244,134,110,.14); }
@keyframes dock-in { from { opacity: 0; transform: translateY(18px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes platform-ring { 0%, 100% { opacity: .35; transform: scale(1); } 50% { opacity: .9; transform: scale(1.045); } }

@media (max-width: 1080px) {
  .main-nav { gap: 17px; }
  .hero-grid { grid-template-columns: minmax(0, .9fr) minmax(370px, 1.1fr); gap: 43px; }
  .hero-copy h1 { font-size: clamp(3.1rem, 6.5vw, 5rem); }
  .story-grid, .history-grid, .contact-grid { gap: 55px; }
  .course-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid, .values-page-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  .container, .narrow { width: min(var(--container), calc(100% - 36px)); }
  .utility-inner { justify-content: center; }
  .utility-links { display: none; }
  .nav-wrap { min-height: 72px; }
  .nav-toggle { display: block; }
  .main-nav { position: absolute; top: calc(100% + 1px); right: 18px; left: 18px; display: grid; gap: 0; padding: 10px; background: rgba(247,245,237,.98); border: 1px solid var(--line); border-radius: 0 0 18px 18px; box-shadow: var(--shadow-sm); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity .22s ease, transform .22s ease; }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav > a { padding: 12px 11px; border-bottom: 1px solid rgba(12,43,89,.07); }
  .main-nav > a:last-child { border-bottom: 0; }
  .main-nav > a::after { display: none; }
  .nav-cta { justify-content: center; margin-top: 6px; }
  .hero-section { padding-top: 65px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 700px; padding-bottom: 0; }
  .hero-visual { width: min(100%, 610px); min-height: 530px; margin: 12px auto 0; }
  .hero-footnote { margin-top: 28px; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-item, .quick-item:first-child { min-height: 79px; padding: 14px 0; border-right: 0; border-bottom: 1px solid rgba(12,43,89,.14); }
  .quick-item:last-child { border-bottom: 0; }
  .intro-grid, .story-grid, .history-grid, .contact-grid, .page-hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .section-heading--split, .gallery-preview-head, .cta-inner { align-items: flex-start; flex-direction: column; }
  .section-lead { max-width: 520px; }
  .course-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid, .values-page-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip a:first-child, .gallery-strip a:nth-child(3) { min-height: 260px; }
  .story-visual { width: min(100%, 540px); min-height: 500px; margin: 0 auto; }
  .history-visual { width: min(100%, 540px); min-height: 470px; margin: 0 auto; }
  .contact-copy { max-width: 650px; }
  .footer-top { grid-template-columns: repeat(3, 1fr); gap: 35px; }
  .footer-brand-column { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  html { scroll-padding-top: 78px; }
  .container, .narrow { width: min(var(--container), calc(100% - 30px)); }
  .utility-bar { font-size: 9px; }
  .utility-inner { min-height: 30px; }
  .brand-logo { width: 49px; height: 49px; border-radius: 12px; }
  .brand-copy strong { font-size: 14px; }
  .brand-copy small { max-width: 130px; overflow: hidden; font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
  .hero-section { min-height: 0; padding: 55px 0 32px; }
  .hero-copy h1 { max-width: 100%; font-size: clamp(2.55rem, 12vw, 4rem); letter-spacing: -.1em; overflow-wrap: break-word; }
  .hero-description { width: 100%; max-width: 100%; margin-top: 23px; font-size: 14px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; margin-top: 28px; }
  .hero-proof { gap: 15px; margin-top: 42px; }
  .hero-visual { min-height: 360px; }
  .hero-photo-main { top: 7px; right: 5px; width: 88%; height: 350px; border-width: 5px; border-radius: 25px; }
  .hero-photo-side { top: 125px; left: -4px; width: 40%; height: 145px; border-width: 5px; border-radius: 17px; }
  .hero-sticker { top: 40px; left: 18%; width: 65px; height: 65px; }
  .hero-sticker strong { font-size: 15px; }
  .hero-sticker small { bottom: 12px; font-size: 4px; }
  .hero-label { padding: 9px 10px; border-radius: 10px; }
  .hero-label--top { top: 20px; right: -2px; }
  .hero-label--bottom { right: -2px; bottom: 20px; }
  .hero-label strong { font-size: 9px; }
  .hero-label small { max-width: 115px; font-size: 7px; }
  .label-number { font-size: 15px; }
  .hero-footnote { margin-top: 16px; font-size: 8px; }
  .footnote-line { width: 22px; }
  .section { padding: 80px 0; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2, .inner-title, .intro-content h2, .story-copy h2, .history-copy h2, .contact-copy h2 { font-size: clamp(2.3rem, 11vw, 3.5rem); }
  .section-kicker { margin-bottom: 2px; }
  .intro-content > p { margin-top: 22px; font-size: 14px; }
  .course-preview-grid, .course-grid { grid-template-columns: 1fr; gap: 13px; }
  .course-preview-card img { height: 205px; }
  .course-preview-body { padding: 19px 18px 21px; }
  .course-toolbar { align-items: flex-start; flex-direction: column; gap: 12px; }
  .filter-list { gap: 4px; }
  .filter-button { padding: 8px 10px; font-size: 10px; }
  .course-card-image { height: 210px; }
  .course-card-body h2 { font-size: 18px; }
  .course-card-body p { min-height: 0; }
  .story-visual, .history-visual { min-height: 355px; }
  .story-image { width: 87%; height: 350px; border-radius: 25px; }
  .story-year { right: -1px; bottom: 8px; width: 100px; height: 100px; }
  .story-year strong { font-size: 21px; }
  .story-year span { font-size: 7px; }
  .story-copy > p { margin-top: 21px; font-size: 13px; }
  .values-grid, .values-page-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .value-card { min-height: 185px; padding: 17px 14px; }
  .value-card h3 { margin-top: 39px; font-size: 16px; }
  .value-card p { font-size: 10px; }
  .values-page-card { min-height: 215px; }
  .values-page-card .value-card h3 { margin-top: 52px; }
  .gallery-strip { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-strip a, .gallery-strip a:first-child, .gallery-strip a:nth-child(3) { min-height: 180px; }
  .gallery-strip a:first-child { grid-column: 1 / -1; min-height: 250px; }
  .gallery-caption { right: 10px; bottom: 9px; left: 10px; font-size: 9px; }
  .cta-inner { gap: 24px; }
  .cta-inner h2 { font-size: clamp(2.15rem, 10.5vw, 3.35rem); }
  .page-hero { padding: 59px 0 63px; }
  .page-hero h1 { font-size: clamp(2.65rem, 12vw, 4rem); }
  .page-hero-description { font-size: 13px; }
  .breadcrumb { margin-bottom: 22px; }
  .history-building { width: 88%; height: 345px; border-radius: 25px; }
  .history-photo { bottom: -10px; width: 49%; height: 150px; border-width: 5px; border-radius: 17px; }
  .history-badge { right: -1px; bottom: 25px; width: 100px; height: 100px; }
  .history-badge strong { font-size: 20px; }
  .history-badge span { font-size: 7px; }
  .history-callout { margin-top: 23px; font-size: 12px; }
  .timeline { grid-template-columns: 80px 1fr; }
  .timeline-year { padding: 19px 14px 19px 0; font-size: 10px; }
  .timeline-copy { padding: 19px 0 19px 14px; }
  .timeline-copy h3 { font-size: 15px; }
  .timeline-copy p { font-size: 11px; }
  .principles-grid { grid-template-columns: 1fr; gap: 11px; margin-top: 35px; }
  .principle-card { min-height: 245px; padding: 22px; }
  .principle-icon { margin: 33px 0 15px; }
  .principle-card h2 { font-size: 23px; }
  .principle-card p { font-size: 12px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .gallery-item, .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: auto; min-height: 190px; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: 1 / -1; min-height: 260px; }
  .gallery-caption { right: 10px; bottom: 9px; left: 10px; font-size: 9px; }
  .lightbox { padding: 15px; }
  .lightbox img { max-height: 70vh; }
  .contact-grid { gap: 38px; }
  .contact-copy > p:not(.eyebrow) { margin-top: 20px; font-size: 13px; }
  .contact-form { padding: 23px 17px 21px; }
  .form-heading { align-items: flex-start; flex-direction: column; gap: 4px; margin-bottom: 21px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .field { margin-bottom: 13px; }
  .footer-top { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; padding-top: 52px; padding-bottom: 45px; }
  .footer-brand-column, .footer-cta-column { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; min-height: 80px; padding: 14px 0; }
  .edit-launch { right: 12px; bottom: 12px; padding: 9px 11px; font-size: 9px; }
  .editor-dock { right: 12px; bottom: 12px; width: calc(100% - 24px); }
}

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