:root {
  --ink: #0c2b30;
  --muted: #5c7378;
  --paper: #fbf5e8;
  --white: #ffffff;
  --teal: #007d8a;
  --teal-deep: #06444c;
  --tidal: #00b7ff;
  --tidal-deep: #0086bd;
  --sun: #ffc857;
  --line: rgba(9, 43, 48, 0.14);
  --shadow: 0 24px 60px rgba(6, 46, 51, 0.18);
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(18px, 4vw, 52px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
  z-index: 20;
}
.site-header.is-scrolled {
  background: rgba(251, 245, 232, 0.92);
  box-shadow: 0 12px 30px rgba(6, 46, 51, 0.12);
  padding-block: 12px;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: 0;
}
.brand-mark {
  align-items: center;
  background: var(--sun) url('/Gallery/Logo.jpg') center/cover no-repeat;
  border: 2px solid rgba(12, 43, 48, 0.22);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  letter-spacing: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  width: 44px;
}
.brand strong,
.brand small {
  display: block;
}
.brand strong {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.1;
}
.site-header.is-scrolled .brand strong {
  color: var(--ink);
}
.brand small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
}
.site-header.is-scrolled .brand small {
  color: var(--muted);
}
.header-actions {
  align-items: center;
  display: flex;
  gap: 10px;
}
.site-nav {
  align-items: center;
  display: flex;
  gap: 6px;
}
.site-nav a {
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 10px 13px;
}
.site-nav a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}
.lang-switch {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  height: 42px;
  letter-spacing: 0;
  min-width: 48px;
}
.site-header.is-scrolled .lang-switch {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}
.site-header.is-scrolled .site-nav a {
  color: var(--ink);
}
.site-header.is-scrolled .site-nav a:hover {
  background: rgba(0, 183, 255, 0.12);
  color: var(--tidal-deep);
}
.nav-toggle {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  display: none;
  height: 44px;
  padding: 10px;
  width: 44px;
}
.nav-toggle span {
  background: var(--white);
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 100%;
}
.site-header.is-scrolled .nav-toggle {
  background: var(--white);
  border-color: var(--line);
}
.site-header.is-scrolled .nav-toggle span {
  background: var(--ink);
}
.hero {
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}
.hero-media,
.hero-overlay {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}
.hero-media {
  object-fit: cover;
}
.hero-overlay {
  background: linear-gradient(90deg, rgba(6, 68, 76, 0.88) 0%, rgba(6, 68, 76, 0.56) 46%, rgba(6, 68, 76, 0.16) 100%);
}
.hero-content {
  color: var(--white);
  max-width: 820px;
  padding: clamp(122px, 18vh, 178px) clamp(22px, 7vw, 92px) 170px;
  position: relative;
  z-index: 2;
}
.eyebrow {   color: var(--tidal);   font-size: clamp(1.1rem, 2vw, 1.5rem);   font-weight: 900;   letter-spacing: 0.08em;   margin: 0 0 18px;   text-transform: uppercase; }
.hero h1,
.section-heading h2,
.media-band h2,
.split-copy h2,
.record-copy h2,
.contact-content h2 {
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}
.hero h1 {   font-size: clamp(2.7rem, 5.8vw, 5.2rem);   max-width: 980px; }
.hero-copy {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  margin: 24px 0 0;
  max-width: 650px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.button {
  align-items: center;
  border-radius: 10px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  transition: transform 160ms ease, background 160ms ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: var(--tidal);
  color: var(--white);
}
.button-primary:hover {
  background: var(--tidal-deep);
}
.button-secondary {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}
.button-dark {
  background: var(--ink);
  color: var(--white);
}
.hero-panel {
  background: rgba(251, 245, 232, 0.93);
  border-radius: 14px 0 0 0;
  bottom: 0;
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 720px;
  position: absolute;
  right: 0;
  width: min(86vw, 720px);
  z-index: 3;
}
.hero-panel div {
  padding: 22px;
}
.hero-panel strong,
.hero-panel span {
  display: block;
}
.hero-panel strong {
  font-size: clamp(1.1rem, 2vw, 1.55rem);
}
.hero-panel span {
  color: var(--muted);
  font-size: 0.9rem;
}
.section-pad {
  padding: clamp(72px, 10vw, 128px) clamp(22px, 5vw, 68px);
}
.section-heading {
  margin: 0 auto 42px;
  max-width: var(--max);
}
.section-heading.wide {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
}
.section-heading h2,
.media-band h2,
.split-copy h2,
.record-copy h2,
.contact-content h2 {
  font-size: clamp(2.15rem, 5vw, 4.9rem);
}
.section-heading p:not(.eyebrow) {
  color: var(--muted);
  margin: 0;
}
.intro-grid {
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.85fr);
  margin: 0 auto;
  max-width: var(--max);
}
.intro-copy {
  color: #31464e;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}
.intro-copy p:first-child {
  margin-top: 0;
}
.feature-list {
  border-top: 1px solid var(--line);
}
.feature {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 54px 1fr;
  padding: 24px 0;
}
.feature-icon {
  color: var(--tidal);
  font-weight: 900;
}
.feature h3,
.course-card h3 {
  font-size: 1.35rem;
  line-height: 1.12;
  margin: 0 0 8px;
}
.feature p,
.course-card p,
.split-copy p,
.record-copy p {
  color: var(--muted);
  margin: 0;
}
.video-section {
  isolation: isolate;
  overflow: hidden;
  position: relative;
}
.video-bg {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
  z-index: -2;
}
.video-overlay {
  background: linear-gradient(180deg, rgba(6, 68, 76, 0.82) 0%, rgba(6, 68, 76, 0.72) 100%);
  inset: 0;
  position: absolute;
  z-index: -1;
}
.video-section .section-heading .eyebrow {
  color: var(--sun);
}
.video-section .section-heading h2 {
  color: var(--white);
}
.video-section .intro-copy {
  color: rgba(255, 255, 255, 0.92);
}
.video-section .feature-list {
  border-top-color: rgba(255, 255, 255, 0.24);
}
.video-section .feature {
  border-bottom-color: rgba(255, 255, 255, 0.24);
}
.video-section .feature-icon {
  color: var(--sun);
}
.video-section .feature h3 {
  color: var(--white);
}
.video-section .feature p {
  color: rgba(255, 255, 255, 0.75);
}
.media-band {
  color: var(--white);
  min-height: 520px;
  overflow: hidden;
  position: relative;
}
.media-band img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}
.media-band::after {
  background: linear-gradient(90deg, rgba(6, 68, 76, 0.86), rgba(6, 68, 76, 0.2));
  content: "";
  inset: 0;
  position: absolute;
}
.media-band-content {
  max-width: 760px;
  padding: 120px clamp(22px, 7vw, 92px);
  position: relative;
  z-index: 1;
}
.course-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--max);
}
.course-card {
  background: var(--white);
  border: 1px solid rgba(9, 43, 48, 0.08);
  border-radius: 14px;
  box-shadow: 0 16px 42px rgba(6, 46, 51, 0.08);
  overflow: hidden;
}
.course-card img {
  aspect-ratio: 1.35;
  height: auto;
  object-fit: cover;
  width: 100%;
}
.course-card-body {
  padding: 22px;
}
.course-tag {
  color: var(--tidal);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.split-section {
  background: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
}
.split-image img {
  height: 100%;
  max-height: 820px;
  min-height: 560px;
  object-fit: cover;
  width: 100%;
}
.split-copy {
  align-self: center;
  padding: clamp(54px, 7vw, 92px);
}
.split-copy p {
  margin-top: 20px;
  max-width: 680px;
}
.credential-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 30px 0 24px;
}
.credential-grid span {
  background: #eaf8f4;
  border-left: 4px solid var(--tidal);
  border-radius: 10px;
  font-weight: 800;
  padding: 13px 14px;
}
.credential-title {
  color: var(--teal-deep);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin: 26px 0 12px;
}
.text-link {
  color: var(--teal-deep);
  display: inline-flex;
  font-weight: 900;
}
.text-link::after {
  content: "->";
  margin-left: 8px;
}
.record-section {
  background: var(--sun);
  display: grid;
  gap: clamp(26px, 5vw, 68px);
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  padding: clamp(72px, 9vw, 116px) clamp(22px, 5vw, 68px);
}
.record-copy {
  align-self: center;
}
.record-copy .eyebrow {
  color: var(--teal-deep);
}
.record-copy p {
  color: rgba(12, 43, 48, 0.78);
  font-size: 1.05rem;
  margin: 24px 0 30px;
}
.video-frame {
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.video-frame iframe {
  border: 0;
  height: 100%;
  width: 100%;
}
.gallery-section {
  background: #eaf7f2;
}
.gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: repeat(2, 260px);
  margin: 0 auto;
  max-width: var(--max);
}
.gallery-item {
  border-radius: 14px;
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.gallery-large {
  grid-row: span 2;
}
.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
  width: 100%;
}
.gallery-item::after {
  background: linear-gradient(180deg, transparent 35%, rgba(6, 68, 76, 0.78));
  content: "";
  inset: 0;
  position: absolute;
}
.gallery-item span {
  bottom: 18px;
  font-size: 1.1rem;
  font-weight: 900;
  left: 18px;
  position: absolute;
  z-index: 1;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.contact-section {
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  padding: clamp(72px, 9vw, 120px) clamp(22px, 5vw, 68px);
}
.contact-content {
  align-self: center;
}
.contact-content h2 {
  max-width: 760px;
}
.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  max-width: 650px;
}
.contact-link {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  min-height: 74px;
  padding: 16px 18px;
}
.contact-link:hover {
  background: rgba(255, 255, 255, 0.08);
}
.contact-link span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}
.contact-link strong {
  font-size: clamp(1rem, 2vw, 1.28rem);
  text-align: right;
}
.map-card {
  align-self: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  padding: 10px;
}
.map-card img {
  border-radius: 10px;
  width: 100%;
}
.site-footer {
  align-items: center;
  background: #062024;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 24px clamp(22px, 5vw, 68px);
}
.site-footer p {
  margin: 0;
}
.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.site-footer a {
  color: var(--white);
  font-weight: 800;
}
.page-hero {
  color: var(--white);
  min-height: 68svh;
  overflow: hidden;
  position: relative;
}
.page-hero .hero-content {
  max-width: 920px;
  padding-bottom: 120px;
}
.page-hero h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}
.page-body {
  background: var(--paper);
}
.content-grid {
  display: grid;
  gap: clamp(28px, 5vw, 68px);
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.55fr);
  margin: 0 auto;
  max-width: var(--max);
}
.content-copy {
  color: #31464e;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}
.content-copy p:first-child {
  margin-top: 0;
}
.stat-stack {
  display: grid;
  gap: 12px;
}
.stat-card {
  background: var(--white);
  border: 1px solid rgba(9, 43, 48, 0.08);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(6, 46, 51, 0.08);
  padding: 20px;
}
.stat-card strong,
.stat-card span {
  display: block;
}
.stat-card strong {
  font-size: 1.35rem;
  line-height: 1.1;
}
.stat-card span {
  color: var(--muted);
  margin-top: 6px;
}
.modern-album {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--max);
}
.modern-album a,
.modern-photo {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(6, 46, 51, 0.08);
  overflow: hidden;
}
.modern-album img,
.modern-photo img {
  aspect-ratio: 1.25;
  height: auto;
  object-fit: cover;
  width: 100%;
}
.modern-album span,
.modern-photo figcaption {
  display: block;
  font-weight: 900;
  padding: 16px;
}
.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }
  .site-nav {
    background: rgba(251, 245, 232, 0.98);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 0;
    min-width: 220px;
    padding: 8px;
    position: absolute;
    right: 18px;
    top: 72px;
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav a,
  .site-header.is-scrolled .site-nav a {
    color: var(--ink);
    width: 100%;
  }
  .brand strong {
    color: var(--white);
  }
  .section-heading.wide,
  .intro-grid,
  .split-section,
  .record-section,
  .contact-section,
  .content-grid {
    grid-template-columns: 1fr;
  }
  .course-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .modern-album {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-large {
    grid-column: span 2;
    grid-row: span 1;
  }
  .split-image img {
    max-height: none;
    min-height: 420px;
  }
}
@media (max-width: 640px) {
  .site-header {
    padding-inline: 14px;
  }
  .brand small {
    display: none;
  }
  .hero {
    min-height: 920px;
  }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(6, 68, 76, 0.8) 0%, rgba(6, 68, 76, 0.75) 54%, rgba(6, 68, 76, 0.92) 100%);
  }
  .hero-content {
    padding: 128px 20px 310px;
  }
  .hero-panel {
    border-radius: 14px 14px 0 0;
    grid-template-columns: 1fr;
    left: 20px;
    right: 20px;
    width: auto;
  }
  .hero-panel div {
    padding: 16px 18px;
  }
  .feature {
    grid-template-columns: 42px 1fr;
  }
  .credential-grid,
  .gallery-grid,
  .modern-album {
    grid-template-columns: 1fr;
  }
  .gallery-large {
    grid-column: auto;
  }
  .gallery-grid {
    grid-template-rows: repeat(4, 230px);
  }
  .contact-link {
    align-items: flex-start;
    flex-direction: column;
  }
  .contact-link strong {
    text-align: left;
  }
}