/*
 * GSEWS approved header, homepage hero and footer layer
 * Scope: header, mobile navigation, homepage hero, footer, basic responsive polish.
 * This file intentionally loads last so the frozen v1.1.0 theme can remain intact.
 */

:root {
  --gsews-p1-blue: #0b4fb3;
  --gsews-p1-blue-dark: #08254f;
  --gsews-p1-blue-soft: #edf5ff;
  --gsews-p1-ink: #0d1d36;
  --gsews-p1-text: #506176;
  --gsews-p1-line: #dce7f2;
  --gsews-p1-surface: #ffffff;
  --gsews-p1-gold: #f2ad24;
  --gsews-p1-green: #0a9b69;
  --gsews-p1-radius: 18px;
  --gsews-p1-shadow: 0 14px 40px rgba(17, 48, 86, .10);
}

/* ---------- Header ---------- */
.gsews-phase1-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(16,50,90,.08);
  backdrop-filter: blur(14px);
}

.gsews-phase1-header .gsews-header-main {
  background: transparent;
  box-shadow: none;
}

.gsews-phase1-header .gsews-header-main-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 22px;
}

@media (min-width: 1025px) {
  .gsews-phase1-header .gsews-container {
    width: min(calc(100% - 28px), 1380px);
  }
}

@media (min-width: 1361px) {
  .gsews-phase1-header .gsews-header-main-inner {
    display: flex !important;
  }
  .gsews-phase1-header .gsews-header-cta {
    display: inline-flex !important;
  }
}

.gsews-phase1-header .gsews-brand-lockup {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 330px;
  text-decoration: none;
}

.gsews-phase1-header .gsews-brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.gsews-phase1-header .gsews-phase1-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.gsews-phase1-header .gsews-brand-name-wrap {
  display: block;
  min-width: 0;
}

.gsews-phase1-header .gsews-brand-name-wrap strong {
  display: block;
  max-width: 290px;
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--gsews-p1-ink);
  letter-spacing: -.015em;
}

.gsews-phase1-header .gsews-brand-name-wrap small,
.gsews-phase1-footer small {
  display: none !important;
}

/* The Bengali tagline is retained inside the supplied official logo only. */
.gsews-brand-tagline,
.gsews-footer-tagline,
.gsews-company-tagline {
  display: none !important;
}

.gsews-phase1-main-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
}

.gsews-phase1-main-nav .gsews-primary-menu {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  white-space: nowrap;
}

.gsews-phase1-main-nav .gsews-primary-menu > li > a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 10px;
  border-radius: 10px;
  color: #1d2b3e;
  font-size: 13.5px;
  line-height: 1;
  font-weight: 650;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease;
}

.gsews-phase1-main-nav .gsews-primary-menu > li > a:hover,
.gsews-phase1-main-nav .gsews-primary-menu > li.current-menu-item > a {
  background: var(--gsews-p1-blue-soft);
  color: var(--gsews-p1-blue);
}

.gsews-student-access {
  position: relative;
  flex: 0 0 auto;
}

.gsews-student-access-trigger {
  min-height: 42px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #bdd4f1;
  background: #f7fbff;
  color: #0c4b9f;
  border-radius: 11px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.gsews-student-access-trigger svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.gsews-student-access-trigger .gsews-student-access-chevron {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform .2s ease;
}

.gsews-student-access-trigger[aria-expanded="true"] .gsews-student-access-chevron {
  transform: rotate(180deg);
}

.gsews-student-access-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 260px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--gsews-p1-line);
  border-radius: 15px;
  box-shadow: 0 18px 50px rgba(10,35,70,.16);
}

.gsews-student-access-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  text-decoration: none;
}

.gsews-student-access-menu a:hover {
  background: var(--gsews-p1-blue-soft);
}

.gsews-student-access-menu strong,
.gsews-student-access-menu span {
  display: block;
}

.gsews-student-access-menu strong {
  color: var(--gsews-p1-ink);
  font-size: 13px;
}

