* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

:root {
  --bg: #eef4ee;
  --paper: #ffffff;
  --text: #243b26;
  --text-soft: #58705c;
  --text-muted: #656f60;
  --heading: #005b3a;
  --primary: #005e45;
  --primary-dark: #004727;
  --primary-light: #eaf7ee;
  --sage: #8ca36a;
  --sage-light: #dce8d8;
  --sage-dark: #516c52;
  --sage-deep: #123d2b;
  --gold: #caa96d;
  --gold-dark: #a88435;
  --line: #d5dfd4;
  --cream: #f9f8f2;
  --shadow: rgba(0, 71, 39, 0.12);
  --max-width: 1280px;
  --font-main: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 10%, rgba(202,169,109,0.12), transparent 14%),
    radial-gradient(circle at 18% 80%, rgba(0,94,69,0.10), transparent 14%),
    var(--bg);
  font-family: var(--font-main);
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  inset: -80px;
  background-image: radial-gradient(var(--line) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1), transparent 100%);
  opacity: 0.45;
  pointer-events: none;
  transform: rotate(-2deg);
}

img, svg {
  display: block;
}

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

.site-shell {
  width: min(1600px, calc(100vw - 48px));
  margin: 0 auto;
  background: var(--paper);
  box-shadow: 0 0 80px var(--shadow);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
}

.site-shell::before {
  left: -130px;
  top: -120px;
  background: var(--sage-light);
}

.site-shell::after {
  right: -120px;
  top: 120px;
  background: var(--gold);
  opacity: 0.2;
}

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 70px;
  background: rgba(255,252,246,0.86);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(24,77,61,0.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--heading);
}

.brand-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--paper);
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 12px 30px var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
  background: var(--paper);
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.brand:hover .brand-icon {
  transform: scale(1.08);
  box-shadow: 0 18px 44px var(--shadow);
  border-color: var(--primary);
}

.brand:hover .brand-logo {
  transform: scale(1.12);
  filter: saturate(1.1);
}

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

.brand-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--gold-dark);
  text-transform: uppercase;
}

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 700;
  color: var(--heading);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-soft);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 50px;
  border: 1px solid var(--gold);
  color: var(--primary);
  font-weight: 800;
  font-size: 13px;
  background: var(--paper);
  transition: all 0.3s ease;
}

.header-cta svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cta:hover {
  background: var(--primary);
  color: var(--paper);
}

