@charset "UTF-8";
.blog-post {
  max-width: 950px;
}

.blog-post__featured {
  margin: 0 auto 26px;
  max-width: 1000px;
  width: 100%;
}
.blog-post__featured img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg, 16px);
  border: 1px solid var(--border, #e5e7eb);
  object-fit: cover;
}

.breadcrumb {
  max-width: 950px;
  margin: 0 auto;
  padding: 18px 0 0;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  color: var(--text-3, #8a93a3);
}
.breadcrumb__list li {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
}
.breadcrumb__list li + li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
  opacity: 0.55;
  flex-shrink: 0;
}
.breadcrumb__list a {
  color: var(--text-2, #5b6472);
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}
.breadcrumb__list a:hover {
  color: var(--primary, #3D7AE8);
}
.breadcrumb__list li[aria-current=page] {
  color: var(--text, #1f2630);
  font-weight: 600;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .breadcrumb__list {
    font-size: 0.78rem;
  }
}
/* ===== pages/events.php ===== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.events-empty {
  text-align: center;
  color: var(--text-muted, #888);
  padding: 48px 0;
}

.event-card {
  border: 1px solid var(--border-color, #e5e5e5);
  border-radius: 16px;
  overflow: hidden;
  background: var(--card-bg, #fff);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, background 0.2s;
}

.event-card:hover {
  border-color: var(--primary, #3D7AE8);
}

.event-card--past {
  opacity: 0.78;
}

.event-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #3D7AE8, #6f42c1);
  overflow: hidden;
}

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

.event-card__media-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
}

.event-card__flag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
}

.event-card__flag--past {
  left: auto;
  right: 10px;
  background: rgba(0, 0, 0, 0.45);
}

.event-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.event-card__date {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary, #3D7AE8);
}

.event-card__title {
  font-size: 1.1rem;
  margin: 0;
}

.event-card__title a {
  color: inherit;
  text-decoration: none;
}

.event-card__title a:hover {
  color: var(--primary, #3D7AE8);
}

.event-card__loc, .event-card__summary {
  font-size: 0.85rem;
  color: var(--text-muted, #777);
  margin: 0;
}

.event-card__cta {
  margin-top: auto;
  align-self: flex-start;
}

/* ===== pages/event-detail.php ===== */
.event-detail__cover {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
}

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

.event-detail__hero .container {
  padding-top: 28px;
}

.event-detail__back {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary, #3D7AE8);
  text-decoration: none;
  font-size: 0.88rem;
}

.event-detail__title {
  font-size: 2rem;
  margin: 0 0 12px;
}

.event-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-muted, #777);
  font-size: 0.9rem;
}

.event-detail__badge {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  padding: 2px 10px;
  font-weight: 600;
}

.event-detail__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

.event-detail__lead {
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 500;
}

.event-detail__body {
  line-height: 1.7;
}

.event-apply-card {
  border: 1px solid var(--border-color, #e5e5e5);
  border-radius: 16px;
  padding: 22px;
  background: var(--card-bg, #fff);
  position: sticky;
  top: 90px;
}

.event-apply-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.event-apply-card__spots {
  font-size: 0.82rem;
  color: var(--primary, #3D7AE8);
  font-weight: 600;
  margin: 0 0 12px;
}

.event-apply-form .form__group {
  margin-bottom: 12px;
}

.event-apply-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

@media (max-width: 860px) {
  .event-detail__grid {
    grid-template-columns: 1fr;
  }
  .event-apply-card {
    position: static;
  }
}
/* ===== pages/announcements.php ===== */
.ann-page-empty {
  text-align: center;
  color: var(--text-muted, #888);
  padding: 48px 0;
}

.ann-page-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
}

.ann-card {
  position: relative;
  border: 1px solid var(--border-color, #e5e5e5);
  border-left-width: 4px;
  border-radius: 14px;
  padding: 22px 26px;
  background: var(--card-bg, #fff);
}

.ann-card--info {
  border-left-color: #3D7AE8;
}

.ann-card--success {
  border-left-color: #10b981;
}

.ann-card--warning {
  border-left-color: #f59e0b;
}

.ann-card--danger {
  border-left-color: #ef4444;
}

.ann-card__close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: 0;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted, #999);
}

.ann-card__close:hover {
  color: var(--text, #333);
}

.ann-card__date {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary, #3D7AE8);
}

.ann-card__title {
  font-size: 1.3rem;
  margin: 6px 0 8px;
}

.ann-card__body {
  line-height: 1.6;
  color: var(--text, #444);
}

.ann-card__deadline {
  font-size: 0.82rem;
  color: var(--text-muted, #888);
  margin-top: 10px;
}

.ann-card__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.ann-card__reg {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ann-card__reg-input {
  padding: 9px 12px;
  border: 1px solid var(--border-color, #ddd);
  border-radius: 8px;
  min-width: 200px;
}

.ann-card__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.ann-card.is-hidden {
  display: none;
}

/* (maintenance.php keeps its own scoped <style> inline — it is a
   standalone page with bare element selectors that must not leak.) */
/* ===== pages/blog-post.php ===== */
.blog-post__content p, .blog-post__content ol, .blog-post__content ul, .blog-post__content pre, .blog-post__content blockquote {
  margin: 0 0 1rem;
}
.blog-post__content h1, .blog-post__content h2, .blog-post__content h3 {
  color: var(--text);
  line-height: 1.25;
  margin: 1.35em 0 0.55em;
}
.blog-post__content h1 {
  font-size: 2em;
}
.blog-post__content h2 {
  font-size: 1.5em;
}
.blog-post__content h3 {
  font-size: 1.17em;
}
.blog-post__content ol, .blog-post__content ul {
  padding-left: 1.5em;
}
.blog-post__content ul {
  list-style: disc;
}
.blog-post__content ol {
  list-style: decimal;
}
.blog-post__content blockquote {
  border-left: 4px solid var(--primary);
  padding: 10px 14px;
  background: var(--surface-2);
  color: var(--text-2);
  border-radius: 0 8px 8px 0;
}
.blog-post__content pre {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  overflow-x: auto;
  white-space: pre-wrap;
}
.blog-post__content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.35rem auto;
  border-radius: 10px;
}
.blog-post__content .ql-align-center {
  text-align: center;
}
.blog-post__content .ql-align-right {
  text-align: right;
}
.blog-post__content .ql-align-justify {
  text-align: justify;
}
.blog-post__content .ql-size-small {
  font-size: 0.75em;
}
.blog-post__content .ql-size-large {
  font-size: 1.5em;
}
.blog-post__content .ql-size-huge {
  font-size: 2.5em;
}
.blog-post__content .ql-indent-1 {
  padding-left: 3em;
}
.blog-post__content .ql-indent-2 {
  padding-left: 6em;
}
.blog-post__content .ql-indent-3 {
  padding-left: 9em;
}
.blog-post__content figure {
  margin: 1.5rem 0;
}
.blog-post__content figcaption {
  margin-top: 0.6rem;
  color: var(--text-3);
  font-size: 0.82rem;
  line-height: 1.5;
  text-align: center;
}
.blog-post__content .content-image--wide {
  width: min(1120px, 100vw - 32px);
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}
.blog-post__content .content-image--left,
.blog-post__content .content-image--right {
  width: min(44%, 420px);
}
.blog-post__content .content-image--left {
  float: left;
  margin: 0.45rem 1.4rem 1rem 0;
}
.blog-post__content .content-image--right {
  float: right;
  margin: 0.45rem 0 1rem 1.4rem;
}
.blog-post__content .content-embed {
  clear: both;
}
.blog-post__content .content-embed iframe,
.blog-post__content .content-embed video {
  display: block;
  width: 100%;
  min-height: min(520px, 56vw);
  border: 0;
  border-radius: 8px;
  background: #111;
}
.blog-post__content .content-table {
  width: 100%;
  margin: 1.5rem 0;
  overflow-x: auto;
}
.blog-post__content .content-table table {
  width: 100%;
  border-collapse: collapse;
}
.blog-post__content .content-table th,
.blog-post__content .content-table td {
  padding: 10px 12px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.blog-post__content .content-table th {
  background: var(--surface-2);
  color: var(--text);
}
.blog-post__content .content-callout {
  clear: both;
  margin: 1.35rem 0;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  background: var(--surface-2);
}
.blog-post__content .content-callout > strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
}
.blog-post__content .content-callout--success {
  border-left-color: #16a36a;
}
.blog-post__content .content-callout--warning {
  border-left-color: #d89b18;
}
.blog-post__content .content-callout--danger {
  border-left-color: #dc4c4c;
}
.blog-post__content .content-columns {
  clear: both;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 1.5rem 0;
}
.blog-post__content .content-columns > div {
  min-width: 0;
}
.blog-post__content .content-spacer {
  clear: both;
  width: 100%;
}
.blog-post__content .content-checklist {
  list-style: none;
  padding-left: 0;
}
.blog-post__content .content-checklist li {
  position: relative;
  padding-left: 28px;
}
.blog-post__content .content-checklist li::before {
  position: absolute;
  top: 0.25em;
  left: 0;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border: 1px solid var(--border);
  border-radius: 4px;
  content: "";
  font-size: 0.7rem;
}
.blog-post__content .content-checklist li[data-checked="1"]::before {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  content: "✓";
}
.blog-post__content .content-button-wrap {
  clear: both;
  margin: 1.5rem 0;
  text-align: left;
}
.blog-post__content .content-button-wrap[data-align=center] {
  text-align: center;
}
.blog-post__content .content-button-wrap[data-align=right] {
  text-align: right;
}
.blog-post__content .content-button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 18px;
  border-radius: 7px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.blog-post__content hr {
  clear: both;
  margin: 2rem 0;
  border: 0;
  border-top: 1px solid var(--border);
}
.blog-post__content::after {
  display: block;
  clear: both;
  content: "";
}

@media (max-width: 700px) {
  .blog-post__content .content-columns {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .blog-post__content .content-image--left,
  .blog-post__content .content-image--right {
    float: none;
    width: 100%;
    margin: 1.35rem 0;
  }
  .blog-post__content .content-image--wide {
    width: 100%;
    margin-left: 0;
    transform: none;
  }
}
.blog-post__engage {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 28px 0 8px;
}

.blog-engage-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border-color, #e2e2e2);
  border-radius: 999px;
  background: var(--card-bg, #fff);
  color: var(--text, #333);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}

.blog-engage-btn svg {
  width: 18px;
  height: 18px;
}

.blog-engage-btn:hover {
  border-color: var(--primary, #3D7AE8);
  color: var(--primary, #3D7AE8);
}

.blog-engage-btn.is-active {
  background: var(--primary, #3D7AE8);
  border-color: var(--primary, #3D7AE8);
  color: #fff;
}

.blog-engage-btn.is-active svg {
  fill: rgba(255, 255, 255, 0.25);
}

/* ===== components/announcement-banner.php ===== */
.site-ann-bar {
  position: relative;
  z-index: 60;
}

.site-ann-float {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 1200;
  width: min(560px, 100vw - 32px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-ann {
  font-size: 0.9rem;
}

.site-ann-float .site-ann {
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.site-ann__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.site-ann-float .site-ann__inner {
  padding: 14px 18px;
}

.site-ann__text {
  flex: 1;
  min-width: 0;
  line-height: 1.4;
}

.site-ann__title {
  font-weight: 700;
}

.site-ann__ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.site-ann__link {
  white-space: nowrap;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.site-ann__link--btn {
  border: 0;
  background: currentColor;
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
}

.site-ann--info .site-ann__link--btn {
  background: #1b3a7a;
  color: #fff;
}

.site-ann--success .site-ann__link--btn {
  background: #1c6b3a;
  color: #fff;
}

.site-ann--warning .site-ann__link--btn {
  background: #7a5a10;
  color: #fff;
}

.site-ann--danger .site-ann__link--btn {
  background: #8a1f1f;
  color: #fff;
}

.site-ann__link--ghost {
  text-decoration: none;
  opacity: 0.85;
}

.site-ann__reg {
  display: flex;
  gap: 6px;
  align-items: center;
}

.site-ann__reg-input {
  padding: 6px 10px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 8px;
  font-size: 0.85rem;
  min-width: 170px;
}

.site-ann__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.site-ann__close {
  background: transparent;
  border: 0;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: inherit;
  opacity: 0.7;
  padding: 0 2px;
}

.site-ann__close:hover {
  opacity: 1;
}

.site-ann--info {
  background: #e8f0fe;
  color: #1b3a7a;
}

.site-ann--success {
  background: #e6f6ec;
  color: #1c6b3a;
}

.site-ann--warning {
  background: #fdf3d8;
  color: #7a5a10;
}

.site-ann--danger {
  background: #fdeaea;
  color: #8a1f1f;
}

html.dark .site-ann--info {
  background: #1c2a47;
  color: #bcd2ff;
}

html.dark .site-ann--success {
  background: #13301f;
  color: #9fe3b6;
}

html.dark .site-ann--warning {
  background: #332a10;
  color: #f0d488;
}

html.dark .site-ann--danger {
  background: #3a1818;
  color: #f4a9a9;
}

.site-ann.is-hidden {
  display: none;
}

@media (max-width: 640px) {
  .site-ann__inner {
    flex-wrap: wrap;
    gap: 8px;
  }
}
.blog-comments {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border, #e5e7eb);
}

.blog-comments__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  margin: 0 0 22px;
}

.blog-comments__count {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary, #3D7AE8);
  background: rgba(61, 122, 232, 0.12);
  border-radius: 999px;
  padding: 2px 10px;
}

.blog-comments__empty {
  color: var(--text-muted, #888);
}

.blog-comment-form {
  background: var(--surface, #fff);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 28px;
}

.blog-comment-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.blog-comment-form__row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-comment-form__input,
.blog-comment-form__textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border, #ddd);
  border-radius: 10px;
  background: var(--bg, #fff);
  color: var(--text, #1d2333);
  font: inherit;
  font-size: 0.92rem;
}

.blog-comment-form__textarea {
  resize: vertical;
  min-height: 90px;
}

.blog-comment-form__input:focus,
.blog-comment-form__textarea:focus {
  outline: 2px solid rgba(61, 122, 232, 0.18);
  outline-offset: 0;
  border-color: var(--primary, #3D7AE8);
}

.blog-comment-form__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.blog-comment-form__msg {
  font-size: 0.85rem;
  color: var(--text-muted, #888);
}

.blog-comment-form__msg.is-error {
  color: #dc2626;
}

.blog-comment-form__msg.is-success {
  color: #16a34a;
}

.blog-comments__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.blog-comment {
  display: flex;
  gap: 14px;
}

.blog-comment__avatar {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3D7AE8, #6f42c1);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.blog-comment__body {
  flex: 1;
  min-width: 0;
}

.blog-comment__head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.blog-comment__name {
  color: var(--text, #1d2333);
  font-size: 0.95rem;
}

.blog-comment__time {
  color: var(--text-muted, #999);
  font-size: 0.78rem;
}

.blog-comment__text {
  margin: 0;
  line-height: 1.6;
  color: var(--text-2, #444);
  word-wrap: break-word;
}

@media (max-width: 560px) {
  .blog-comment-form__row {
    flex-direction: column;
  }
}
.gallery-header {
  padding: 28px 0 4px;
  border-bottom: 1px solid var(--border, #e5e7eb);
  margin-bottom: 28px;
}
.gallery-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.gallery-header__title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text, #1d2333);
  white-space: nowrap;
}

.section--gallery {
  padding-top: 8px;
}

.gallery-toolbar--public {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}
.gallery-toolbar--public .gallery-toolbar__search {
  flex: 0 1 200px;
}
.gallery-toolbar--public .gallery-toolbar__sort {
  display: inline-flex;
}

.gallery-toolbar__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.gallery-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border: 1px solid var(--border, #e0e0e0);
  border-radius: 999px;
  background: var(--surface, #fff);
  color: var(--text, #1d2333);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.gallery-chip__count {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--bg, #f1f3f7);
  color: var(--text-muted, #888);
}
.gallery-chip:hover {
  border-color: var(--primary, #3D7AE8);
}
.gallery-chip.is-active {
  background: var(--primary, #3D7AE8);
  border-color: var(--primary, #3D7AE8);
  color: #fff;
}
.gallery-chip.is-active .gallery-chip__count {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.gallery-select {
  padding: 8px 12px;
  border: 1px solid var(--border, #e0e0e0);
  border-radius: 10px;
  background: var(--surface, #fff);
  color: var(--text, #1d2333);
  font: inherit;
  font-size: 0.85rem;
  min-width: 120px;
}

.gallery-select:focus {
  outline: 2px solid rgba(61, 122, 232, 0.18);
  outline-offset: 0;
  border-color: var(--primary, #3D7AE8);
}

.gallery-empty {
  text-align: center;
  color: var(--text-muted, #888);
  padding: 50px 0;
}

@media (max-width: 700px) {
  .gallery-header__inner {
    align-items: stretch;
  }
  .gallery-toolbar--public {
    width: 100%;
  }
  .gallery-toolbar--public .gallery-toolbar__search {
    flex: 1 1 100%;
  }
}
:root {
  --aawg-paper: #fbfbf9;
  --aawg-paper-2: #f4f4eb;
  --aawg-line: #e5e5d5;
  --aawg-ink: #1a1a15;
  --aawg-muted: #626252;
  --aawg-soft: #81816e;
  --aawg-blue: #004a99;
  --aawg-blue-2: #0e63aa;
  --aawg-navy: #001f40;
  --aawg-navy-2: #002e60;
  --aawg-yellow: #f2c94c;
  --aawg-red: #b42318;
  --aawg-green: #16784f;
  --bg: var(--aawg-paper);
  --white-bg: #fff;
  --surface: #fff;
  --surface-2: var(--aawg-paper-2);
  --surface-3: #f0f5fa;
  --surface-4: #e1edf7;
  --border: var(--aawg-line);
  --border-hover: #bbd8f0;
  --text: var(--aawg-ink);
  --text-2: var(--aawg-muted);
  --text-3: var(--aawg-soft);
  --muted: var(--aawg-soft);
  --primary: var(--aawg-blue);
  --primary-dark: #003e80;
  --primary-rgb: 0, 74, 153;
  --secondary: var(--aawg-yellow);
  --accent: var(--aawg-red);
  --success: var(--aawg-green);
  --gradient: linear-gradient(135deg, var(--aawg-blue) 0%, var(--aawg-blue-2) 100%);
  --gradient-2: linear-gradient(135deg, var(--aawg-blue) 0%, var(--aawg-yellow) 100%);
  --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
  --radius-sm: 8px;
  --radius: 8px;
  --radius-lg: 8px;
  --radius-xl: 8px;
  --nav-h: 74px;
}

html.dark {
  --bg: #0d0d0b;
  --white-bg: #0d0d0b;
  --surface: #141813;
  --surface-2: #1a1a15;
  --surface-3: #24251e;
  --surface-4: #303027;
  --border: rgba(229, 229, 213, .14);
  --border-hover: rgba(128, 190, 232, .36);
  --text: #f4f4eb;
  --text-2: #d0d0bb;
  --text-3: #a7a791;
  --muted: #a7a791;
  --primary: #41a0df;
  --primary-dark: #80bee8;
  --primary-rgb: 65, 160, 223;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
}

body * {
  letter-spacing: 0;
  box-shadow: none;
}

h1,
h2,
h3,
h4,
.section-title,
.page-hero__title,
.svc-head__title {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0;
}

.container {
  max-width: 1280px;
}

.section {
  padding: clamp(64px, 8vw, 96px) 0;
}

.section--alt,
.section--light,
.section--dark {
  background: var(--surface-2);
}

.section-eyebrow,
.svc-head__pre,
.project-card__category,
.port-card__cat,
.blog-card__cat,
.event-card__date,
.service-detail-card__price,
.case-study__client,
.case-study__industry,
.case-study__date {
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.btn {
  min-height: 44px;
  border-radius: 8px;
  border-width: 1px;
  font-weight: 800;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.btn--primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  opacity: 1;
}

.btn--outline,
.btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn--outline:hover,
.btn--ghost:hover {
  background: var(--surface-2);
  border-color: var(--primary);
  color: var(--primary);
}

.btn--white {
  background: #fff;
  border-color: #fff;
  color: var(--aawg-navy);
}

.site-header {
  --header-h: var(--nav-h);
  --header-logo-h: 48px;
  --header-y-pad: 13px;
  background: rgba(251, 251, 249, 0.96);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  transition: height 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.site-header.scrolled,
.site-header[data-transparent].scrolled {
  --header-h: 62px;
  --header-logo-h: 40px;
  --header-y-pad: 11px;
  top: calc(var(--ann-bar-h, 0px) - 1px) !important;
}

html.dark .site-header {
  background: rgba(13, 13, 11, 0.94);
}

.site-header[data-transparent] {
  background: rgba(251, 251, 249, 0.96);
  border-bottom-color: var(--border);
}

html.dark .site-header[data-transparent] {
  background: rgba(13, 13, 11, 0.94);
}

.site-header[data-transparent]:not(.scrolled) .nav__link,
.site-header[data-transparent]:not(.scrolled) .nav__dropdown-trigger,
.site-header[data-transparent]:not(.scrolled) .lang-btn,
.site-header[data-transparent]:not(.scrolled) .dark-toggle {
  color: var(--text-2);
}

.site-header[data-transparent]:not(.scrolled) .nav__link--active {
  color: var(--primary);
}

.site-header[data-transparent]:not(.scrolled) .nav__toggle span {
  background: var(--primary);
}

.site-header[data-transparent].scrolled {
  background: rgba(251, 251, 249, 0.96);
  border-bottom-color: var(--border);
}

html.dark .site-header[data-transparent].scrolled {
  background: rgba(13, 13, 11, 0.94);
}

.nav {
  box-sizing: border-box;
  height: var(--header-h);
  gap: 18px;
  padding-block: var(--header-y-pad);
  transition: height 0.18s ease, gap 0.18s ease;
}

.nav__brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: var(--header-logo-h);
  transition: height 0.18s ease;
}

.brand-logo-img {
  max-width: 168px;
  transition: max-width 0.18s ease;
}

.brand-logo-text {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.site-header.scrolled .nav {
  gap: 14px;
}

.site-header.scrolled .brand-logo-img {
  max-width: 140px;
}

.site-header.scrolled .nav__cta {
  min-height: 38px;
  padding-block: 6px;
}

.nav__link,
.nav__dropdown-trigger {
  color: var(--text-2);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav__link:hover,
.nav__dropdown-trigger:hover {
  background: var(--surface-2);
  color: var(--primary);
}

.nav__link--active,
.nav__dropdown-trigger.nav__link--active,
.nav__dropdown-link--active {
  color: var(--primary);
}

.nav__link--active::after {
  background: var(--secondary);
}

.nav__dropdown {
  background: var(--surface);
  border-color: var(--border);
  border-radius: 8px;
}

.nav__dropdown-link {
  color: var(--text-2);
  font-size: 0.86rem;
}

.dark-toggle,
.lang-btn {
  border-radius: 8px;
}

.lang-switcher {
  gap: 8px;
}

.lang-switcher .lang-btn,
.site-header[data-transparent]:not(.scrolled) .lang-switcher .lang-btn {
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-2) !important;
}

.lang-switcher .lang-btn:hover {
  background: var(--surface-2);
  color: var(--primary) !important;
}

.lang-switcher .lang-btn--active,
.site-header[data-transparent]:not(.scrolled) .lang-switcher .lang-btn--active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff !important;
}

.lang-sep {
  display: none;
}

.nav__mobile-lang {
  display: none;
  list-style: none;
}

.hero--editorial {
  position: relative;
  min-height: 0;
  height: auto;
  padding: clamp(64px, 8vw, 108px) 0 clamp(58px, 6vw, 78px);
  background: var(--aawg-navy);
  color: #fff;
  overflow: hidden;
}

.hero--editorial .hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero--editorial .hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.42;
}

.hero--editorial::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 31, 64, 0.97) 0%, rgba(0, 31, 64, 0.9) 48%, rgba(0, 31, 64, 0.24) 100%);
  opacity: 1;
  pointer-events: none;
}

.hero--editorial::after {
  display: none;
}

.hero--editorial .hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  min-height: 0;
  height: auto;
  align-items: center;
}

.hero__copy,
.hero__left-content {
  max-width: 760px;
  padding: 0;
}

.hero__title {
  max-width: 820px;
  margin: 0 0 22px;
  color: #fff;
  font: 400 clamp(2.8rem, 6.1vw, 5.45rem)/1 var(--font-heading);
}

.hero__title span {
  color: #80bee8;
  font-style: italic;
  font-weight: 600;
}

.hero__intro {
  max-width: 720px;
  margin: 0 0 32px;
  color: rgba(244, 244, 235, 0.82);
  font-size: clamp(1.02rem, 1.6vw, 1.24rem);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 clamp(54px, 7vw, 92px);
}

.hero__actions .btn--outline {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.hero__actions .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.home-stats {
  position: relative;
  z-index: 3;
  margin-top: -42px;
  padding-bottom: clamp(28px, 5vw, 52px);
}

.home-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.home-stats__grid.reveal {
  opacity: 1;
  filter: none;
  clip-path: none;
}

.home-stat {
  min-width: 0;
  padding: 12px clamp(12px, 2vw, 26px);
  text-align: center;
  border-left: 1px solid var(--border);
}

.home-stat:first-child {
  border-left: 0;
}

.home-stat strong {
  display: block;
  color: var(--primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.home-stat span {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-stat p {
  max-width: 170px;
  margin: 6px auto 0;
  color: var(--text-2);
  font-size: 0.8rem;
  line-height: 1.5;
}

.svc-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(24px, 5vw, 60px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.svc-head__title {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.08;
}

.svc-head__right {
  color: var(--text-2);
  font-size: 0.96rem;
}

.svc-cards,
.services-detail-grid,
.process-grid,
.skills-grid,
.interests-grid,
.events-grid,
.blog-grid,
.partners-grid,
.projects-masonry {
  gap: 24px;
}

.svc-card,
.service-detail-card,
.project-card,
.port-card,
.blog-card,
.event-card,
.partner-card,
.ann-card,
.faq-item,
.contact-info,
.contact-form-wrap,
.blog-widget,
.process-step,
.skill-group,
.interest-card,
.case-study__block,
.service-detail__section,
.event-apply-card,
.blog-comment-form,
.partner-cta,
.newsletter-banner__inner {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: none;
}

.svc-card:hover,
.service-detail-card:hover,
.project-card:hover,
.port-card:hover,
.blog-card:hover,
.event-card:hover,
.partner-card:hover,
.faq-item:hover,
.process-step:hover,
.interest-card:hover,
.gallery-item:hover {
  border-color: var(--border-hover);
  background: var(--surface);
  box-shadow: none;
  transform: none;
}

.svc-card {
  padding: 28px;
}

.svc-card__icon-wrap,
.service-detail-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary);
}

.service-detail {
  padding-top: clamp(34px, 5vw, 64px);
}

.service-detail .container {
  max-width: 1120px;
}

.service-detail__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  margin-bottom: clamp(28px, 5vw, 44px);
}

.service-detail__hero-copy {
  min-width: 0;
}

.service-detail__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary);
}

.service-detail__icon svg {
  width: 28px;
  height: 28px;
}

.service-detail__title {
  max-width: 760px;
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.02;
}

.service-detail__desc {
  max-width: 760px;
  margin: 0;
  color: var(--text-2);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.75;
}

.service-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.service-detail__media {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
}

.service-detail__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.service-detail__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: clamp(28px, 5vw, 42px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
}

.service-detail__facts div {
  padding: 22px 24px;
  border-left: 1px solid var(--border);
}

.service-detail__facts div:first-child {
  border-left: 0;
}

.service-detail__facts span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-detail__facts strong {
  color: var(--text);
  font-size: 1rem;
}

.service-detail__section {
  margin-bottom: 18px;
  padding: clamp(24px, 4vw, 34px);
}

.service-detail__section h2 {
  margin: 0 0 20px;
  color: var(--text);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--text-2);
  font-weight: 700;
}

.check-list__item svg {
  flex: none;
  color: var(--success);
}

.service-detail .faq-list {
  max-width: none;
}

.service-detail .faq-item {
  background: var(--surface-2);
}

.service-detail__cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  margin: 24px 0;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--aawg-navy-2);
  color: #fff;
}

.service-detail__cta h3,
.service-detail__cta p {
  margin: 0;
  color: #fff;
}

.service-detail__cta h3 {
  font-size: 1.5rem;
}

.service-detail__cta p {
  margin-top: 6px;
  color: rgba(244, 244, 235, 0.82);
}

.service-detail__cta .btn--outline {
  border-color: rgba(255, 255, 255, 0.36);
  color: #fff;
}

.service-detail__others {
  margin-top: 32px;
}

.service-detail__others h3 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 1.5rem;
}

.services-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-mini-card {
  display: flex;
  min-height: 120px;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
}

.service-mini-card:hover {
  border-color: var(--border-hover);
}

.service-mini-card span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary);
}

.service-mini-card svg {
  width: 20px;
  height: 20px;
}

.svc-card__title,
.service-detail-card__title,
.project-card__title,
.port-card__title,
.blog-card__title,
.event-card__title,
.partner-card__name,
.skill-group__title,
.process-step__title {
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 800;
}

.svc-card__desc,
.service-detail-card__desc,
.project-card__desc,
.port-card__body,
.blog-card__excerpt,
.event-card__summary,
.partner-card__desc,
.process-step__desc,
.timeline__desc,
.contact-info__intro {
  color: var(--text-2);
}

.svc-card__price,
.tag,
.filter-btn,
.blog-widget__count,
.event-card__flag,
.project-card__badge {
  border-radius: 8px;
  background: rgba(var(--primary-rgb), 0.11);
  color: var(--primary);
}

.svc-card__link,
.partner-card__link,
.project-card__case-link,
.blog-card__title a:hover,
.event-card__title a:hover {
  color: var(--primary);
  font-weight: 800;
}

.impact-section {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.impact-section .section-header {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
}

.impact-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 18px;
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.impact-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary);
}

.impact-card__icon svg {
  width: 25px;
  height: 25px;
}

.impact-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.25rem;
}

.impact-card p {
  margin: 0;
  color: var(--text-2);
  line-height: 1.7;
}

.impact-card__link {
  margin-top: auto;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.impact-card__link:hover {
  text-decoration: underline;
}

.about-split {
  gap: clamp(32px, 6vw, 72px);
}

.about-split__photo-wrap {
  position: relative;
  aspect-ratio: 1/1;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  overflow: hidden;
}

.about-split__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  border: 0;
  border-radius: 0;
  display: block;
}

.about-split__badge {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  background: var(--aawg-yellow);
  color: var(--aawg-navy);
}

.skills-list,
.project-card__tags,
.port-card__tags,
.tag-cloud,
.case-study__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--text-2);
  font-size: 0.82rem;
  font-weight: 700;
}

.initiatives-bento,
.projects-masonry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.initiatives-bento {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 24px;
}

.initiatives-bento .port-card:first-child,
.projects-masonry .project-card:first-child {
  grid-column: span 2;
}

.initiatives-bento .port-card:first-child {
  grid-column: auto;
}

.port-card,
.project-card,
.blog-card,
.event-card {
  overflow: hidden;
}

.initiatives-bento .port-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
}

.port-card__img,
.project-card__image,
.event-card__media {
  background: var(--surface-2);
}

.initiatives-bento .port-card__img {
  aspect-ratio: 16/10;
}

.port-card__img img,
.project-card__image img,
.event-card__media img,
.blog-card__thumb,
.gallery-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card:hover .project-card__image img,
.gallery-item:not(.gallery-item--video):hover .gallery-item__media img {
  opacity: 1;
  transform: none;
}

.project-card__overlay,
.port-card__overlay {
  background: rgba(0, 31, 64, 0.72);
}

.initiatives-bento .port-card__body {
  flex: 1;
  background: inherit;
}

.project-card__link,
.port-card__view {
  background: #fff;
  color: var(--aawg-navy);
  border-radius: 8px;
}

.geology-focus {
  padding-top: 0;
}

.geology-focus__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--aawg-navy-2);
  color: #fff;
}

.geology-focus__panel {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 58px);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.geology-focus__panel:first-child {
  border-left: 0;
}

.geology-focus__panel p {
  margin: 0 0 14px;
  color: var(--aawg-yellow);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.geology-focus__panel h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.geology-focus__panel span {
  display: block;
  color: rgba(244, 244, 235, 0.82);
  line-height: 1.75;
}

.geology-focus__cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  margin-top: 24px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.geology-focus__cta svg {
  width: 16px;
  height: 16px;
}

.geology-focus__cta--gold {
  border-color: var(--aawg-yellow);
  background: var(--aawg-yellow);
  color: var(--aawg-navy);
}

.geology-focus__cta:hover {
  border-color: #fff;
  color: #fff;
}

.geology-focus__cta--gold:hover {
  border-color: var(--aawg-yellow);
  color: var(--aawg-navy);
}

.news-events {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
}

.news-events__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 5vw, 48px);
}

.news-events__head .section-title {
  margin-bottom: 0;
}

.news-events__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news-events__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
}

.news-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 16px;
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.news-card__badge {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 6px;
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.news-card__badge--article {
  background: rgba(180, 60, 60, 0.12);
  color: #b43c3c;
}

.news-card time,
.news-card__place {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.news-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.25rem;
}

.news-card p {
  margin: 0;
  color: var(--text-2);
  line-height: 1.7;
}

.news-card__link {
  margin-top: auto;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.news-card__link:hover {
  text-decoration: underline;
}

.volunteer-hero {
  background: var(--surface-2);
}

.volunteer-hero__inner,
.volunteer-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.volunteer-hero__copy p,
.volunteer-form-intro p {
  color: var(--text-2);
  font-size: 1.02rem;
  line-height: 1.75;
}

.volunteer-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.volunteer-hero__stats span,
.volunteer-hero__panel,
.volunteer-project-card,
.volunteer-form {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.volunteer-hero__stats span {
  padding: 14px;
  color: var(--text-2);
  font-size: 0.82rem;
}

.volunteer-hero__stats strong {
  display: block;
  color: var(--primary);
  font-size: 1.8rem;
  line-height: 1;
}

.volunteer-hero__panel,
.volunteer-form {
  padding: clamp(22px, 4vw, 34px);
}

.volunteer-hero__panel h2,
.volunteer-form-intro h2 {
  margin-top: 0;
}

.volunteer-checks {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.volunteer-checks li {
  position: relative;
  padding-left: 24px;
  color: var(--text-2);
  line-height: 1.6;
}

.volunteer-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
}

.volunteer-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.volunteer-project-card {
  overflow: hidden;
}

.volunteer-project-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.volunteer-project-card div {
  padding: 16px;
}

.volunteer-project-card span {
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.volunteer-project-card h3 {
  margin: 6px 0;
  font-size: 1rem;
}

.volunteer-project-card p {
  margin: 0;
  color: var(--text-2);
  font-size: 0.88rem;
  line-height: 1.55;
}

.volunteer-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.volunteer-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.volunteer-choice-grid fieldset,
.volunteer-checkboxes {
  display: grid;
  gap: 9px;
  min-width: 0;
  margin: 0 0 16px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-2);
}

.volunteer-choice-grid legend,
.volunteer-checkboxes legend {
  padding: 0 4px;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 800;
}

.volunteer-choice-grid label,
.volunteer-checkboxes label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-2);
  font-size: 0.9rem;
}

.volunteer-checkboxes {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.volunteer-checkboxes legend {
  grid-column: 1/-1;
}

.page-hero,
.blog-hero,
.gallery-header {
  position: relative;
  overflow: hidden;
  padding: clamp(62px, 7vw, 92px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--aawg-navy-2);
  color: #fff;
}

.page-hero::before,
.page-hero::after {
  display: none;
}

.page-hero .container,
.blog-hero .container,
.gallery-header__inner {
  position: relative;
  z-index: 1;
}

.page-hero .section-eyebrow,
.blog-hero .section__subtitle,
.gallery-header__title {
  color: rgba(244, 244, 235, 0.78);
}

.page-hero__title,
.blog-hero .section__title,
.gallery-header__title {
  max-width: 840px;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.06;
}

.blog-search,
.form,
.newsletter-form {
  border-radius: 8px;
}

.form__input,
.form__textarea,
.form__select,
.newsletter-form__input,
.blog-search__input,
.gallery-select,
.ann-card__reg-input,
.blog-comment-form__input,
.blog-comment-form__textarea {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus,
.newsletter-form__input:focus,
.blog-search__input:focus,
.gallery-select:focus,
.blog-comment-form__input:focus,
.blog-comment-form__textarea:focus {
  border-color: var(--primary);
  outline: 2px solid rgba(var(--primary-rgb), 0.16);
  outline-offset: 0;
  box-shadow: none;
}

.contact-layout {
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
}

.contact-info,
.contact-form-wrap {
  padding: clamp(24px, 4vw, 36px);
}

.contact-info__item {
  align-items: flex-start;
}

.contact-info__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
}

.contact-info__availability,
.badge--success {
  border-radius: 8px;
  background: rgba(22, 120, 79, 0.12);
  color: var(--success);
}

.event-card__media-fallback {
  background: var(--surface-2);
  color: var(--primary);
}

.blog-layout,
.blog-post__layout {
  align-items: start;
}

.blog-sidebar {
  top: calc(var(--nav-h) + var(--ann-bar-h, 0px) + 24px);
}

.blog-widget {
  padding: 22px;
}

.blog-widget__link {
  border-radius: 8px;
}

.faq-item__question {
  width: 100%;
  padding: 20px 22px;
  color: var(--text);
  text-align: left;
  font-weight: 800;
}

.faq-item__answer {
  padding: 0 22px 20px;
  color: var(--text-2);
}

.gallery-item {
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
}

.lightbox {
  background: rgba(0, 31, 64, 0.92);
}

.cta-banner {
  background: var(--aawg-navy-2);
  color: #fff;
}

.cta-banner__title,
.cta-banner__desc {
  color: #fff;
}

.cta-banner .btn--ghost,
.cta-banner .btn--outline {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
}

.newsletter-banner__inner {
  padding: clamp(24px, 4vw, 38px);
}

.footer {
  background: var(--aawg-navy);
  color: rgba(244, 244, 235, 0.76);
}

.footer::before {
  display: none;
}

.footer__logo {
  color: #fff;
}

.footer__logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.footer__logo-badge {
  border-radius: 8px;
}

.footer__heading,
.footer__links a:hover,
.footer__contact-link:hover,
.footer__cta:hover {
  color: #fff;
}

.footer__heading::after {
  background: var(--aawg-yellow);
}

.footer__location,
.footer__contact-link,
.footer__cta,
.footer__social-link {
  border-radius: 8px;
}

.footer__social-link:hover,
.footer__cta:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.footer--template {
  border-top: 1px solid #0f172a;
  background: #020617;
  color: #cbd5e1;
}

.footer--template .footer__top {
  display: block;
  padding: clamp(54px, 7vw, 76px) var(--container-x, 24px) 0;
}

.footer--template .footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(150px, 0.7fr) minmax(230px, 1fr) minmax(270px, 1fr);
  gap: clamp(28px, 5vw, 46px);
}

.footer--template .footer__brand {
  max-width: none;
  padding-right: 0;
  border-right: 0;
}

.footer--template .footer__tagline {
  max-width: 320px;
  margin: 0;
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.75;
}

.footer--template .footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  text-decoration: none;
}

.footer--template .footer__logo-img {
  width: 44px;
  height: 44px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  object-fit: cover;
}

.footer--template .footer__heading {
  margin: 0 0 18px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer--template .footer__heading::after {
  display: none;
}

.footer--template .footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer--template .footer__links a,
.footer__contact-list a,
.footer__legal a {
  color: #94a3b8;
  text-decoration: none;
}

.footer--template .footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.footer__chevron,
.footer__contact-icon {
  color: var(--primary);
  font-weight: 900;
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer__contact-list li {
  display: flex;
  gap: 12px;
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer--template .footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer--template .footer__social-link {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #0f172a;
  border-radius: 8px;
  background: #0f172a;
  color: #94a3b8;
  font-weight: 900;
  text-decoration: none;
}

.footer--template .footer__links a:hover,
.footer__contact-list a:hover,
.footer__legal a:hover,
.footer--template .footer__social-link:hover {
  color: #60a5fa;
}

.footer-newsletter {
  margin-top: 14px;
}

.footer-newsletter__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.footer-newsletter__row {
  display: flex;
}

.footer-newsletter input[type=email] {
  min-width: 0;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #1e293b;
  border-radius: 8px 0 0 8px;
  background: #0f172a;
  color: #fff;
  font-size: 0.9rem;
}

.footer-newsletter button {
  border: 0;
  border-radius: 0 8px 8px 0;
  background: var(--primary);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  padding: 0 16px;
}

.footer-newsletter__response {
  margin-top: 10px;
  font-size: 0.82rem;
}

.footer--template .footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(36px, 5vw, 52px);
  padding: 26px 0;
  border-top: 1px solid #0f172a;
  color: #64748b;
  font-size: 0.82rem;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btt-btn {
  border-radius: 8px;
}

.event-card:hover,
.interest-card:hover,
.svc-card:hover,
.process-step:hover,
.project-card:hover,
.port-card:hover {
  transform: none;
}

@media (max-width: 1024px) {
  .nav__cta {
    display: none;
  }
  .initiatives-bento,
  .projects-masonry,
  .impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .volunteer-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-stat:nth-child(odd) {
    border-left: 0;
  }
  .home-stat:nth-child(n+3) {
    border-top: 1px solid var(--border);
  }
}
@media (max-width: 900px) {
  .hero--editorial {
    min-height: 0;
    padding: clamp(46px, 10vw, 72px) 0 clamp(58px, 12vw, 82px);
  }
  .hero--editorial .hero__inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero--editorial::before {
    background: rgba(0, 31, 64, 0.82);
  }
  .svc-head,
  .contact-layout,
  .geology-focus__inner,
  .news-events__grid,
  .service-detail__header,
  .volunteer-hero__inner,
  .volunteer-form-layout {
    grid-template-columns: 1fr;
  }
  .service-detail__facts,
  .services-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-detail__cta {
    grid-template-columns: 1fr;
  }
  .news-events__head,
  .footer--template .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer--template .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .geology-focus__panel,
  .geology-focus__panel:first-child {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
  .geology-focus__panel:first-child {
    border-top: 0;
  }
}
@media (max-width: 768px) {
  .nav > .lang-switcher {
    display: none;
  }
  .nav__links {
    top: calc(var(--ann-bar-h, 0px) + var(--header-h, var(--nav-h)) + 8px);
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    align-items: stretch;
    max-height: calc(100svh - var(--ann-bar-h, 0px) - var(--header-h, var(--nav-h)) - 16px);
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 8px;
    background: var(--surface);
    box-shadow: none;
    transform: none;
    transition: opacity 0.18s ease;
  }
  .nav__links.is-open {
    transform: none;
  }
  .nav__link,
  .nav__dropdown-link {
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    white-space: normal;
  }
  .nav__mobile-lang {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
  }
  .nav__mobile-lang .lang-btn {
    justify-content: center;
    width: 100%;
  }
  .nav__toggle {
    width: 40px;
    height: 28px;
  }
  .nav__toggle span {
    left: 0;
    right: 0;
    width: 100%;
  }
  .site-header[data-transparent]:not(.scrolled) .nav__links .nav__link,
  .site-header[data-transparent]:not(.scrolled) .nav__links .nav__dropdown-link {
    color: var(--text-2);
  }
  .hero__title {
    font-size: clamp(2.45rem, 12vw, 3.25rem);
    line-height: 1.02;
  }
  .hero__intro {
    margin-bottom: 24px;
    font-size: 0.98rem;
    line-height: 1.6;
  }
  .hero__actions .btn {
    width: 100%;
  }
  .home-stats {
    margin-top: -28px;
  }
  .home-stats__grid,
  .initiatives-bento,
  .projects-masonry,
  .impact-grid,
  .volunteer-project-grid,
  .volunteer-hero__stats,
  .volunteer-choice-grid,
  .volunteer-checkboxes {
    grid-template-columns: 1fr;
  }
  .home-stat,
  .home-stat:first-child,
  .home-stat:nth-child(odd) {
    border-left: 0;
    border-top: 1px solid var(--border);
  }
  .home-stat:first-child {
    border-top: 0;
  }
  .initiatives-bento .port-card:first-child,
  .projects-masonry .project-card:first-child {
    grid-column: span 1;
  }
  .footer__links {
    grid-template-columns: 1fr;
  }
  .footer--template .footer__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .site-ann {
    position: relative;
    font-size: 0.84rem;
  }
  .site-ann__inner {
    align-items: flex-start;
    gap: 8px;
    padding: 10px 42px 12px 16px;
  }
  .site-ann__text,
  .site-ann__ctas {
    flex: 1 1 100%;
    width: 100%;
  }
  .site-ann__ctas {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .site-ann__link {
    white-space: normal;
  }
  .site-ann__close {
    position: absolute;
    top: 9px;
    right: 12px;
  }
  .section {
    padding: 54px 0;
  }
  .page-hero,
  .blog-hero,
  .gallery-header {
    padding: 48px 0;
  }
  .page-hero__title,
  .blog-hero .section__title,
  .gallery-header__title {
    font-size: clamp(2rem, 11vw, 3rem);
  }
  .service-detail-card {
    padding: 22px;
  }
  .service-detail__facts,
  .services-mini-grid,
  .check-list {
    grid-template-columns: 1fr;
  }
  .service-detail__facts div,
  .service-detail__facts div:first-child {
    border-left: 0;
    border-top: 1px solid var(--border);
  }
  .service-detail__facts div:first-child {
    border-top: 0;
  }
  .cta-banner__actions,
  .newsletter-form__fields,
  .ann-card__reg {
    flex-direction: column;
    align-items: stretch;
  }
}
