/* ============================================================
   FONTS DEFINITIONS
   ============================================================ */
@font-face {
  font-family: 'MyHeadingFont';
  src: url('../fonts/heading-font.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'MyBodyFont';
  src: url('../fonts/body-font.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* ============================================================
   ALPINE HERITAGE COLOR PALETTE & RESET
   ============================================================ */
:root {
  --color-bg: #0f110e;
  --color-surface: #161a15;
  --color-surface-hover: #1f241e;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-pine: #4e654f;
  --color-amber: #c59b63;
  --color-text-main: #f2eee9;
  --color-text-muted: #a3a89e;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  background-color: #0b0d0a;
  background-image: url('../assets/background/2.jpg');
  background-size: auto;
  background-position: center top;
  background-attachment: fixed;
  color: var(--color-text-main);
  font-family: 'MyBodyFont', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .hero-title, .section-title, .crew-name, .event-name {
  font-family: 'MyHeadingFont', serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================================
   TOP NAVIGATION
   ============================================================ */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(11, 13, 10, 0.95), rgba(11, 13, 10, 0));
  backdrop-filter: blur(6px);
}

.nav-back {
  color: var(--color-text-main);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-back:hover {
  color: var(--color-amber);
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--color-text-main);
}

/* Highlight Basecamp Navigation Item (Χωρίς πλαίσιο/κουτί - Μόνο χρώμα & φωτάκι) */
.nav-links .nav-basecamp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-amber) !important;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-links .nav-basecamp:hover {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #ffd08a !important;
  text-shadow: 0 0 10px rgba(197, 155, 99, 0.6);
  transform: none;
}

/* Live Radar indicator */
.basecamp-nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #39b54a;
  box-shadow: 0 0 8px #39b54a;
  animation: nav-pulse 1.8s infinite ease-in-out;
}

@keyframes nav-pulse {
  0% { transform: scale(0.85); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; filter: drop-shadow(0 0 4px #39b54a); }
  100% { transform: scale(0.85); opacity: 0.7; }
}

.nav-links .nav-cta {
  color: var(--color-amber);
  border: 1px solid var(--color-amber);
  padding: 6px 16px;
  border-radius: 2px;
}

.nav-links .nav-cta:hover {
  background: var(--color-amber);
  color: var(--color-bg);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  overflow: hidden;
  z-index: 1;
}

.hero-content {
  transform: translateY(-45px);
}

.hero-logo {
  width: clamp(90px, 12vw, 200px);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.8));
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(60%) brightness(0.65) contrast(110%);
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(15, 17, 14, 0.2) 0%,
    rgba(15, 17, 14, 0.4) 60%,
    rgba(15, 17, 14, 0.85) 85%,
    #0f110e 100%
  );
  z-index: -1;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--color-amber);
  margin-bottom: 8px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.hero-title-sub {
  display: block;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--color-amber);
  letter-spacing: 4px;
  margin-top: -22px;
}

.hero-slogan {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 30px;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--color-amber);
  color: var(--color-bg);
  padding: 12px 32px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--color-amber);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-amber);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-text-main);
  padding: 12px 28px;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--color-text-main);
}

/* ============================================================
   UNIFIED CENTER WRAPPER
   ============================================================ */
.page-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  background-color: rgba(15, 17, 14, 0.96);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 
    -28px 0 45px rgba(0, 0, 0, 0.92), 
    28px 0 45px rgba(0, 0, 0, 0.92);
}

