:root {
  --bg: #f5ede2;
  --surface: rgba(255, 255, 255, 0.68);
  --surface-strong: #fffdf8;
  --ink: #261c12;
  --muted: #6b5d50;
  --line: rgba(76, 52, 30, 0.12);
  --gold: #b88a3b;
  --gold-soft: rgba(184, 138, 59, 0.14);
  --navy: #3f2a18;
  --navy-soft: #6b4a2a;
  --champagne: #efe1c7;
  --shadow: 0 24px 80px rgba(58, 40, 24, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    url("./assets/texture-light-luxury.png") center top / cover no-repeat,
    radial-gradient(circle at 10% 0%, rgba(184, 138, 59, 0.24), transparent 24%),
    radial-gradient(circle at 90% 18%, rgba(111, 74, 42, 0.12), transparent 22%),
    linear-gradient(180deg, #fbf4ea 0%, #f2e8da 44%, #eadcca 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.38), transparent 72%);
}

.ambient {
  position: fixed;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.6;
}

.ambient-one {
  top: 90px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: rgba(184, 138, 59, 0.2);
}

.ambient-two {
  top: 520px;
  left: -100px;
  width: 280px;
  height: 280px;
  background: rgba(107, 74, 42, 0.12);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 64px;
}

.page-shell main {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 28px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.68);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #8c6429, #caa15a);
  color: #fff8ee;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.92rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.4vw, 22px);
  min-width: 0;
}

.site-nav a,
.nav-cta,
.button {
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
}

.nav-cta {
  flex: 0 0 auto;
  white-space: nowrap;
}

.nav-cta,
.button-primary {
  background: linear-gradient(135deg, #9f712f, #d0a45a);
  color: #fffaf2;
  box-shadow: 0 14px 40px rgba(159, 113, 47, 0.28);
}

.button-secondary {
  border-color: rgba(184, 138, 59, 0.26);
  color: var(--ink);
  background: rgba(255, 251, 244, 0.76);
}

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

.hero {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 28px;
  align-items: stretch;
  padding: 64px 0 46px;
  position: relative;
}

.screen-block {
  position: relative;
  min-height: min(86svh, 920px);
  padding: clamp(36px, 5vw, 56px);
  border-radius: 36px;
  overflow: hidden;
  scroll-margin-top: 112px;
}

.screen-block > * {
  position: relative;
  z-index: 1;
}

.screen-block::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
}

.screen-light {
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.9), rgba(248, 239, 224, 0.78)),
    url("./assets/texture-light-luxury.png") center center / cover no-repeat,
    radial-gradient(circle at top left, rgba(184, 138, 59, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(250, 242, 230, 0.46));
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.screen-warm {
  background:
    linear-gradient(180deg, rgba(250, 244, 234, 0.92), rgba(240, 226, 208, 0.8)),
    url("./assets/texture-light-luxury.png") center center / cover no-repeat,
    radial-gradient(circle at top right, rgba(184, 138, 59, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(248, 241, 231, 0.88), rgba(242, 230, 212, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  background:
    radial-gradient(circle at 0% 0%, rgba(184, 138, 59, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-copy,
.hero-panel,
.metrics,
.program-card,
.timeline-card,
.education-grid article,
.values-grid article,
.contact-band {
  animation: rise 700ms ease both;
}

.hero-copy {
  padding: 42px 0 24px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-intro-line {
  width: 96px;
  height: 1px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.94;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3.4rem, 7vw, 6.3rem);
  max-width: 9ch;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  margin-bottom: 16px;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.hero-text,
.section-heading p,
.split-copy p,
.program-card p,
.timeline-step p,
.education-grid p,
.values-grid p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 58ch;
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.hero-text-en,
.section-subtitle,
.subheadline,
.en-label,
.card-note {
  color: var(--muted);
}

.subheadline {
  margin: 18px 0 0;
  max-width: 42rem;
  font-size: 1.03rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.hero-text-en {
  max-width: 58ch;
  font-size: 0.98rem;
}

.section-subtitle {
  margin: -4px 0 6px;
  font-size: 0.98rem;
  line-height: 1.8;
}

.en-label {
  margin: 0 0 10px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card-note {
  margin: 6px 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(24, 34, 45, 0.08);
  background: rgba(255, 255, 255, 0.5);
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 24px rgba(18, 24, 31, 0.05);
}

.hero-panel {
  display: grid;
  gap: 16px;
  align-content: start;
}

.hero-card,
.metrics,
.program-card,
.timeline-card,
.education-grid article,
.values-grid article,
.education-showcase,
.contact-band {
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-card {
  min-height: 180px;
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 250, 242, 0.6)),
    var(--surface);
  position: relative;
  overflow: hidden;
}

.hero-card::after,
.program-card::after,
.education-grid article::after,
.values-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 45%);
  pointer-events: none;
}

.hero-card-large {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(150deg, rgba(26, 38, 51, 0.98), rgba(57, 78, 98, 0.88)),
    var(--surface);
  color: #fff5e0;
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #101a23;
}

.hero-image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.03);
  transform: scale(1.02);
}

.hero-card-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(8, 14, 22, 0.04) 0%, rgba(8, 14, 22, 0.58) 56%, rgba(8, 14, 22, 0.82) 100%);
}

.hero-card span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.84;
}

.hero-card strong {
  display: block;
  font-size: 1.9rem;
  margin-bottom: 10px;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 12px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(100, 67, 31, 0.96), rgba(156, 110, 52, 0.88));
  color: #fff7ea;
}

.metric-item {
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(255, 249, 239, 0.1);
  border: 1px solid rgba(255, 245, 232, 0.14);
}

.metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.98rem;
}

