@import url('https://fonts.googleapis.com/css2?family=Reddit+Sans:wght@400;500;600;700&display=swap');

/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --black:     #000000;
  --white:     #ffffff;
  --fiord:     #43596a;
  --nobel:     #b4b4b4;
  --dove:      #707070;
  --sage:      #aeceb3;
  --sage-tint: rgba(173,207,179,0.30);
  --sage-tint2: rgba(181,179,170,0.18);
  --dark:      #191816;
  --hetch-dark: #1a1a1a;
  --hero-overlay: rgba(61,70,63,0.40);

  --ff: "Reddit Sans", Helvetica, sans-serif;

  --fs-nav:    16px;
  --fs-body:   20px;
  --fs-small:  16px;
  --fs-card:   20px;
  --fs-l:      20px;
  --fs-title:  26px;
  --fs-contact: 35px;
  --fs-xl:     40px;
  --fs-xxl:    60px;
  --fs-hero:   80px;
  --fs-page-title: 80px;

  --frame:     60px;
  --pad-h:     100px;
}

/* ─── BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
p, h1, h2, h3, ul, li { margin: 0; padding: 0; }
ul { list-style: none; }

.inner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding-left: var(--pad-h);
  padding-right: var(--pad-h);
}

/* ══════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  height: 140px;
  display: flex;
  align-items: center;
}
.nav-inner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 var(--frame);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  height: 60px;
  position: relative;
  width: 400px;
  flex-shrink: 0;
}
.nav-logo img { height: 100%; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: var(--fs-nav);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--black);
  white-space: nowrap;
}
.nav-links a.active { border-bottom: 2px solid var(--black); padding-bottom: 4px; }

.nav-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-social img { height: 28px; width: auto; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--black);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--white);
  padding: 80px 32px 32px;
  z-index: 99;
  flex-direction: column;
  gap: 0;
  border-bottom: 2px solid rgba(0,0,0,0.08);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  color: var(--black);
}
.nav-drawer a:last-child { border-bottom: none; }

/* ══════════════════════════════════════════════════════
   HERO — big (index)
══════════════════════════════════════════════════════ */
.hero-frame { padding: 0 var(--frame); background: var(--white); }
.hero-spacer { height: 80px; background: var(--white); }
.hero-wrap { position: relative; width: 100%; height: 850px; overflow: hidden; }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: var(--hero-overlay); }
.hero-content { position: absolute; top: 40%; left: 0; right: 0; padding: 0 var(--pad-h); }
.hero-title {
  font-size: var(--fs-hero);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 1115px;
  text-align: center;
  margin: 0 auto;
}
.hero-line { display: block; width: 263px; height: 6px; margin: 30px auto 0; object-fit: cover; }