.section-container {
  max-width: 100%;
  margin: 0;
  padding: 50px 40px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.section-tag {
  color: var(--color-amber);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.center-header {
  text-align: center;
  margin-bottom: 35px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.split-about {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text p {
  color: var(--color-text-muted);
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.about-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 35px 30px;
}

.ethos-badge {
  color: var(--color-amber);
  font-family: 'MyHeadingFont', serif;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.about-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.about-card p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   BASECAMP GATEWAY (EXPEDITION TERMINAL BANNER)
   ============================================================ */
.basecamp-gateway-section {
  padding: 10px 40px 50px 40px;
  position: relative;
}

.gateway-card {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 44px 48px;
  background: 
    linear-gradient(135deg, rgba(19, 24, 17, 0.96) 0%, rgba(10, 13, 9, 0.98) 100%);
  border: 1px solid rgba(197, 155, 99, 0.5);
  box-shadow: 
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 24px 50px rgba(0, 0, 0, 0.85);
  border-radius: 4px;
}

.gateway-decor-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(197, 155, 99, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(197, 155, 99, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 1;
}

.gateway-content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 820px;
}

.gateway-meta-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.gateway-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #39b54a;
  box-shadow: 0 0 10px #39b54a;
  animation: radar-pulse 2s infinite ease-in-out;
}

@keyframes radar-pulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.25); opacity: 1; filter: drop-shadow(0 0 6px #39b54a); }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.gateway-tag {
  font-family: monospace;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--color-amber);
  font-weight: 700;
}

.gateway-title {
  font-family: 'MyHeadingFont', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  letter-spacing: 2px;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 14px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.gateway-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #b5bba8;
  margin-bottom: 22px;
}

.gateway-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gateway-chip {
  font-family: monospace;
  font-size: 0.76rem;
  letter-spacing: 1px;
  color: #dfd8cc;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 155, 99, 0.25);
  padding: 5px 12px;
  border-radius: 2px;
}

.gateway-chip span {
  color: var(--color-amber);
  font-weight: 700;
  margin-right: 4px;
}

.gateway-action {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.gateway-btn {
  font-size: 1rem;
  padding: 16px 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(197, 155, 99, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gateway-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(197, 155, 99, 0.55);
}

.gateway-btn-sub {
  font-family: monospace;
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: #8c9182;
}

/* ============================================================
   MEET THE CREW
   ============================================================ */
.crew-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.crew-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 0;
  text-align: center;
  overflow: hidden;
  border-radius: 4px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.crew-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-amber);
}

.crew-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 4;
  margin: 0;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  position: relative;
}

.crew-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transition: transform 0.4s ease;
}

.crew-card img[src*="vaggelis.jpg"] {
  object-position: center 38%;
}

.crew-card:hover .crew-img {
  transform: scale(1.04);
}

.crew-card .crew-name {
  font-size: 1.15rem;
  margin-top: 18px;
  margin-bottom: 14px;
  padding: 0 15px;
}

.crew-nickname {
  color: var(--color-amber);
  font-family: 'MyHeadingFont', serif;
}

.crew-bio-dossier {
  text-align: left;
  padding: 0 20px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.crew-bio-dossier p {
  font-family: 'MyBodyFont', sans-serif;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin: 0;
}

.crew-spec-label {
  font-family: 'MyHeadingFont', serif;
  color: var(--color-amber);
  font-weight: normal;
  letter-spacing: 1px;
  font-size: 0.85rem;
  display: inline-block;
  margin-right: 4px;
}

.crew-spec-label.strength-label {
  color: #2b7747;
}

.crew-spec-label.weakness-label {
  color: #ef4444;
}

/* ============================================================
   FUTURE EXPEDITIONS (COMPACT SIZING)
   ============================================================ */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.event-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.6);
  margin-bottom: 0;
}

.event-media {
  position: relative;
  flex: 0 0 280px;
  min-height: 210px;
}

.event-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88);
}

.event-date {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(11, 13, 10, 0.88);
  border: 1px solid rgba(197, 155, 99, 0.4);
  color: var(--color-amber);
  padding: 3px 8px;
  font-family: monospace;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.event-details {
  flex: 1;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
}

.event-name {
  font-size: 1.35rem;
  margin-bottom: 6px;
  line-height: 1.2;
}

.event-desc {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.45;
  margin-bottom: 12px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 8px 12px;
  background: rgba(10, 13, 9, 0.6);
  border: 1px solid var(--color-border);
  margin-bottom: 12px;
}

.spec-label {
  display: block;
  font-family: monospace;
  font-size: 0.68rem;
  color: #7b8175;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.spec-val {
  font-family: monospace;
  font-size: 0.88rem;
  font-weight: 700;
  color: #e6dfd5;
}

.highlight-diff {
  color: var(--color-amber);
}

.gear-toggle {
  background: none;
  border: none;
  color: var(--color-amber);
  text-align: left;
  font-family: monospace;
  font-size: 0.78rem;
  letter-spacing: 1px;
  cursor: pointer;
  margin-bottom: 8px;
  padding: 0;
  font-weight: normal;
}

.gear-content {
  display: none;
  background: rgba(0, 0, 0, 0.25);
  padding: 12px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: #8c9383;
  line-height: 1.4;
}

.gear-content.open {
  display: block;
}

.gear-content ul {
  padding-left: 18px;
}

.event-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.event-actions .btn-primary,
.event-actions .btn-secondary {
  padding: 8px 18px;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
}

/* ============================================================
   FIELD LOG PORTAL CARD (PINBOARD TEASER TO FIELD-LOG.HTML)
   ============================================================ */
.field-portal-card {
  display: block;
  text-decoration: none;
  position: relative;
  background: #151914;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 60px 40px 50px 40px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.field-portal-card:hover {
  border-color: var(--color-amber);
  transform: translateY(-4px);
}

.portal-tape-badge {
  position: absolute;
  top: 18px;
  left: 25px;
  font-family: monospace;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--color-amber);
  background: rgba(197, 155, 99, 0.1);
  border: 1px dashed rgba(197, 155, 99, 0.5);
  padding: 4px 10px;
  z-index: 2;
}