.hero {
  position: relative;
  padding: 50px 70px 70px;
  background: linear-gradient(135deg, var(--paper), var(--cream));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(560px, 1.15fr) minmax(420px, 0.85fr);
  align-items: center;
  gap: 50px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.tag-line {
  width: 56px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.tag-text {
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 680px;
  margin: 0 0 20px;
  color: var(--heading);
  font-family: var(--font-display);
  font-size: clamp(62px, 5vw, 86px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.hero-lede {
  max-width: min(620px, 100%);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 26px;
  border-radius: 50px;
  background: var(--primary);
  color: var(--paper);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--primary);
  transition: all 0.3s ease;
  box-shadow: 0 20px 40px var(--shadow);
}

.primary-btn svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.primary-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.secondary-btn {
  padding: 13px 26px;
  border-radius: 50px;
  border: 1px solid var(--sage);
  font-size: 13px;
  font-weight: 800;
  color: var(--sage-deep);
  background: transparent;
  transition: all 0.3s ease;
}

.secondary-btn:hover {
  background: var(--sage-deep);
  color: var(--paper);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.stat {
  position: relative;
}

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -17px;
  top: 50%;
  width: 1px;
  height: 24px;
  background: var(--line);
}

.stat-number {
  display: block;
  color: var(--heading);
  font-family: var(--font-display);
  font-size: clamp(34px, 2vw, 42px);
  font-weight: 700;
}

.stat-label {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  width: min(450px, 100%);
  background: linear-gradient(180deg, var(--paper), var(--cream));
  border-radius: 48% 48% 36px 36px;
  box-shadow: 0 40px 120px var(--shadow);
  border: 1px solid var(--sage-light);
  padding: 34px;
  position: relative;
  isolation: isolate;
}

.card-photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
}

.photo-frame {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  padding: 12px;
  background: linear-gradient(135deg, var(--sage), var(--primary));
  box-shadow: inset 0 0 0 2px var(--paper), 0 30px 80px var(--shadow);
}

.photo-circle {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: linear-gradient(160deg, rgba(24,77,61,0.65), rgba(202,169,109,0.12));
  border: 8px solid var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  overflow: hidden;
}

.profile-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 50px;
  background: var(--paper);
  color: var(--heading);
  border: 1px solid var(--sage-light);
  box-shadow: 0 18px 38px var(--shadow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.badge-one {
  top: 50px;
  right: -10px;
}

.badge-two {
  left: -10px;
  bottom: 80px;
}

.badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.badge-text {
  white-space: nowrap;
}

.advisor-card-content {
  position: relative;
  padding-top: 20px;
}

.advisor-role {
  display: block;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.advisor-card-content h3 {
  color: var(--heading);
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(34px, 3vw, 42px);
}

.advisor-education {
  display: block;
  color: var(--gold-dark);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: -6px 0 10px;
  white-space: nowrap;
}

.advisor-detail {
  color: var(--text-soft);
  line-height: 1.72;
  font-size: 15px;
}

.advisor-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.advisor-meta span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sage-deep);
  font-size: 12px;
  font-weight: 700;
}

.advisor-meta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
}

.contact-mini {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.contact-mini a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
}

.contact-mini svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
}

.trust-bar {
  background: var(--heading);
  color: var(--paper);
  padding: 20px 70px;
}

.trustbar-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 40px;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
}

.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.section {
  padding: 88px 70px;
  position: relative;
}

.section-heading {
  max-width: var(--max-width);
  margin: 0 auto 40px;
}

.section-heading.centered {
  text-align: center;
}

.section-kicker {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-heading h2 {
  max-width: 740px;
  color: var(--heading);
  font-family: var(--font-display);
  font-size: clamp(44px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 14px;
}

.section-heading.centered h2 {
  margin-inline: auto;
}

.section-heading p {
  max-width: 640px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.7;
}

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

.about-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.about-grid-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--sage-light);
  padding-bottom: 8px;
}

.about-grid-wrap::-webkit-scrollbar {
  height: 8px;
}

.about-grid-wrap::-webkit-scrollbar-track {
  background: var(--sage-light);
  border-radius: 50px;
}

.about-grid-wrap::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 50px;
}

.about-grid {
  max-width: var(--max-width);
  min-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(210px, 1fr));
  gap: 26px;
}

.about-card {
  min-width: 210px;
  padding: 36px 28px;
  border-radius: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, min-width 0.3s ease, max-width 0.3s ease, padding 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.about-card.is-open {
  transform: scale(1.045);
  box-shadow: 0 24px 64px var(--shadow);
  border-color: var(--gold);
}

.about-card-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: scaleY(0.84);
  transform-origin: top center;
  transition: max-height 0.45s ease, opacity 0.35s ease, transform 0.35s ease, margin 0.35s ease;
  margin-top: 0;
}

.about-card-detail p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.65;
  margin: 0;
  padding: 0;
}

.about-card.is-open .about-card-detail {
  max-height: 150px;
  opacity: 1;
  transform: scaleY(1);
  margin-top: 16px;
}

.about-arrow-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.about-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--paper);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 30px var(--shadow);
  transition: all 0.3s ease;
}

.about-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-arrow:hover {
  background: var(--primary);
  color: var(--paper);
  transform: translateY(-2px);
}

.about-card.highlighted {
  background: var(--heading);
  color: var(--paper);
  border-color: var(--heading);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  margin-bottom: 20px;
}

.about-card.highlighted .card-icon {
  background: var(--paper);
  color: var(--primary);
}

