:root {
  --green: #0f5b3d;
  --green-deep: #093f2b;
  --green-soft: #e7efe9;
  --red: #a31f18;
  --red-deep: #7e1712;
  --cream: #f4ead8;
  --cream-light: #fbf7ef;
  --ink: #1e2722;
  --muted: #68716b;
  --white: #ffffff;
  --line: rgba(15, 91, 61, 0.16);
  --shadow: 0 24px 65px rgba(24, 44, 34, 0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream-light);
  line-height: 1.55;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 10px 16px;
  background: var(--green-deep);
  color: var(--white);
  border-radius: 8px;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(251, 247, 239, 0.91);
  border-bottom: 1px solid rgba(15, 91, 61, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow .28s ease, background .28s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(25, 40, 32, 0.12);
  background: rgba(251, 247, 239, 0.97);
}
.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { width: min(390px, 44vw); flex: 0 1 auto; }
.brand img { width: 100%; max-height: 64px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a {
  position: relative;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--green-deep);
  font-weight: 800;
}
.main-nav a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width .25s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.nav-contact {
  padding: 11px 16px;
  background: var(--red);
  color: var(--white) !important;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(163, 31, 24, .18);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 13px;
  background: var(--green-deep);
  padding: 11px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 95px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 25%, rgba(15, 91, 61, .14), transparent 28%),
    linear-gradient(135deg, #fbf7ef 0%, #f5ead8 52%, #edf2ec 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -12vw -34vw auto;
  width: 72vw;
  height: 72vw;
  border: 1px solid rgba(15, 91, 61, .08);
  border-radius: 50%;
}
.hero::after {
  content: "";
  position: absolute;
  top: 112px;
  left: -95px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 50px solid rgba(163, 31, 24, .045);
}
.hero-shape { position: absolute; pointer-events: none; }
.hero-shape-a {
  width: 190px;
  height: 190px;
  right: 5vw;
  top: 140px;
  border: 1px dashed rgba(15, 91, 61, .23);
  border-radius: 50%;
  animation: rotate 26s linear infinite;
}
.hero-shape-b {
  width: 11px;
  height: 150px;
  left: 4.5vw;
  bottom: 12vh;
  background: linear-gradient(var(--red), transparent);
  border-radius: 99px;
  transform: rotate(25deg);
}
@keyframes rotate { to { transform: rotate(360deg); } }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: center;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow.light { color: #f1c8c4; }
.hero-logo-card {
  width: min(520px, 100%);
  margin: 0 0 26px;
  padding: 14px 17px;
  background: rgba(255, 255, 255, .54);
  border: 1px solid rgba(15, 91, 61, .12);
  border-radius: 18px;
  box-shadow: 0 16px 45px rgba(25, 44, 35, .08);
}
.hero-logo-card img { width: 100%; }
.hero h1 {
  margin: 0;
  max-width: 740px;
  font-size: clamp(3.25rem, 7vw, 6.8rem);
  line-height: .88;
  letter-spacing: -.055em;
  color: var(--green-deep);
  text-wrap: balance;
}
.hero-role {
  margin: 22px 0 5px;
  font-size: clamp(1.06rem, 2.1vw, 1.45rem);
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--ink);
}
.hero-adviser {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 1.02rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: .035em;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 12px 26px rgba(163,31,24,.2); }
.btn-outline { border-color: rgba(15, 91, 61, .42); color: var(--green-deep); background: rgba(255,255,255,.44); }
.btn-ghost { color: var(--green-deep); background: rgba(15, 91, 61, .07); }
.btn-icon { font-size: 1rem; line-height: 1; }

.hero-panel {
  position: relative;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(255,255,255,.06), transparent 45%),
    var(--green-deep);
  box-shadow: 0 34px 80px rgba(9, 63, 43, .28);
  overflow: hidden;
}
.hero-panel::after {
  content: "";
  position: absolute;
  right: -72px;
  top: -72px;
  width: 180px;
  height: 180px;
  border: 28px solid rgba(255,255,255,.05);
  border-radius: 50%;
}
.panel-kicker {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.hero-panel h2 {
  margin: 20px 0 0;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -.025em;
}
.panel-rule { width: 52px; height: 4px; background: var(--red); margin: 28px 0; border-radius: 99px; }
.panel-detail {
  display: grid;
  gap: 3px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.panel-detail:last-child { border-bottom: 0; }
.detail-label { color: rgba(255,255,255,.58); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.panel-detail strong, .panel-detail a { color: var(--white); text-decoration: none; font-size: 1rem; overflow-wrap: anywhere; }
.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--green-deep);
  text-decoration: none;
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.scroll-cue i { width: 1px; height: 28px; background: var(--red); animation: pulseLine 1.6s ease-in-out infinite; }
@keyframes pulseLine { 50% { transform: scaleY(.55); opacity: .45; } }

.section { position: relative; padding: 110px 0; }
.section-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(36px, 8vw, 115px); align-items: center; }
.section-heading h2 {
  margin: 0;
  color: var(--green-deep);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: .95;
  letter-spacing: -.04em;
}
.section-heading.centered { text-align: center; max-width: 800px; margin: 0 auto 46px; }
.section-heading.centered .title-line { margin-inline: auto; }
.title-line { width: 74px; height: 5px; background: var(--red); margin-top: 23px; border-radius: 99px; }

.intro-section { background: #fff; }
.intro-card {
  position: relative;
  min-height: 330px;
  display: grid;
  align-content: center;
  padding: clamp(32px, 6vw, 74px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 87% 14%, rgba(15,91,61,.11), transparent 31%),
    var(--cream-light);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.intro-text {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 760px;
  font-size: clamp(1.7rem, 3.8vw, 3.4rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--green-deep);
}
.institution-mark {
  position: absolute;
  right: 20px;
  bottom: 3px;
  display: flex;
  gap: 0;
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 900;
  line-height: .7;
  color: rgba(15,91,61,.045);
  letter-spacing: -.12em;
  white-space: nowrap;
}

.coordination-section {
  background: linear-gradient(180deg, var(--cream-light), #efe4d1);
}
.profile-card {
  position: relative;
  width: min(880px, 100%);
  margin: 0 auto;
  min-height: 320px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15,91,61,.1);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.profile-accent { position: absolute; inset: 0 auto 0 0; width: 9px; background: linear-gradient(var(--green), var(--red)); }
.profile-initials {
  width: 158px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(15,91,61,.2);
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: 3.3rem;
  font-weight: 900;
  letter-spacing: -.06em;
  box-shadow: inset 0 0 0 10px rgba(255,255,255,.55);
}
.profile-label { margin: 0; color: var(--red); font-weight: 900; letter-spacing: .14em; text-transform: uppercase; font-size: .75rem; }
.profile-content h3 { margin: 4px 0 12px; color: var(--green-deep); font-size: clamp(2.3rem, 5vw, 4.1rem); line-height: 1; letter-spacing: -.045em; }
.profile-role { margin: 0 0 8px; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }
.profile-adviser { color: var(--muted); text-transform: uppercase; letter-spacing: .11em; font-size: .85rem; }
.profile-lines { position: absolute; right: 0; bottom: 28px; width: 105px; display: grid; gap: 7px; }
.profile-lines span { height: 4px; background: rgba(163,31,24,.18); }
.profile-lines span:nth-child(2) { width: 70%; }
.profile-lines span:nth-child(3) { width: 44%; }

.office-section { background: var(--white); }
.office-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(42px, 8vw, 110px); align-items: center; }
.office-copy h2 { margin: 0; color: var(--green-deep); font-size: clamp(2.8rem, 5.8vw, 5.4rem); line-height: .92; letter-spacing: -.045em; }
.office-note { max-width: 430px; margin: 24px 0 0; color: var(--muted); }
.address-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  padding: clamp(34px, 6vw, 62px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(255,255,255,.045), transparent 50%),
    var(--green-deep);
  box-shadow: 0 34px 76px rgba(9,63,43,.24);
}
.address-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: var(--red);
  border-radius: 18px;
  box-shadow: 0 13px 28px rgba(163,31,24,.25);
}
.address-icon svg { width: 30px; fill: var(--white); }
.address-label { display: block; margin-bottom: 12px; color: rgba(255,255,255,.58); text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; }
.address-card address { font-style: normal; font-size: clamp(1.45rem, 3vw, 2.35rem); line-height: 1.28; font-weight: 900; }
.address-card address span { color: #ddcfc3; font-size: .78em; }

.contact-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.07), transparent 26%),
    linear-gradient(135deg, var(--red-deep), var(--red));
  color: var(--white);
  overflow: hidden;
}
.contact-section::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -150px;
  top: -140px;
  border: 65px solid rgba(255,255,255,.04);
  border-radius: 50%;
}
.contact-head { position: relative; z-index: 2; margin-bottom: 42px; }
.contact-head h2 { margin: 0 0 7px; font-size: clamp(2.7rem, 5vw, 4.8rem); line-height: 1; letter-spacing: -.04em; }
.contact-head p:last-child { margin: 0; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .08em; }
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.contact-card {
  min-height: 235px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 27px;
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  transition: transform .24s ease, background .24s ease, border-color .24s ease;
}
.contact-card:hover { transform: translateY(-7px); background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.34); }
.contact-symbol { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 25px; border-radius: 13px; background: rgba(255,255,255,.13); font-size: 1.25rem; }
.contact-label { color: rgba(255,255,255,.6); font-size: .72rem; text-transform: uppercase; letter-spacing: .15em; }
.contact-card strong { margin: 5px 0 0; font-size: clamp(1.5rem, 2.6vw, 2.15rem); line-height: 1.06; }
.contact-card .email-text { font-size: clamp(1.05rem, 1.6vw, 1.45rem); overflow-wrap: anywhere; }
.contact-action { margin-top: auto; padding-top: 25px; font-size: .76rem; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }

.site-footer { position: relative; padding: 60px 0 26px; color: var(--white); background: #072f21; }
.footer-accent { position: absolute; inset: 0 0 auto; height: 5px; background: var(--red); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 60px; align-items: start; }
.footer-brand img { width: min(430px, 100%); padding: 10px; border-radius: 12px; background: var(--cream); }
.footer-brand p { max-width: 620px; color: rgba(255,255,255,.67); margin: 18px 0 0; }
.footer-info { display: grid; gap: 8px; }
.footer-info strong { margin-bottom: 5px; }
.footer-info a { color: rgba(255,255,255,.78); text-decoration: none; overflow-wrap: anywhere; }
.footer-info a:hover { color: var(--white); }
.footer-bottom { margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.45); font-size: .72rem; letter-spacing: .11em; }

.floating-call {
  position: fixed;
  z-index: 900;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--white);
  text-decoration: none;
  font-size: 1.3rem;
  background: var(--red);
  border: 3px solid rgba(255,255,255,.9);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(73, 16, 12, .3);
  transition: transform .2s ease;
}
.floating-call:hover { transform: translateY(-3px) scale(1.03); }

/* Progressive enhancement: content is visible even if JavaScript is blocked. */
.reveal {
  opacity: 1;
  transform: none;
  transition: transform .35s ease, box-shadow .35s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1, .delay-2 { transition-delay: 0s; }

@media (max-width: 980px) {
  .nav-wrap { min-height: 78px; }
  .brand { width: min(350px, 65vw); }
  .menu-toggle { display: block; flex: 0 0 auto; }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: rgba(251,247,239,.99);
    border: 1px solid rgba(15,91,61,.12);
    border-radius: 18px;
    box-shadow: 0 22px 50px rgba(24,44,34,.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(.985);
    transform-origin: top;
    transition: opacity .22s ease, transform .22s ease;
  }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .main-nav a { padding: 14px 13px; border-radius: 10px; }
  .main-nav a:not(.nav-contact)::after { display: none; }
  .main-nav a:hover { background: rgba(15,91,61,.06); }
  .nav-contact { margin-top: 6px; text-align: center; }

  .hero { min-height: auto; padding-top: 130px; }
  .hero-grid, .section-grid, .office-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 50px; }
  .hero-panel { max-width: 620px; }
  .section-grid { gap: 44px; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-card:last-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header .container { width: min(calc(100% - 22px), var(--container)); }
  .brand { width: min(292px, 70vw); }
  .brand img { max-height: 52px; }
  .nav-wrap { min-height: 72px; gap: 12px; }
  .main-nav { left: 11px; right: 11px; }

  .hero { padding: 116px 0 82px; }
  .hero::after { width: 190px; height: 190px; left: -115px; top: 110px; }
  .hero-logo-card { padding: 10px 11px; border-radius: 14px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-panel { padding: 28px 24px; border-radius: 22px; }
  .scroll-cue { display: none; }

  .section { padding: 80px 0; }
  .section-heading h2 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .intro-card { min-height: 285px; padding: 30px 25px; border-radius: 22px; }
  .institution-mark { right: 12px; bottom: 10px; }

  .profile-card { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 42px 24px; border-radius: 22px; }
  .profile-initials { width: 120px; font-size: 2.7rem; }
  .profile-lines { display: none; }
  .profile-accent { width: 100%; height: 7px; inset: 0 0 auto; }

  .address-card { grid-template-columns: 1fr; padding: 30px 25px; border-radius: 22px; }
  .address-card address { font-size: clamp(1.25rem, 6vw, 1.85rem); }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-card, .contact-card:last-child { grid-column: auto; min-height: 210px; }
  .contact-head h2 { font-size: clamp(2.4rem, 12vw, 4rem); }

  .site-footer { padding-top: 48px; }
  .footer-brand img { padding: 7px; }
  .floating-call { width: 52px; height: 52px; right: 14px; bottom: 14px; }
}

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