.metrics p {
  margin: 0;
  color: rgba(247, 242, 232, 0.76);
}

.section {
  padding: 84px 0 0;
}

.programs-section,
.education-section,
.values-section {
  position: relative;
}

.programs-section::before,
.education-section::before,
.values-section::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.section-heading {
  display: grid;
  gap: 8px;
  max-width: 760px;
}

.section-head-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}

.section-side-note {
  padding: 24px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 250, 242, 0.6)),
    var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.section-side-note h3 {
  margin: 0 0 12px;
}

.compact-list {
  margin: 0;
}

.compact-list li {
  margin-bottom: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.program-grid,
.education-grid,
.values-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.education-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 28px;
  padding: 18px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 242, 232, 0.58)),
    var(--surface);
}

.education-image-frame,
.education-showcase-copy {
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: 28px;
}

.education-image-frame {
  overflow: hidden;
  min-height: 320px;
}

.education-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.education-showcase-copy {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 252, 246, 0.45));
}

.education-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.mini-card {
  padding: 22px 20px;
  border-radius: 24px;
}

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

.program-card,
.education-grid article,
.values-grid article {
  padding: 26px 24px;
  border-radius: 24px;
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.program-card:hover,
.education-grid article:hover,
.values-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 72px rgba(20, 26, 33, 0.12);
  border-color: rgba(175, 141, 88, 0.28);
}

.program-card span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.program-card h3 {
  margin-top: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  margin-left: 8px;
  color: var(--gold);
}

.signature-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: stretch;
  margin-top: 42px;
}

.signature-copy,
.signature-points article,
.mini-card,
.editorial-card {
  border: 1px solid rgba(255, 255, 255, 0.6);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 250, 242, 0.6)),
    var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.signature-copy {
  padding: 30px 28px;
  border-radius: 28px;
}

.signature-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.signature-points article {
  padding: 24px 20px;
  border-radius: 24px;
}

.signature-points h3,
.mini-card h3 {
  margin: 0 0 10px;
}

.signature-points p,
.mini-card p,
.editorial-card p,
.editorial-stats p {
  color: var(--muted);
  line-height: 1.75;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 26px;
  align-items: center;
}

.journey-section {
  padding: 46px 34px 0;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(74, 47, 22, 0.94), rgba(124, 85, 43, 0.88)),
    url("./assets/texture-dark-harbour.png") center center / cover no-repeat;
  color: #f8f3e7;
}

.journey-section .section-subtitle,
.journey-section .split-copy p,
.journey-section .timeline-step p {
  color: rgba(248, 243, 231, 0.72);
}

.journey-section h2,
.journey-section h3,
.journey-section .eyebrow {
  color: #fff6e7;
}

.feature-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  line-height: 1.7;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 8px var(--gold-soft);
}