.card-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.about-card h3 {
  margin: 0 0 14px;
  color: var(--heading);
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.2;
  min-height: 70px;
  display: flex;
  align-items: center;
}

.about-card.highlighted h3 {
  color: var(--paper);
}

.about-card p {
  color: var(--text-soft);
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.about-card.highlighted p {
  color: var(--sage-light);
}

.staff-card {
  background: var(--cream);
}

.staff-card h3 {
  font-size: 28px;
}

.staff-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 26px;
}

.staff-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.staff-row:last-child {
  border-bottom: 1px solid var(--line);
}

.staff-role {
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.staff-value {
  color: var(--heading);
  font-weight: 800;
  font-size: 13px;
}

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

.services-section .section-heading {
  max-width: var(--max-width);
}

.services-section .section-heading h2 {
  max-width: 670px;
}

.services-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 22px;
}

.service-card {
  background: var(--paper);
  padding: 30px 24px;
  border-radius: 30px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px transparent;
  transition: all 0.3s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px var(--shadow);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-index {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--sage-light);
  line-height: 1;
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 16px;
}

.service-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.service-card h3 {
  color: var(--heading);
  font-family: var(--font-display);
  font-size: 30px;
  margin: 0 0 14px;
}

.service-card p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
}

.service-link {
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link span {
  transition: transform 0.3s ease;
}

.service-card:hover .service-link span {
  transform: translateX(4px);
}

.announcements-section {
  padding: 70px 70px;
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.announcements-section .section-heading {
  max-width: 780px;
  margin: 0 auto 30px;
}

.announcements-section .section-heading.centered {
  text-align: center;
}

.notice-board {
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 24px;
  box-shadow: 0 30px 80px var(--shadow);
}

.notice-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.notice-board-label {
  color: var(--heading);
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 38px);
  font-weight: 700;
}

.notice-board-status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sage-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--primary-light);
  border-radius: 50px;
  padding: 10px 14px;
}

.notice-board-status span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--gold-dark);
  border-radius: 50%;
}

.notice-slideshow {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  align-items: center;
  gap: 14px;
  background: var(--cream);
  padding: 14px;
  border-radius: 20px;
  margin-top: 18px;
}

.notice-image-frame {
  position: relative;
  width: min(640px, 100%);
  min-height: 310px;
  background: var(--paper);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.notice-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 400ms ease, transform 400ms ease;
}

.notice-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.notice-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--sage);
  background: var(--paper);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.notice-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.notice-arrow:hover {
  background: var(--primary);
  color: var(--paper);
}

.notice-caption {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 4px 8px;
}

.notice-caption-kicker {
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.notice-caption-title {
  color: var(--heading);
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 34px);
}

.notice-caption-text {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.8;
}

.notice-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.notice-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  cursor: pointer;
}

.notice-dot.is-active {
  background: var(--gold-dark);
}

.journey-section {
  background: var(--paper);
}

.journey-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(260px, 0.8fr);
  gap: 70px;
  align-items: center;
}

.journey-content {
  max-width: 640px;
}

.section-kicker {
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.journey-content h2 {
  color: var(--heading);
  font-family: var(--font-display);
  font-size: clamp(44px, 4vw, 54px);
  line-height: 1.16;
  margin: 14px 0 20px;
}

.journey-content p {
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.7;
}

.journey-list {
  margin-top: 40px;
}

.journey-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.journey-row:last-child {
  border-bottom: 1px solid var(--line);
}

.journey-year {
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
}

.journey-row h3 {
  color: var(--heading);
  font-family: var(--font-display);
  font-size: 30px;
  margin: 0 0 8px;
}

.journey-row p {
  color: var(--text-soft);
  font-size: 14px;
  margin: 0;
}

.journey-card {
  min-height: 440px;
  position: relative;
  background:
    linear-gradient(145deg, rgba(24,77,61,0.96), rgba(31,58,44,0.96)),
    url('https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?auto=format&fit=crop&w=1000&q=80');
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 80px var(--shadow);
}

.journey-card-inner {
  background: rgba(255,253,248,0.95);
  padding: 34px 30px;
  border-radius: 24px;
  color: var(--heading);
  width: 100%;
}

.mini-title {
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.journey-card-inner h3 {
  font-family: var(--font-display);
  font-size: 40px;
  margin: 20px 0 14px;
  color: var(--heading);
}

.journey-card-inner p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}

.promise-list {
  margin: 24px 0 40px;
}

.promise-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--sage-deep);
  font-weight: 700;
  font-size: 12px;
  margin: 12px 0;
}