/* ══════════════════════════════════════════════════════
   PAGE HERO — small (subpages)
══════════════════════════════════════════════════════ */
.page-hero-wrap { position: relative; width: 100%; height: 360px; overflow: hidden; }
.page-hero-content { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.page-hero-title {
  font-size: var(--fs-page-title);
  font-weight: 600;
  color: var(--white);
  text-align: center;
}
.page-hero-line { display: block; width: 160px; height: 5px; margin: 18px auto 0; object-fit: cover; }

/* ══════════════════════════════════════════════════════
   INTRO
══════════════════════════════════════════════════════ */
.intro { padding: 70px var(--pad-h) 80px; text-align: center; }
.intro-text { font-size: var(--fs-title); line-height: 1.55; max-width: 889px; margin: 0 auto 60px; }
.intro-text.narrow { max-width: 1000px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid currentColor;
  padding: 0 40px;
  height: 60px;
  font-family: var(--ff);
  font-size: var(--fs-body);
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  background: transparent;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.btn:hover { background: #a6d1af; }
.btn-black { color: var(--black); border-color: var(--black); }
.btn-white { color: var(--white); border-color: var(--white); }
.btn-sm { height: 50px; padding: 0 28px; font-size: var(--fs-small); }

/* ══════════════════════════════════════════════════════
   CARDS (4-up)
══════════════════════════════════════════════════════ */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); }
.card { background: var(--fiord); padding: 60px 60px 44px 60px; }
.card + .card { border-left: 1px solid rgba(255,255,255,0.12); }
.card-title { font-size: var(--fs-xl); font-weight: 600; color: var(--white); margin-bottom: 20px; }
.card-line { display: block; width: 160px; height: 4px; margin-bottom: 20px; object-fit: cover; }
.card-body { font-size: var(--fs-card); font-weight: 400; color: rgba(255,255,255,0.85); line-height: 1.6; }

/* ══════════════════════════════════════════════════════
   SECTION LABEL + UNDERLINE
══════════════════════════════════════════════════════ */
.section-label { font-size: var(--fs-nav); font-weight: 400; letter-spacing: 0.02em; margin-bottom: 30px; }
.section-line { display: block; height: 6px; object-fit: cover; }
.section-line.sm { width: 210px; height: 5px; margin-bottom: 30px; }

/* ══════════════════════════════════════════════════════
   TWO-COL SPLIT (coworking / inkubator style)
══════════════════════════════════════════════════════ */
.split {
  padding: 100px var(--pad-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.start { align-items: start; }
.split.tint { background: var(--sage-tint); }
.split h2 { font-size: var(--fs-xxl); font-weight: 600; line-height: 1.14; margin-bottom: 30px; }
.split-body { font-size: var(--fs-body); line-height: 1.55; margin-bottom: 40px; }
.split-photo { width: 100%; height: 800px; object-fit: cover; object-position: center; }
.split-photo.contain { object-fit: contain; height: 700px; }

/* ══════════════════════════════════════════════════════
   PARTNER BANNER (dark split w/ photo)
══════════════════════════════════════════════════════ */
.partner-banner { background: var(--fiord); display: grid; grid-template-columns: 1fr 1fr; }
.partner-banner-text { padding: 100px var(--pad-h); }
.partner-banner h2 { font-size: var(--fs-xxl); font-weight: 600; color: var(--white); line-height: 1.14; margin-bottom: 30px; }
.partner-banner-body { font-size: var(--fs-body); color: rgba(255,255,255,0.9); line-height: 1.55; margin-bottom: 6px; }
.partner-sublabel { font-size: var(--fs-body); font-weight: 700; color: var(--white); margin-top: 20px; margin-bottom: 4px; }
.partner-list li { font-size: var(--fs-body); color: rgba(255,255,255,0.9); line-height: 1.55; }
.partner-banner-photo-col { position: relative; overflow: hidden; min-height: 480px; }
.partner-banner-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.partner-banner .btn-white { margin-top: 50px; }

/* ══════════════════════════════════════════════════════
   NEWSLETTER STRIP
══════════════════════════════════════════════════════ */
.newsletter {
  background: var(--fiord);
  padding: 60px var(--pad-h);
  text-align: center;
}
.newsletter-title { font-size: var(--fs-xl); font-weight: 600; line-height: 1.5;color: var(--white); margin-bottom: 20px; }
.newsletter-body { font-size: var(--fs-body); font-weight: 600; line-height: 1.5;color: var(--white); margin-bottom: 40px; }

/* ══════════════════════════════════════════════════════
   VISION / QUOTE BANNER
══════════════════════════════════════════════════════ */
.vision { background: var(--sage); padding: 100px var(--pad-h) 120px; text-align: center; }
.vision-label { font-size: var(--fs-l); font-weight: 400; color: var(--white); margin-bottom: 20px; }
.vision-text { font-size: var(--fs-xxl); font-weight: 700; color: var(--white); line-height: 1.14; letter-spacing: -0.01em; max-width: 1000px; margin: 0 auto; }

.quote-banner { background: var(--sage); padding: 90px var(--pad-h); text-align: center; }
.quote-text { font-size: var(--fs-xl); font-weight: 700; color: var(--white); line-height: 1.3; max-width: 800px; margin: 0 auto 24px; }
.quote-author { font-size: var(--fs-body); color: var(--white); font-weight: 500; }

/* ══════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════ */
.contact { background: var(--sage-tint2); padding: 100px var(--pad-h); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact h2 { font-size: var(--fs-xl); font-weight: 600; line-height: 1.07; letter-spacing: -0.02em; margin-bottom: 30px; }
.contact-intro { font-size: var(--fs-body); line-height: 1.55; margin-bottom: 40px; }
.contact-person { gap: 24px; }
.contact-photo { width: 400px; height: 400px; object-fit: cover; flex-shrink: 0; margin-bottom: 20px; }
.contact-name { font-size: var(--fs-body); font-weight: 600; line-height: 1.55; }
.contact-role { font-size: var(--fs-small); font-weight: 400; line-height: 1.55; }
.contact-xl  { font-size: var(--fs-contact); font-weight: 700; line-height: 1.2; margin-bottom: 8px; }
.contact-xl a { color: inherit; text-decoration: none; }

.form-head { font-size: var(--fs-small); font-weight: 400; margin-bottom: 18px; }
.form-group { margin-bottom: 12px; }
.form-label { display: block; font-size: var(--fs-body); font-weight: 400; margin-bottom: 4px; }
.form-control {
  display: block; width: 100%; height: 40px;
  border: 1px solid var(--dove); background: var(--white);
  padding: 0 14px; font-family: var(--ff); font-size: var(--fs-small);
  color: var(--black); outline: none; appearance: none; -webkit-appearance: none;
  border-radius: 0;
}
.form-control:focus { border-color: #111; box-shadow: 0 0 0 3px rgba(0,0,0,.07); }
.form-control::placeholder { color: #aaa; }
.form-textarea { height: 160px; padding: 12px 14px; resize: vertical; }
.form-select-wrap { position: relative; }
.form-select-wrap::after { content: '<'; position: absolute; right: 16px; top: 50%; transform: translateY(-50%) rotate(-90deg); color: var(--nobel); font-size: 16px; pointer-events: none; }
select.form-control { cursor: pointer; }
.btn-submit { margin-top: 12px; width: 200px; max-width: 100%; }
.form-feedback { display: none; padding: .8rem 1rem; border-radius: 7px; font-size: .88rem; font-weight: 600; margin-top: 1rem; }
.form-feedback.success { display: block; background: #e6f9ed; color: #1a7a3c; border: 1px solid #9fe0b4; }
.form-feedback.error { display: block; background: #fff0f0; color: #c0392b; border: 1px solid #f5b7b1; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer { background: var(--dark); padding: 80px var(--pad-h) 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.footer-logo { display: flex; align-items: center; height: 60px; position: relative; width: 400px; margin-bottom: 20px; }
.footer-logo img { height: 100%; width: auto; }
.footer-tagline { font-size: var(--fs-body); font-weight: 500; color: rgba(255,255,255,0.85); line-height: 1.55; max-width: 556px; }
.footer-right { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; }
.footer-address { font-size: var(--fs-body); font-weight: 500; color: rgba(255,255,255,0.85); line-height: 1.55; }
.footer-address strong { font-weight: 600; color: var(--white); }
.footer-social { display: flex; gap: 14px; align-items: center; flex-shrink: 0; }
.footer-social img { height: 28px; width: auto; }

/* ══════════════════════════════════════════════════════
   "NYFIKEN" CTA BLOCK (recurring on every page)
══════════════════════════════════════════════════════ */
.cta-block { background: var(--sage-tint2); padding: 100px var(--pad-h); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cta-block h2 { font-size: var(--fs-xxl); font-weight: 600; line-height: 1.2; margin-bottom: 30px; }
.cta-block-line { display: block; width: 210px; height: 5px; margin-bottom: 30px; object-fit: cover; }
.cta-block-body { font-size: var(--fs-body); line-height: 1.55; margin-bottom: 10px; }
.cta-block-name { font-size: var(--fs-body); font-weight: 600; margin-top: 14px; }
.cta-block-role { font-size: var(--fs-small); line-height: 1.55; margin-top: 10px; margin-bottom: 30px; }
.cta-block-photo-wrap { display: flex; justify-content: flex-end; }
.cta-block-photo { width: 400px; height: 400px; object-fit: cover; }

/* ══════════════════════════════════════════════════════
   LOGO GRID (partners / companies)
══════════════════════════════════════════════════════ */
.logo-grid-section { padding: 100px var(--pad-h); text-align: center; }
.logo-grid-section h2 { font-size: var(--fs-xl); font-weight: 600; margin-bottom: 30px; }
.logo-grid-line { display: block; width: 210px; height: 5px; margin: 0 auto 100px; object-fit: cover; }
.logo-grid { display: flex; flex-wrap: wrap; gap: 120px; align-items: center; justify-content: center; }
.logo-grid img { height: auto; max-width: 200px; background-color: white;}
.logo-placeholder {
  width: 100%; height: 80px; display: flex; align-items: center; justify-content: center;
  border: 1px dashed var(--nobel); color: var(--dove); font-size: 13px; text-align: center;
}

/* ══════════════════════════════════════════════════════
   PRICING CARDS (coworking)
══════════════════════════════════════════════════════ */
.pricing-intro { text-align: center; padding: 100px var(--pad-h) 60px; }
.pricing-intro h2 { font-size: var(--fs-xl); font-weight: 600; margin-bottom: 0; }
.pricing-grid { padding: 0 var(--pad-h) 60px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.price-card { border: 1px solid rgba(0,0,0,0.12); display: flex; flex-direction: column; transition: transform 0.2s ease; }
.price-card:hover { transform: scale(1.05); }
.price-card:not(.dark):hover { background: var(--sage-tint2); }
.price-card.dark { background: var(--dark); color: var(--white); }
.price-card-photo { width: 100%; height: 250px; object-fit: cover; }
.price-card-body { padding: 30px; flex: 1; display: flex; flex-direction: column; }
.price-card-body p { font-size: var(--fs-small); line-height: 1.8; margin-bottom: 16px; }
.price-card h3 { font-size: var(--fs-xl); font-weight: 600; margin-bottom: 14px; }
.price-card ul { margin-bottom: 16px; }
.price-card li { font-size: var(--fs-small); line-height: 1.7; opacity: 0.85; }
.price-card.dark ul { padding-left: 1.2em; }
.price-card.dark li { list-style: disc; }
.price-card .price { font-size: var(--fs-l); font-weight: 700; margin: 10px 0 20px; }
.price-card .price-room { font-size: var(--fs-l); font-weight: 700; margin: 5px 0 5px; }
.price-card .btn { align-self: flex-start; }

.daypass-band { background: var(--sage-tint); padding: 60px var(--pad-h); text-align: center; }
.daypass-band h3 { font-size: var(--fs-xl); font-weight: 600; margin-bottom: 16px; }
.daypass-band p { font-size: var(--fs-small); line-height: 1.6; max-width: 700px; margin: 0 auto 16px; }
.daypass-band .price { font-size: var(--fs-l); font-weight: 700; margin-bottom: 20px; }

.hours-note { font-size: var(--fs-small); line-height: 1.7; }

/* ══════════════════════════════════════════════════════
   HETCH BANNER
══════════════════════════════════════════════════════ */
.hetch-banner { display: grid; grid-template-columns: 1fr 1fr; }
.hetch-logo-col { background: var(--hetch-dark); display: flex; align-items: center; justify-content: center; padding: 60px; }
.hetch-logo-col img { max-width: 260px; }
.hetch-text-col { background: #dfe3e6; padding: 80px var(--pad-h); }
.hetch-text-col h3 { font-size: var(--fs-xl); font-weight: 600; margin-bottom: 20px; line-height: 1.3;}
.hetch-text-col p { font-size: var(--fs-body); line-height: 1.6; margin-bottom: 30px; }

/* ══════════════════════════════════════════════════════
   PROGRAM SPLIT (inkubator startup space / inkubator)
══════════════════════════════════════════════════════ */
.programs { padding: 0 var(--pad-h) 80px; }
.programs-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 50px; }
.programs-photos img { width: 100%; height: 320px; object-fit: cover; }
.program-title-box {
  width: 100%;
  height: 240px;
  background: var(--sage);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 30px;
  font-size: var(--fs-xxl);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
}
.price-card .program-title-box { margin-bottom: 0; }
.program-title-main {
  display: block;
  font-size: var(--fs-xxl);
  font-weight: 700;
}
.program-title-sub {
  display: block;
  font-size: var(--fs-body);
  font-weight: 400;
  color: rgba(255,255,255,0.85);
}
.program-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.program-grid .btn { margin-top: auto; margin-block-start: 20px; }

/* ══════════════════════════════════════════════════════
   MAP / FIND US (kontakt)
══════════════════════════════════════════════════════ */
.find-us { padding: 0 var(--pad-h) 100px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.find-us-map { width: 100%; height: 420px; object-fit: cover; border: 0; }
.find-us h2 { font-size: var(--fs-xl); font-weight: 600; margin-bottom: 20px; }
.find-us-line { display: block; width: 210px; height: 5px; margin-bottom: 24px; object-fit: cover; }
.find-us p { font-size: var(--fs-body); line-height: 1.6; margin-bottom: 18px; }
.find-us strong { font-weight: 700; }

/* ══════════════════════════════════════════════════════
   PAGE-INTRO (subpage lede paragraph)
══════════════════════════════════════════════════════ */
.page-lede { padding: 60px var(--pad-h) 80px; text-align: center; }
.page-lede p { font-size: var(--fs-title); line-height: 1.55; max-width: 1000px; margin: 0 auto; }

/* ══════════════════════════════════════════════════════
   TABLET ≤ 1200px
══════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  :root {
    --pad-h: 60px;
    --fs-hero: 60px;
    --fs-xxl:  52px;
    --fs-body: 16px;
    --fs-card: 16px;
    --fs-xl:   32px;
	--fs-contact: 30px;
    --fs-title: 20px;
    --fs-page-title: 36px;
  }
  .site-nav { height: 100px; }
  .nav-logo { width: 300px; height: 45px; }
  .hero-wrap { height: 800px; }
  .split-photo { height: 400px; }
  .partner-banner-photo-col { min-height: 360px; }
  .contact-photo { width: 160px; height: 160px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════
   TABLET ≤ 1000px — collapse side-by-sides
══════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
  .hero-spacer { height: 32px; }
  :root {
    --pad-h: 32px;
    --frame: 24px;
    --fs-hero: 42px;
    --fs-xxl: 38px;
    --fs-body: 14px;
    --fs-xl: 26px;
	--fs-contact: 26px;
    --fs-nav: 16px;
    --fs-small: 14px;
    --fs-l: 22px;
    --fs-page-title: 28px;
  }
  .site-nav { height: 72px; }
  .nav-links, .nav-social { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo { width: 200px; height: 30px; }
  .nav-inner { padding: 0 24px; }

  .hero-wrap { height: 56vw; min-height: 500px; max-height: 500px; }
  .hero-content { padding: 0 var(--pad-h); bottom: 36px; }
  .page-hero-wrap { height: 240px; }

  .intro, .page-lede { padding: 60px var(--pad-h); text-align: left; }
  .intro-text, .page-lede p { max-width: none; margin-bottom: 32px; text-align: left; }
  .btn { height: 56px; padding: 0 24px; }

  .cards { grid-template-columns: 1fr 1fr; }
  .card + .card { border-left: none; }
  .card { padding: 32px 24px; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .cards .card:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }
  .cards .card:nth-child(3), .cards .card:nth-child(4) { border-bottom: none; }
  .card-line { width: 100px; margin-bottom: 14px; }

  .split, .split.start { grid-template-columns: 1fr; gap: 36px; padding: 60px var(--pad-h); }
  .split-photo { height: auto; max-height: 320px; }

  .partner-banner { grid-template-columns: 1fr; }
  .partner-banner-text { padding: 60px var(--pad-h); }
  .partner-banner-photo-col { min-height: 280px; }

  .cta-block { grid-template-columns: 1fr; gap: 36px; padding: 60px var(--pad-h); }
  .cta-block-photo-wrap { justify-content: flex-start; }

  .contact { grid-template-columns: 1fr; gap: 48px; padding: 60px var(--pad-h); }
  .btn-submit { width: 100%; }

  .footer { grid-template-columns: 1fr; gap: 40px; padding: 60px var(--pad-h) 48px; }
  .footer-right { flex-direction: column; gap: 24px; }
  .footer-logo { width: 200px; height: 30px; }

  .logo-grid { gap: 24px; }
  .pricing-grid { grid-template-columns: 1fr; padding: 0 var(--pad-h) 40px; }
  .programs-photos { grid-template-columns: 1fr; }
  .program-grid { grid-template-columns: 1fr; gap: 40px; }
  .program-title-box { height: auto; aspect-ratio: 2 / 1; }
  .hetch-banner { grid-template-columns: 1fr; }
  .find-us { grid-template-columns: 1fr; gap: 40px; padding: 0 var(--pad-h) 60px; }
}

/* ══════════════════════════════════════════════════════
   MOBILE ≤ 480px
══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-spacer { height: 20px; }
  :root {
    --pad-h: 20px;
    --frame: 14px;
    --fs-hero: 30px;
    --fs-xxl: 30px;
    --fs-body: 18px;
    --fs-title: 18px;
    --fs-xl: 26px;
    --fs-contact: 22px;
    --fs-nav: 15px;
    --fs-small: 15px;
    --fs-page-title: 24px;
  }
  .hero-wrap { min-height: 500px; }
  .hero-line { width: 140px; }
  .cards { grid-template-columns: 1fr; }
  .card { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.12) !important; }
  .cards .card:last-child { border-bottom: none !important; }
  .section-line.sm, .cta-block-line, .find-us-line { width: 160px; }
  .footer-social img { height: 30px; }
}