.gsews-student-access-menu span {
  margin-top: 2px;
  color: var(--gsews-p1-text);
  font-size: 11.5px;
}

.gsews-phase1-header .gsews-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.gsews-phase1-header .gsews-header-cta {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(11,79,179,.20);
}

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

.gsews-phase1-header .gsews-mobile-menu-toggle {
  width: 46px;
  height: 46px;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  background: #fff;
  border: 1px solid #c9d9eb;
  border-radius: 13px;
  box-shadow: 0 6px 18px rgba(18,50,90,.08);
}

.gsews-phase1-header .gsews-mobile-menu-line {
  width: 19px;
  height: 2px;
  margin: 0;
  border-radius: 4px;
  background: #0b438e;
  transition: transform .2s ease, opacity .2s ease;
}

.gsews-phase1-header .gsews-mobile-menu-toggle[aria-expanded="true"] .gsews-mobile-menu-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.gsews-phase1-header .gsews-mobile-menu-toggle[aria-expanded="true"] .gsews-mobile-menu-line:nth-child(2) { opacity: 0; }
.gsews-phase1-header .gsews-mobile-menu-toggle[aria-expanded="true"] .gsews-mobile-menu-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.gsews-phase1-header .gsews-mobile-menu-panel {
  position: fixed;
  inset: 0;
  z-index: 1002;
}

.gsews-phase1-header .gsews-mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,21,43,.48);
  backdrop-filter: blur(3px);
}

.gsews-phase1-header .gsews-mobile-menu-drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(88vw, 360px);
  background: #fff;
  padding: max(14px, env(safe-area-inset-top)) 16px max(18px, env(safe-area-inset-bottom));
  overflow-y: auto;
  box-shadow: -18px 0 50px rgba(4,26,58,.20);
}

.gsews-mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gsews-p1-line);
}

.gsews-mobile-menu-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.gsews-mobile-menu-brand img {
  width: 48px;
  height: 43px;
  object-fit: contain;
}

.gsews-mobile-menu-brand strong {
  max-width: 210px;
  color: var(--gsews-p1-ink);
  font-size: 13px;
  line-height: 1.35;
}

.gsews-mobile-menu-close {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid #d4e0ed;
  background: #f8fbff;
  border-radius: 12px;
  color: #0b438e;
  display: grid;
  place-items: center;
}

.gsews-mobile-menu-close svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.gsews-phase1-header .gsews-mobile-navigation {
  margin-top: 12px;
}

.gsews-phase1-header .gsews-mobile-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gsews-phase1-header .gsews-mobile-menu li {
  margin: 0;
}

.gsews-phase1-header .gsews-mobile-menu a {
  min-height: 45px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid #edf2f7;
  color: #17243a;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.gsews-mobile-student-access {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--gsews-p1-line);
}

.gsews-mobile-section-label {
  display: block;
  margin-bottom: 9px;
  color: #61738a;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.gsews-mobile-student-actions,
.gsews-phase1-header .gsews-mobile-menu-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.gsews-mobile-student-actions a,
.gsews-phase1-header .gsews-mobile-menu-contact a {
  min-height: 44px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid #cbdced;
  border-radius: 11px;
  background: #fff;
  color: #0d4d9f;
  font-size: 12.5px;
  font-weight: 750;
  text-decoration: none;
}

.gsews-mobile-student-actions svg,
.gsews-phase1-header .gsews-mobile-menu-contact svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.gsews-mobile-student-actions a:first-child svg { fill: currentColor; stroke: none; }

.gsews-phase1-header .gsews-mobile-menu-contact {
  margin-top: 12px;
}

.gsews-phase1-header .gsews-mobile-menu-contact .gsews-mobile-guidance {
  grid-column: 1 / -1;
  background: var(--gsews-p1-blue);
  border-color: var(--gsews-p1-blue);
  color: #fff;
}

body.gsews-mobile-menu-open {
  overflow: hidden;
}

/* ---------- Hero ---------- */
.gsews-phase1-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 72px;
  background:
    radial-gradient(circle at 7% 16%, rgba(242,173,36,.10), transparent 28%),
    radial-gradient(circle at 94% 10%, rgba(39,118,221,.13), transparent 32%),
    linear-gradient(135deg, #fffdf7 0%, #ffffff 46%, #f4f8ff 100%);
}

.gsews-phase1-hero .gsews-hero-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.gsews-phase1-hero .gsews-hero-orb-one {
  width: 320px;
  height: 320px;
  right: -150px;
  top: -160px;
  border: 44px solid rgba(15,91,190,.05);
}

.gsews-phase1-hero .gsews-hero-orb-two {
  width: 180px;
  height: 180px;
  left: -100px;
  bottom: -90px;
  background: rgba(242,173,36,.06);
}

.gsews-phase1-hero .gsews-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .78fr);
  gap: clamp(42px, 5vw, 78px);
  align-items: center;
}