.timeline-card {
  padding: 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-step {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
}

.timeline-step + .timeline-step {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-step strong {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(175, 141, 88, 0.2), rgba(255, 255, 255, 0.6));
  color: var(--ink);
}

.education-grid,
.values-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 84px;
  padding: 34px 28px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(103, 70, 34, 0.92), rgba(149, 103, 49, 0.86)),
    url("./assets/texture-dark-harbour.png") center center / cover no-repeat;
  color: #f8f3e7;
}

.contact-band h2,
.contact-band .eyebrow,
.contact-band .section-subtitle {
  color: #f8f3e7;
}

.contact-band .section-subtitle {
  opacity: 0.78;
}

.contact-band-glow {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(216, 178, 98, 0.28);
  filter: blur(50px);
  pointer-events: none;
}

.brand-quote {
  margin-top: 28px;
  margin-bottom: 22px;
  padding: 22px 26px;
  border-radius: 26px;
  background: linear-gradient(140deg, rgba(88, 59, 29, 0.96), rgba(144, 100, 48, 0.88));
  box-shadow: var(--shadow);
}

.brand-quote p {
  margin: 0;
  color: #f7f1e6;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.15;
}

.page-hero,
.content-section {
  padding-top: 64px;
}

.page-hero {
  max-width: 920px;
}

.page-hero-image {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  align-items: center;
  max-width: 100%;
}

.page-hero-copy {
  max-width: 760px;
}

.page-hero-visual {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
}

.page-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.detail-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

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

.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.four-col {
  grid-template-columns: repeat(4, 1fr);
}

.detail-card {
  position: relative;
  padding: 26px 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 250, 242, 0.6)),
    var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.detail-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 45%);
  pointer-events: none;
}

.detail-icon {
  display: inline-block;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
}

.detail-card p,
.detail-card li {
  color: var(--muted);
  line-height: 1.75;
}

.page-hero-image .page-hero-copy {
  align-self: center;
}

.page-hero-image .page-hero-visual {
  position: relative;
}

.page-hero-image .page-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 21, 28, 0.02), rgba(13, 21, 28, 0.1));
  pointer-events: none;
}

.education-editorial {
  padding-top: 28px;
}

.editorial-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 22px;
  padding: 28px;
  border-radius: 28px;
}

.editorial-stats {
  display: grid;
  gap: 14px;
}

.editorial-stats div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(24, 34, 45, 0.06);
}

.editorial-stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.dark-panel {
  padding: 34px 30px 2px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(17, 27, 37, 0.92), rgba(35, 49, 64, 0.86)),
    url("./assets/texture-dark-harbour.png") center center / cover no-repeat;
}

.dark-panel h2,
.dark-panel h3,
.dark-panel .eyebrow {
  color: #fff6e7;
}

.dark-panel .section-subtitle,
.dark-panel p,
.dark-panel li {
  color: rgba(248, 243, 231, 0.72);
}

.dark-panel .detail-card h3 {
  color: var(--ink);
}

.dark-panel .detail-card p,
.dark-panel .detail-card li,
.dark-panel .detail-card .eyebrow {
  color: var(--muted);
}

.plain-list {
  margin: 16px 0 0;
  padding-left: 18px;
}

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

.site-footer {
  display: flex;
  justify-content: center;
  padding: 24px 0 8px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
}

.home-page {
  background:
    linear-gradient(180deg, rgba(253, 248, 242, 0.94), rgba(243, 232, 215, 0.96)),
    url("./assets/texture-light-luxury.png") center top / cover no-repeat,
    linear-gradient(180deg, #fdf7ee 0%, #f0e0c8 100%);
}

.home-page .page-shell {
  width: min(1280px, calc(100% - 28px));
  padding-top: 18px;
}

.home-page .page-shell main {
  gap: 22px;
  padding-top: 22px;
}

.home-page .site-header {
  top: 12px;
  padding: 14px 24px;
  border-radius: 20px;
  background: rgba(255, 249, 240, 0.92);
  border-color: rgba(184, 138, 59, 0.2);
}

.home-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.home-hero {
  position: relative;
  min-height: 620px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(42, 39, 32, 0.12);
}

.home-hero-image,
.home-hero-overlay {
  position: absolute;
  inset: 0;
}

.home-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.home-hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 247, 234, 0.88) 0%, rgba(255, 247, 234, 0.76) 34%, rgba(255, 247, 234, 0.2) 68%, rgba(255, 247, 234, 0.06) 100%),
    linear-gradient(180deg, rgba(58, 39, 19, 0.03), rgba(58, 39, 19, 0.12));
}