.portal-photos-cluster {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 15px;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.portal-photo {
  background: #ece8df;
  padding: 8px 8px 18px 8px;
  border-radius: 2px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.8);
  transition: transform 0.4s ease;
}

.portal-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.portal-photo-label {
  display: block;
  font-family: monospace;
  font-size: 0.65rem;
  color: #2b2b2b;
  margin-top: 8px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}

.portal-photo.photo-1 { transform: rotate(-3deg); }
.portal-photo.photo-2 { transform: rotate(2deg) translateY(-8px); }
.portal-photo.photo-3 { transform: rotate(-2deg); }

/* Hover Overlay */
.portal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 13, 10, 0.78);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 3;
}

.field-portal-card:hover .portal-overlay {
  opacity: 1;
}

.field-portal-card:hover .portal-photos-cluster {
  filter: blur(2px) brightness(0.7);
  transform: scale(0.98);
}

.portal-overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transform: translateY(15px);
  transition: transform 0.35s ease;
}

.field-portal-card:hover .portal-overlay-content {
  transform: translateY(0);
}

.portal-counter {
  font-family: monospace;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--color-amber);
}

.portal-cta-title {
  font-size: 1.8rem;
  color: var(--color-text-main);
  letter-spacing: 2px;
}

.portal-btn {
  display: inline-block;
  background: var(--color-amber);
  color: var(--color-bg);
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
  border-radius: 2px;
}

/* ============================================================
   CONTACT BOX & REGISTRATION
   ============================================================ */
.contact-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 50px 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-form {
  margin-top: 30px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.form-field.full-width {
  margin-bottom: 25px;
}

.form-field label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--color-text-muted);
}

.form-field input, .form-field select, .form-field textarea {
  background: #0b0d0a;
  border: 1px solid var(--color-border);
  color: var(--color-text-main);
  padding: 12px;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  width: 100%;
}

.form-field select {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--color-amber);
}

/* Footer */
.footer {
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid var(--color-border);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS (SMARTPHONES & TABLETS)
   ============================================================ */
@media (max-width: 900px) {
  .gateway-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    gap: 24px;
  }

  .gateway-action {
    align-items: flex-start;
    width: 100%;
  }

  .gateway-btn {
    width: 100%;
    text-align: center;
  }

  .event-card {
    flex-direction: column;
  }

  .event-media {
    flex: 0 0 160px;
    min-height: 160px;
  }

  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  .top-nav {
    padding: 12px 16px;
    flex-direction: column;
    gap: 10px;
    background: rgba(11, 13, 10, 0.95);
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
  }

  .nav-links a {
    font-size: 0.72rem;
  }

  .hero-section {
    min-height: 100svh;
    padding: 90px 16px 40px;
  }

  .hero-logo {
    width: 60px !important;
    margin-bottom: 10px;
  }

  .hero-title {
    font-size: 2rem !important;
    line-height: 1.1;
  }

  .hero-title-sub {
    font-size: 1.25rem !important;
    letter-spacing: 2px;
    margin-top: 0;
  }

  .page-content-wrapper {
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
  }

  .section-container {
    padding: 50px 16px;
  }

  .split-about {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .crew-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .event-details {
    padding: 24px 16px;
  }

  .event-actions {
    flex-direction: column;
  }

  .field-portal-card {
    padding: 40px 16px 30px 16px;
  }

  .portal-photos-cluster {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .portal-photo.photo-1,
  .portal-photo.photo-2,
  .portal-photo.photo-3 {
    transform: none;
  }

  .portal-overlay {
    opacity: 0.95;
    background: rgba(11, 13, 10, 0.88);
  }

  .portal-overlay-content {
    transform: none;
  }

  .portal-cta-title {
    font-size: 1.3rem;
  }

  .contact-box {
    padding: 30px 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}