.gsews-phase1-hero .gsews-hero-content {
  max-width: 720px;
}

.gsews-phase1-hero .gsews-hero-kicker {
  width: fit-content;
  max-width: 100%;
  min-height: 40px;
  padding: 8px 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #cce0f8;
  border-radius: 999px;
  background: rgba(238,246,255,.86);
  color: #0d57ae;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.gsews-phase1-hero .gsews-hero-kicker svg {
  width: 17px;
  height: 17px;
  fill: var(--gsews-p1-gold);
}

.gsews-phase1-hero .gsews-hero-title {
  margin: 22px 0 0;
  max-width: 720px;
  color: var(--gsews-p1-ink);
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-size: clamp(48px, 4.6vw, 72px);
  line-height: 1.04;
  letter-spacing: -.04em;
  font-weight: 800;
}

.gsews-phase1-hero .gsews-hero-title span {
  display: block;
  margin-top: 6px;
  color: var(--gsews-p1-blue);
}

.gsews-phase1-hero .gsews-hero-text {
  max-width: 620px;
  margin: 22px 0 0;
  color: #52637a;
  font-size: 17px;
  line-height: 1.72;
}

.gsews-phase1-hero .gsews-hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.gsews-phase1-hero .gsews-btn {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 750;
  text-decoration: none;
}

.gsews-phase1-hero .gsews-btn-primary {
  background: var(--gsews-p1-blue);
  color: #fff;
  border: 1px solid var(--gsews-p1-blue);
  box-shadow: 0 12px 26px rgba(11,79,179,.20);
}

.gsews-phase1-hero .gsews-btn-secondary {
  background: rgba(255,255,255,.88);
  color: #0d4d9f;
  border: 1px solid #9fc2eb;
  box-shadow: none;
}

.gsews-phase1-hero .gsews-btn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.gsews-hero-meta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  color: #6b7a8c;
  font-size: 12.5px;
}

.gsews-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gsews-hero-meta svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #0f8f68;
  stroke-width: 1.7;
}

.gsews-phase1-hero .gsews-hero-image-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 10px solid rgba(255,255,255,.9);
  border-radius: 28px;
  background: #e9eef5;
  box-shadow: 0 25px 70px rgba(19,53,91,.18);
}

.gsews-phase1-hero .gsews-hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 62%;
}

.gsews-hero-image-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  gap: 7px;
  justify-content: center;
  flex-wrap: wrap;
}

.gsews-hero-image-caption span {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: rgba(7,34,72,.72);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
}

/* ---------- Footer ---------- */
.gsews-phase1-footer {
  margin-top: 0;
  background: #071f42;
  color: #dbe6f3;
}

.gsews-phase1-footer .gsews-footer-main {
  padding: 58px 0 30px;
  background: transparent;
}

.gsews-footer-topline {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(540px, 1.7fr);
  gap: clamp(42px, 6vw, 84px);
  align-items: start;
}

.gsews-footer-brand-block {
  max-width: 430px;
}

.gsews-phase1-footer .gsews-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.gsews-phase1-footer .gsews-footer-brand img {
  width: 62px;
  height: 56px;
  object-fit: contain;
}