.home-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 620px;
  max-width: 560px;
  flex-direction: column;
  justify-content: center;
  padding: 72px 54px;
}

.home-hero-copy h1 {
  max-width: 8ch;
  font-size: clamp(3.5rem, 6vw, 5.2rem);
  line-height: 0.96;
}

.home-hero-subtitle,
.home-hero-text {
  max-width: 36rem;
  color: #4d5965;
  line-height: 1.8;
}

.home-hero-subtitle {
  margin: 18px 0 0;
  font-size: 1.06rem;
}

.home-hero-text {
  margin: 16px 0 0;
}

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

.home-entry-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -62px;
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.entry-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 251, 243, 0.96);
  box-shadow: 0 20px 44px rgba(84, 60, 35, 0.1);
  text-decoration: none;
  color: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.entry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(120, 87, 48, 0.16);
}

.entry-card .detail-icon {
  width: 48px;
  height: 48px;
  margin: 0;
}

.entry-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.entry-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.home-section {
  padding: 12px 24px 0;
}

.home-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.home-section-head h2 {
  margin-bottom: 0;
  line-height: 1;
}

.section-more {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.section-more::after {
  content: "→";
  margin-left: 8px;
  color: var(--gold);
}

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

.news-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 251, 246, 0.94);
  box-shadow: 0 22px 50px rgba(92, 66, 38, 0.1);
}

.news-image-wrap {
  position: relative;
  min-height: 240px;
}

.news-image-wrap img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.news-tag {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #b78437, #d9b16a);
  color: #fff8ef;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-body {
  padding: 22px 22px 24px;
}

.news-body h3 {
  margin-bottom: 10px;
  font-size: 1.42rem;
}

.news-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.discover-band {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr 0.72fr;
  gap: 18px;
  align-items: stretch;
  margin: 8px 24px 0;
  padding: 18px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(245, 235, 218, 0.94), rgba(236, 221, 196, 0.94)),
    url("./assets/texture-light-luxury.png") center center / cover no-repeat;
  box-shadow: 0 24px 60px rgba(95, 70, 40, 0.1);
}

.discover-visual,
.discover-copy,
.discover-stats article {
  border-radius: 22px;
}

.discover-visual {
  overflow: hidden;
  min-height: 280px;
}

.discover-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discover-copy {
  padding: 28px 26px;
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.discover-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.discover-stats {
  display: grid;
  gap: 14px;
}

.discover-stats article {
  padding: 22px 20px;
  background: rgba(255, 250, 242, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.62);
}

.discover-stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
  color: var(--ink);
}

.discover-stats p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.split-showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
}

.showcase-panel {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(88, 64, 37, 0.12);
}

.showcase-panel-dark {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 0;
  background:
    linear-gradient(145deg, rgba(95, 63, 30, 0.96), rgba(143, 98, 45, 0.9)),
    url("./assets/texture-dark-harbour.png") center center / cover no-repeat;
  color: #f8f3e8;
}

.showcase-panel-dark .showcase-copy,
.showcase-panel-dark h2,
.showcase-panel-dark .eyebrow,
.showcase-panel-dark a {
  color: #f8f3e8;
}

.showcase-panel-dark .showcase-copy p,
.showcase-panel-dark .feature-list li {
  color: rgba(248, 243, 232, 0.78);
}

.showcase-panel-light {
  display: grid;
  grid-template-rows: 240px 1fr;
  background: rgba(255, 251, 246, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.showcase-photo {
  overflow: hidden;
}

.showcase-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-copy {
  padding: 28px;
}

.showcase-links {
  display: grid;
  align-content: center;
  gap: 1px;
  background: rgba(255, 248, 236, 0.08);
}

.showcase-links a {
  padding: 22px 24px;
  background: rgba(255, 248, 236, 0.04);
  text-decoration: none;
  font-weight: 700;
}

.showcase-links a:hover {
  background: rgba(255, 248, 236, 0.1);
}

.home-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 24px;
  padding: 30px 30px;
  border-radius: 28px;
  background:
    linear-gradient(140deg, rgba(255, 250, 244, 0.96), rgba(244, 230, 209, 0.94)),
    url("./assets/texture-light-luxury.png") center center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 52px rgba(95, 70, 40, 0.1);
}

.home-contact p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.site-footer-rich {
  display: grid;
  gap: 22px;
  margin-top: 26px;
  padding: 34px 28px 26px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(72, 47, 22, 0.98), rgba(122, 84, 40, 0.96)),
    url("./assets/texture-dark-harbour.png") center center / cover no-repeat;
  box-shadow: 0 28px 70px rgba(72, 47, 22, 0.24);
}