.promise-list svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--gold-dark);
  stroke-width: 2;
}

.mini-btn {
  width: auto;
  padding-inline: 22px;
}

.cta-section {
  background: var(--heading);
  padding: 70px 70px;
}

.cta-box {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--paper);
}

.section-kicker.light {
  color: var(--gold);
}

.cta-box h2 {
  margin: 6px 0 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(44px, 4vw, 56px);
  line-height: 1.15;
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--paper);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  border: none;
  box-shadow: 0 20px 50px var(--shadow);
}

.cta-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.contact-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 0.85fr) minmax(420px, 1fr);
  gap: 60px;
  align-items: center;
}

.contact-info h2 {
  color: var(--heading);
  font-family: var(--font-display);
  font-size: clamp(44px, 4vw, 54px);
  margin: 0 0 16px;
  line-height: 1.12;
}

.contact-info p {
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.7;
  max-width: 620px;
}

.contact-cards {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.contact-row:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.contact-label {
  display: block;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-row a,
.contact-row span:not(.contact-label) {
  color: var(--text-soft);
  font-weight: 700;
  font-size: 15px;
}

.contact-form {
  background: var(--paper);
  border-radius: 30px;
  padding: 36px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px var(--shadow);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-row label {
  color: var(--heading);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
  transition: all 0.3s ease;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(202,169,109,0.12);
}

.form-row textarea {
  resize: vertical;
}

.form-button {
  width: 100%;
  margin-top: 14px;
  cursor: pointer;
}

.site-footer {
  background: var(--heading);
  color: var(--paper);
  padding: 44px 70px 50px;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto auto;
  align-items: center;
  gap: 30px;
}

.footer-brand .brand-icon {
  background: var(--paper);
  color: var(--primary);
}

.footer-brand .brand-kicker,
.footer-brand .brand-name {
  color: var(--paper);
}

.footer-brand p {
  color: var(--sage-light);
  margin: 20px 0 0;
  max-width: 360px;
  font-size: 14px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-links a {
  color: var(--sage-light);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.footer-links a:hover {
  color: var(--paper);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 36px auto 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 30px;
  color: var(--sage-light);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

@media (max-width: 1200px) {
  .site-header {
    padding: 22px 34px;
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero,
  .section,
  .cta-section,
  .site-footer {
    padding-left: 34px;
    padding-right: 34px;
  }

  .hero-grid,
  .contact-grid,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .trustbar-grid {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .notice-slideshow {
    grid-template-columns: 46px minmax(260px, 1fr) 46px;
  }

  .notice-image-frame {
    min-height: 280px;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100vw, calc(100vw - 12px));
  }

  .site-header {
    position: relative;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .announcements-section {
    padding: 34px 20px;
  }

  .notice-board {
    padding: 16px;
  }

  .notice-board-head {
    flex-wrap: wrap;
  }

  .notice-slideshow {
    grid-template-columns: 40px minmax(220px, 1fr) 40px;
  }

  .notice-image-frame {
    min-height: 240px;
  }

  .notice-arrow {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-copy h1 {
    font-size: 52px;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-card {
    border-radius: 30px;
  }

  .card-photo {
    min-height: auto;
    padding: 20px 0;
  }

  .photo-frame {
    width: 220px;
    height: 220px;
  }

  .services-grid,
  .about-grid,
  .trustbar-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .hero-stats {
    align-items: flex-start;
  }

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

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form {
    padding: 24px;
  }
}