.gsews-phase1-footer .gsews-footer-brand strong {
  max-width: 300px;
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
}

.gsews-footer-brand-block > p {
  margin: 16px 0 0;
  max-width: 410px;
  color: #b8c8dc;
  font-size: 13.5px;
  line-height: 1.65;
}

.gsews-footer-reg {
  margin-top: 10px;
  display: block;
  color: #8fa6c2;
  font-size: 11.5px;
}

.gsews-footer-reg strong { color: #dce8f5; }

.gsews-footer-quick-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.gsews-footer-quick-actions a,
.gsews-footer-directions {
  min-height: 43px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.gsews-footer-quick-actions a:first-child {
  background: #0a8f63;
  border-color: #0a8f63;
}

.gsews-footer-quick-actions svg,
.gsews-footer-directions svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.gsews-footer-groups {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1.2fr;
  gap: 28px;
}

.gsews-footer-group {
  border: 0;
}

.gsews-footer-group summary {
  list-style: none;
  cursor: default;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
}

.gsews-footer-group summary::-webkit-details-marker { display: none; }
.gsews-footer-group summary svg { display: none; }

.gsews-phase1-footer .gsews-footer-menu,
.gsews-footer-group > ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.gsews-phase1-footer .gsews-footer-menu li,
.gsews-footer-group > ul li {
  margin: 0 0 7px;
  padding: 0;
}

.gsews-phase1-footer .gsews-footer-menu a,
.gsews-footer-group > ul a,
.gsews-footer-contact-compact a {
  color: #aec0d6;
  font-size: 12.5px;
  line-height: 1.45;
  text-decoration: none;
}

.gsews-phase1-footer .gsews-footer-menu a:hover,
.gsews-footer-group > ul a:hover,
.gsews-footer-contact-compact a:hover {
  color: #fff;
}

.gsews-footer-contact-compact {
  margin-top: 14px;
}

.gsews-footer-contact-compact p {
  margin: 0 0 10px;
  display: grid;
  gap: 2px;
}

.gsews-footer-contact-compact strong {
  color: #dce7f4;
  font-size: 11px;
  font-weight: 700;
}

.gsews-footer-contact-compact span,
.gsews-footer-contact-compact a {
  color: #aec0d6;
  font-size: 12px;
  line-height: 1.5;
  word-break: break-word;
}

.gsews-footer-directions { margin-top: 3px; }

.gsews-footer-mobile-map {
  display: none;
}

.gsews-footer-map-frame {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 13px;
  background: rgba(255,255,255,.06);
}

.gsews-footer-map-frame iframe {
  width: 100%;
  height: 170px;
  display: block;
  border: 0;
}

.gsews-footer-social-row {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.gsews-footer-social-row > span {
  color: #91a9c5;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.gsews-footer-social-row > div {
  display: flex;
  gap: 8px;
}

.gsews-footer-social-row a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: #fff;
}

.gsews-footer-social-row svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.gsews-footer-social-row a:first-child svg { fill: currentColor; stroke: none; }

.gsews-phase1-footer .gsews-footer-bottom {
  padding: 16px 0;
  background: #061a36;
  border-top: 1px solid rgba(255,255,255,.08);
}

.gsews-phase1-footer .gsews-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.gsews-phase1-footer .gsews-footer-bottom p {
  margin: 0;
  color: #8fa6c2;
  font-size: 11px;
}

.gsews-phase1-footer .gsews-footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 14px;
}

.gsews-phase1-footer .gsews-footer-legal-nav a {
  color: #b8c8dc;
  font-size: 11px;
  text-decoration: none;
}

/* ---------- Tablet / Mobile ---------- */
@media (max-width: 1180px) {
  .gsews-phase1-header .gsews-brand-lockup { min-width: 265px; }
  .gsews-phase1-header .gsews-brand-name-wrap strong { max-width: 220px; font-size: 13.5px; }
  .gsews-phase1-main-nav .gsews-primary-menu > li > a { padding: 0 7px; font-size: 12.5px; }
  .gsews-student-access-trigger { padding: 0 9px; font-size: 12px; }
  .gsews-phase1-header .gsews-header-cta { padding: 0 13px; font-size: 12.5px; }
}

@media (max-width: 1024px) {
  .gsews-phase1-header .gsews-header-main-inner { min-height: 70px; }
  .gsews-phase1-header .gsews-main-navigation,
  .gsews-phase1-header .gsews-header-cta { display: none; }
  .gsews-phase1-header .gsews-mobile-menu-toggle { display: flex; }
  .gsews-phase1-header .gsews-brand-lockup { min-width: 0; flex: 1; }

  .gsews-phase1-hero { padding: 56px 0 58px; }
  .gsews-phase1-hero .gsews-hero-inner { grid-template-columns: 1fr 1fr; gap: 34px; }
  .gsews-phase1-hero .gsews-hero-title { font-size: clamp(42px, 6vw, 58px); }

  .gsews-footer-topline { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 767px) {
  .gsews-phase1-header {
    backdrop-filter: none;
    background: #fff;
  }

  .gsews-phase1-header .gsews-header-main-inner {
    min-height: 68px;
    gap: 10px;
  }

  .gsews-phase1-header .gsews-brand-lockup { gap: 8px; }
  .gsews-phase1-header .gsews-brand-logo {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }
  .gsews-phase1-header .gsews-phase1-logo {
    width: 46px;
    height: 46px;
  }
  .gsews-phase1-header .gsews-brand-name-wrap strong {
    max-width: 245px;
    font-size: 13.5px;
    line-height: 1.32;
  }
  .gsews-phase1-header .gsews-mobile-menu-toggle {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 12px;
  }

  .gsews-phase1-hero {
    padding: 34px 0 44px;
  }

  .gsews-phase1-hero .gsews-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .gsews-phase1-hero .gsews-hero-content { order: 1; width: 100%; }
  .gsews-phase1-hero .gsews-hero-visual { order: 2; width: 100%; }

  .gsews-phase1-hero .gsews-hero-kicker {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 10px;
    letter-spacing: .015em;
    text-transform: none;
  }

  .gsews-phase1-hero .gsews-hero-title {
    margin-top: 17px;
    font-size: clamp(34px, 9.8vw, 43px);
    line-height: 1.07;
    letter-spacing: -.035em;
  }

  .gsews-phase1-hero .gsews-hero-title span { margin-top: 4px; }

  .gsews-phase1-hero .gsews-hero-text {
    margin-top: 15px;
    font-size: 14.5px;
    line-height: 1.62;
  }

  .gsews-phase1-hero .gsews-hero-actions {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .gsews-phase1-hero .gsews-btn {
    width: 100%;
    min-height: 46px;
    border-radius: 11px;
    font-size: 13px;
  }

  .gsews-hero-meta {
    margin-top: 15px;
    gap: 7px 12px;
    font-size: 11px;
  }

  .gsews-phase1-hero .gsews-hero-image-card {
    aspect-ratio: 16 / 11;
    border-width: 6px;
    border-radius: 20px;
    box-shadow: 0 16px 38px rgba(19,53,91,.16);
  }

  .gsews-phase1-hero .gsews-hero-image {
    object-position: 50% 62%;
  }

  .gsews-hero-image-caption {
    left: 9px;
    right: 9px;
    bottom: 9px;
    gap: 5px;
  }
  .gsews-hero-image-caption span {
    padding: 5px 7px;
    font-size: 9px;
  }

  .gsews-phase1-footer .gsews-footer-main { padding: 36px 0 20px; }
  .gsews-footer-topline { display: block; }
  .gsews-footer-brand-block { max-width: none; }
  .gsews-phase1-footer .gsews-footer-brand { gap: 10px; }
  .gsews-phase1-footer .gsews-footer-brand img { width: 58px; height: 52px; }
  .gsews-phase1-footer .gsews-footer-brand strong { max-width: 260px; font-size: 13px; line-height: 1.4; }
  .gsews-footer-brand-block > p { margin-top: 13px; font-size: 12.5px; line-height: 1.55; }
  .gsews-footer-reg { margin-top: 8px; font-size: 10.5px; }
  .gsews-footer-quick-actions { margin-top: 14px; display: grid; grid-template-columns: 1fr 1fr; }
  .gsews-footer-quick-actions a { width: 100%; min-height: 43px; }

  .gsews-footer-groups {
    margin-top: 24px;
    display: block;
    border-top: 1px solid rgba(255,255,255,.10);
  }

  .gsews-footer-group {
    border-bottom: 1px solid rgba(255,255,255,.10);
  }

  .gsews-footer-group summary {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    font-size: 12.5px;
  }

  .gsews-footer-group summary svg {
    display: block;
    width: 17px;
    height: 17px;
    fill: none;
    stroke: #91a9c5;
    stroke-width: 2;
    transition: transform .2s ease;
  }

  .gsews-footer-group[open] summary svg { transform: rotate(180deg); }

  .gsews-phase1-footer .gsews-footer-menu,
  .gsews-footer-group > ul,
  .gsews-footer-contact-compact {
    margin: 0;
    padding: 0 0 13px;
  }

  .gsews-phase1-footer .gsews-footer-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
    row-gap: 3px;
  }
  .gsews-phase1-footer .gsews-footer-menu li,
  .gsews-footer-group > ul li { margin: 0; }
  .gsews-phase1-footer .gsews-footer-menu a,
  .gsews-footer-group > ul a { display: block; padding: 6px 0; font-size: 11.5px; }

  .gsews-footer-contact-compact p { margin-bottom: 8px; }
  .gsews-footer-contact-compact strong { font-size: 10px; }
  .gsews-footer-contact-compact span,
  .gsews-footer-contact-compact a { font-size: 11.5px; }

  .gsews-footer-mobile-map {
    display: block;
    margin: 12px 0 10px;
  }

  .gsews-footer-mobile-map > strong {
    display: block;
    margin-bottom: 7px;
    color: #dce7f4;
    font-size: 10px;
    font-weight: 700;
  }

  .gsews-footer-map-frame iframe {
    height: 165px;
  }

  .gsews-footer-directions { width: 100%; min-height: 40px; margin-top: 4px; }

  .gsews-footer-social-row {
    margin-top: 18px;
    padding-top: 16px;
  }
  .gsews-footer-social-row > span { font-size: 10px; }
  .gsews-footer-social-row a { width: 38px; height: 38px; }

  .gsews-phase1-footer .gsews-footer-bottom { padding: 14px 0 max(14px, env(safe-area-inset-bottom)); }
  .gsews-phase1-footer .gsews-footer-bottom-inner {
    display: grid;
    gap: 9px;
  }
  .gsews-phase1-footer .gsews-footer-bottom p { font-size: 10.5px; line-height: 1.5; }
  .gsews-phase1-footer .gsews-footer-legal-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
    gap: 7px 14px;
  }
  .gsews-phase1-footer .gsews-footer-legal-nav a {
    font-size: 10.5px;
    line-height: 1.4;
  }
}

@media (max-width: 430px) {
  .gsews-phase1-header .gsews-brand-name-wrap strong { max-width: 225px; font-size: 13px; }
}

@media (max-width: 360px) {
  .gsews-phase1-header .gsews-brand-name-wrap strong { max-width: 190px; font-size: 12.5px; }
  .gsews-phase1-header .gsews-brand-logo { width: 46px; height: 46px; flex-basis: 46px; }
  .gsews-phase1-header .gsews-phase1-logo { width: 42px; height: 42px; }
  .gsews-phase1-hero .gsews-hero-kicker { font-size: 9.5px; }
  .gsews-phase1-hero .gsews-hero-title { font-size: 33px; }
  .gsews-footer-quick-actions { grid-template-columns: 1fr; }
  .gsews-phase1-footer .gsews-footer-menu { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .gsews-phase1-header *,
  .gsews-phase1-hero *,
  .gsews-phase1-footer * {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