.site-footer-rich .footer-brand-block p,
.site-footer-rich .footer-bottom-line p,
.site-footer-rich .footer-links-grid a {
  color: rgba(244, 237, 226, 0.75);
}

.footer-brand {
  margin-bottom: 14px;
}

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

.footer-links-grid h3 {
  margin: 0 0 12px;
  color: #fff6e8;
  font-size: 1rem;
}

.footer-links-grid a {
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-bottom-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .site-header {
    flex-wrap: wrap;
    align-items: center;
  }

  .site-nav {
    display: flex;
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    padding-top: 6px;
    padding-bottom: 2px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 251, 243, 0.9);
    border: 1px solid rgba(184, 138, 59, 0.16);
    font-size: 0.92rem;
  }

  .site-nav a.is-active {
    background: linear-gradient(135deg, rgba(183, 132, 55, 0.14), rgba(217, 177, 106, 0.2));
    border-color: rgba(184, 138, 59, 0.28);
  }

  .nav-cta {
    margin-left: auto;
  }

  .home-entry-row,
  .news-grid,
  .discover-band,
  .split-showcase,
  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
  }

  .discover-band {
    grid-template-columns: 1fr 1fr;
  }

  .discover-stats {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }

  .showcase-panel-dark {
    grid-template-columns: 1fr;
  }

  .hero,
  .split-section,
  .program-grid,
  .section-head-grid,
  .signature-band,
  .education-showcase,
  .education-grid,
  .values-grid,
  .metrics {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    align-items: start;
  }

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

  .signature-points,
  .education-mini-grid {
    grid-template-columns: 1fr 1fr;
  }

  .three-col,
  .four-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero-image {
    grid-template-columns: 1fr;
  }

  .editorial-card {
    grid-template-columns: 1fr;
  }

  .journey-section {
    padding: 34px 24px 0;
  }

  .screen-block {
    min-height: auto;
    padding: 28px;
  }
}

@media (max-width: 720px) {
  .home-page .page-shell {
    width: min(100% - 14px, 1200px);
  }

  .home-hero {
    min-height: 560px;
    border-radius: 28px;
  }

  .home-hero-copy {
    min-height: 560px;
    max-width: 100%;
    padding: 34px 24px;
  }

  .home-entry-row,
  .news-grid,
  .discover-band,
  .split-showcase,
  .footer-links-grid,
  .discover-stats {
    grid-template-columns: 1fr;
  }

  .home-entry-row {
    margin-top: -36px;
    padding: 0 10px;
  }

  .home-section,
  .home-contact {
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .home-section {
    padding-top: 4px;
  }

  .home-section-head,
  .home-contact,
  .footer-bottom-line {
    flex-direction: column;
    align-items: flex-start;
  }

  .discover-band {
    margin-left: 10px;
    margin-right: 10px;
    padding: 12px;
  }

  .news-image-wrap,
  .news-image-wrap img {
    height: 220px;
    min-height: 220px;
  }

  .page-shell {
    width: min(100% - 20px, 1200px);
    padding-top: 12px;
  }

  .site-header,
  .hero,
  .metrics,
  .split-section,
  .program-grid,
  .section-head-grid,
  .signature-band,
  .education-showcase,
  .education-grid,
  .values-grid,
  .contact-band,
  .hero-card-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: stretch;
  }

  .contact-band {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    padding-top: 2px;
  }

  .site-nav a {
    padding: 9px 13px;
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 52px;
  }

  .journey-section {
    padding: 28px 18px 0;
  }

  .screen-block {
    min-height: auto;
    padding: 22px;
  }

  h1 {
    max-width: 100%;
  }

  .metrics,
  .contact-band {
    gap: 16px;
  }

  .nav-cta {
    width: 100%;
    margin-left: 0;
  }

  .hero-badges {
    gap: 8px;
  }

  .two-col,
  .three-col,
  .four-col {
    grid-template-columns: 1fr;
  }

  .signature-points,
  .education-mini-grid {
    grid-template-columns: 1fr;
  }
}
