/* ==== CSS RESET & NORMALIZE ==== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;  padding: 0;  border: 0;  font-size: 100%;  font: inherit;  vertical-align: baseline;  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #120b21;
  min-height: 100vh;
  color: #E9E6F5;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;  height: auto;  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, select, textarea {
  font: inherit;
  outline: none;
  border: none;
  background: none;
}

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #E9E6F5;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem;  margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4, h5, h6 { font-weight: 600; }
p, li {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #D0CDF2;
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.7;
}
strong { color: #FFB700; font-weight: 600; }

/* ===== COLOR VARIABLES (with solid fallbacks) ===== */
:root {
  --rk-primary: #4B266E; /* Violet */
  --rk-secondary: #E9E6F5; /* Soft light purple */
  --rk-bg-dark: #120b21;
  --rk-bg-section: #1a1031;
  --rk-card: #191230;
  --rk-card-bright: #292147;
  --rk-accent: #FFB700; /* Neon Yellow/Gold */
  --rk-accent-bright: #ffe066;
  --rk-text: #E9E6F5;
  --rk-text-secondary: #B3AFC6;
  --rk-shadow: 0 6px 24px 0 rgba(96, 20, 190, 0.08);
  --rk-radius: 18px;
}

/* ===== LAYOUT CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px; 
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: var(--rk-bg-dark);
  box-shadow: 0 2px 16px 0 rgba(40,24,63,0.06);
  padding-top: 8px;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
header img {
  height: 50px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  padding: 4px 0;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--rk-secondary);
  position: relative;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover:not(.cta), .main-nav a:focus-visible:not(.cta) {
  color: var(--rk-accent);
  background: rgba(75, 38, 110, 0.1);
}
.main-nav a.cta {
  margin-left: 16px;
  background: var(--rk-accent);
  color: #120b21;
  border-radius: 22px;
  font-weight: bold;
  padding: 9px 25px;
  box-shadow: 0 2px 12px 0 rgba(255, 183, 0, 0.16);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.main-nav a.cta:hover, .main-nav a.cta:focus-visible {
  background: #ffe066; color: #25203b;
  box-shadow: 0 4px 24px 0 rgba(255, 183, 0, 0.24);
}
.mobile-menu-toggle {
  background: var(--rk-card);
  color: var(--rk-accent);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  margin-left: 12px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus-visible {
  background: var(--rk-accent);
  color: var(--rk-bg-dark);
}

@media (max-width: 996px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle { display: flex; }
}
/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,16,64,0.99);
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.7,.1,.2,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  box-sizing: border-box;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--rk-accent);
  color: var(--rk-bg-dark);
  border-radius: 50%;
  border: none;
  width: 48px; height: 48px;
  font-size: 2.2rem;
  margin: 28px 24px 0 24px;
  cursor: pointer;
  align-self: flex-end;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:focus-visible, .mobile-menu-close:hover {
  background: #fff7e0;
}
.mobile-nav {
  display: flex; flex-direction: column; gap: 26px;
  margin: 36px 24px 0 36px;
}
.mobile-nav a {
  color: var(--rk-accent);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  padding: 8px 2px;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus-visible {
  color: var(--rk-bg-dark);
  background: var(--rk-accent);
}

@media (max-width: 996px) {
  .mobile-menu { display: flex; }
}
@media (min-width: 997px) {
  .mobile-menu, .mobile-menu.open { display: none !important; }
}

/* ==== HERO SECTION ==== */
.hero {
  background: linear-gradient(135deg, #35174d 0%, #191230 100%);
  padding: 60px 0 50px 0;
  margin-bottom: 60px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  font-size: 2.8rem;
  color: var(--rk-accent);
  margin-bottom: 8px;
  text-shadow: 0 2px 15px #120b21bb, 0 0 3px var(--rk-accent);
  letter-spacing: -1px;
}
.hero p {
  font-size: 1.25rem;
  color: #E9E6F5;
  max-width: 560px;
  margin-bottom: 20px;
}
.hero .cta {
  display: inline-block;
  margin-top: 12px;
}

/* ==== CTA PRIMARY BUTTON ==== */
.cta {
  background: var(--rk-accent);
  color: #1a1031;
  border-radius: 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 10px 32px;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 18px 0 rgba(255,183,0,0.1);
  border: none;
  transition: background 0.22s, color 0.22s, box-shadow 0.2s;
  cursor: pointer;
  text-align: center;
}
.cta:hover, .cta:focus-visible {
  background: #ffe066;
  color: #35174d;
  box-shadow: 0 4px 22px 0 rgba(255, 183, 0, 0.22);
}

/* ==== SECTION SPACING (MANDATORY) ==== */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--rk-bg-section);
  border-radius: var(--rk-radius);
}
section:not(.hero):not(.footer):not(.legal) {
  box-shadow: var(--rk-shadow);
}

/* ==== CARD & FLEX CONTAINERS (MANDATORY) ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--rk-radius);
  background: var(--rk-card);
  box-shadow: var(--rk-shadow);
  padding: 28px 24px;
  transition: box-shadow 0.22s, background 0.22s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 32px 0 rgba(255,183,0,0.13), 0 2px 8px var(--rk-accent);
  background: var(--rk-card-bright);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* ==== FEATURES & GRID ==== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 18px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--rk-card);
  border-radius: var(--rk-radius);
  box-shadow: 0 2px 14px 0 rgba(75,38,110,0.09);
  padding: 32px 24px 24px 24px;
  min-width: 240px;
  max-width: 320px;
  flex: 1 1 265px;
  margin-bottom: 20px;
  position: relative;
  transition: background 0.2s, box-shadow 0.2s;
}
.feature-item img {
  width: 46px; height: 46px; margin-bottom: 10px;
  filter: drop-shadow(0 3px 16px #4B266E77) drop-shadow(0 0 6px #FFB70080);
}
.feature-item h3 {
  color: var(--rk-accent);
  font-size: 1.2rem;
}
.feature-item p {
  font-size: 1rem;
  color: var(--rk-text-secondary);
}
.feature-item:hover, .feature-item:focus-within {
  background: var(--rk-card-bright);
  box-shadow: 0 4px 24px 0 var(--rk-accent);
}

/* ==== ABOUT/LEGAL/TEAM PAGES ==== */
.about, .legal, .team, .services, .articles, .contact, .thank-you {
  background: var(--rk-bg-section);
  border-radius: var(--rk-radius);
  box-shadow: 0 2px 18px 0 rgba(96,20,190,0.07);
  margin-bottom: 60px;
  padding: 40px 20px;
}

.address-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0 0 0;
}
.address-details div {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: #E9E6F5;
  gap: 10px;
}
.address-details img {
  width: 22px;
  height: 22px;
  margin-right: 7px;
  opacity: .8;
}

/* ==== TESTIMONIALS ==== */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials h2, .testimonials h1 {
  color: var(--rk-accent);
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--rk-secondary);
  color: #251b3c;
  border-radius: 18px;
  padding: 26px 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 20px 0 rgba(255,183,0,0.05), 0 2px 12px 0 #4B266E22;
  max-width: 540px;
  width: 100%;
  transition: box-shadow 0.22s, background 0.22s;
}
.testimonial-card h3 {
  color: var(--rk-primary);
  font-size: 1.25rem;
}
.testimonial-card p {
  font-size: 1rem;
  max-width: 420px;
  color: #22113A;
  text-align: center;
}
.testimonial-card .stars {
  color: var(--rk-accent);
  font-size: 1.4rem;
  letter-spacing: 1px;
  font-family: 'Montserrat', monospace;
  margin-top: 2px;
}
.testimonial-card .client {
  color: #4B266E;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  text-align: center;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  background: #fff7e0;
  box-shadow: 0 6px 36px 0 var(--rk-accent-bright);
}

/* ===== CTA/Newsletter Section ===== */
.cta {
  margin-bottom: 22px;
}
.cta .cta {
  margin-top: 20px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--rk-bg-dark);
  border-top: 1.5px solid #251b3c;
  padding: 38px 0 22px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
}
.footer-nav, .footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: center;
}
.footer-nav a {
  color: var(--rk-accent);
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  padding: 4px 0;
  transition: color 0.18s, background 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus-visible {
  color: #fff7e0;
  background: rgba(255,183,0,0.07);
}
.footer-contact div {
  color: #B3AFC6;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-contact img {
  width: 18px; height: 18px; opacity: 0.70;
}

/* ===== BLOG/ARTICLE LIST ===== */
.articles ul, .features ul {
  margin-bottom: 14px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.articles ul li, .features ul li {
  font-size: 1rem;
  color: #E9E6F5;
  background: #292147;
  border-radius: 12px;
  padding: 9px 16px 9px 16px;
  margin-bottom: 0px;
  line-height: 1.6;
  box-shadow: 0 1px 8px #4B266E20;
  transition: background 0.15s;
}
.articles ul li strong, .features ul li strong {
  color: var(--rk-accent);
}

/* ===== LEGAL, POLICY & SMALL MODAL SECTIONS ===== */
.legal h2 {
  color: var(--rk-accent);
  margin-top: 28px; margin-bottom: 8px;
}
.legal ul {
  margin-left: 0;
  padding-left: 0;
  display: flex; flex-direction: column; gap: 11px;
}

/* ====== THANK YOU PAGE ====== */
.thank-you ul {
  margin: 18px 0 22px 0;
  display: flex; flex-direction: column; gap: 8px;
}
.thank-you a.cta {
  margin-bottom: 6px;
}

/* ===== TRANSITIONS & HOVER EFFECTS ===== */
a, .cta, .feature-item, .testimonial-card, .card {
  transition: background 0.20s, color 0.18s, box-shadow 0.19s, border 0.17s;
}

/* ===== MICRO-INTERACTIONS ===== */
.feature-item:hover img,
.feature-item:focus-within img {
  filter: drop-shadow(0 5px 24px #FFB70055) drop-shadow(0 0 12px #4B266E99);
  transform: scale(1.07);
  transition: filter 0.22s, transform 0.15s;
}

/* ===== SPACING FOR FLEX ELEMENTS (MANDATORY) ===== */
.section, section, .about, .legal, .team, .services, .articles, .contact, .thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .feature-grid, .content-grid, .footer-nav, .footer-contact {
  gap: 24px;
}
.feature-item, .card, .testimonial-card {
  margin-bottom: 20px;
}

/* ===== RESPONSIVE: MOBILE-FIRST WITH FLEXBOX ===== */
@media (max-width: 1020px) {
  .container { padding: 0 12px; }
  .content-wrapper { max-width: 95vw; }
  .footer-contact, .footer-nav { gap: 18px; }
  .hero h1 { font-size: 2.2rem; }
  section { padding: 32px 8px; }
}
@media (max-width: 768px) {
  .container { max-width: 100vw; padding: 0 6px; }
  .content-wrapper { max-width: 100vw; padding: 0; }
  .main-nav { display: none !important; }
  header .container { flex-direction: row; height: auto; padding: 0 6px; }
  .hero, .about, .legal, .team, .services, .articles, .contact, .thank-you, section {
    padding: 30px 4px;
    margin-bottom: 32px;
    border-radius: 14px;
  }
  .feature-grid, .footer-contact, .footer-nav {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .feature-item {
    min-width: 0;
    width: 100%;
    max-width: 100vw;
    padding: 22px 14px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .testimonial-card {
    max-width: 98vw;
    padding: 19px 5px;
  }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.08rem; }
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #251b3c;
  color: #E9E6F5;
  width: 100vw;
  min-height: 65px;
  box-shadow: 0 -2px 28px 0 #4B266E44, 0 0 0 1px #35174d22;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 23px 0 19px 0;
  gap: 24px;
  animation: cookieFadeIn 0.6s cubic-bezier(.3,.75,.59,1.1);
}
@keyframes cookieFadeIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
.cookie-banner__text {
  font-size: 1rem;
  color: #fff;
  margin-right: 16px;
  max-width: 410px;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
}
.cookie-banner__actions button {
  background: var(--rk-accent);
  color: #251b3c;
  font-family: 'Montserrat', sans-serif;
  border-radius: 18px;
  font-size: 1rem;
  padding: 7px 20px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 2px 6px 0 #FFB70025;
  transition: background 0.20s, color 0.20s, box-shadow 0.19s;
}
.cookie-banner__actions button:hover, .cookie-banner__actions button:focus-visible {
  background: #ffe066;
  color: #35174d;
}
.cookie-banner__actions .cookie-settings {
  background: none;
  color: var(--rk-accent);
  border: 1.5px solid var(--rk-accent);
  padding: 7px 18px;
}
.cookie-banner__actions .cookie-settings:hover, .cookie-banner__actions .cookie-settings:focus-visible {
  background: #ffe066;
  color: #251b3c;
}

/* ==== COOKIE CONSENT MODAL ==== */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(34,17,58,0.97);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
  padding: 10px;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal__popup {
  background: var(--rk-secondary);
  color: #251b3c;
  border-radius: 20px;
  width: 90vw;
  max-width: 420px;
  padding: 34px 28px 22px 28px;
  box-shadow: 0 8px 44px 0 var(--rk-accent-bright), 0 2px 14px 0 #4B266E24;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookiePopIn 0.34s cubic-bezier(.87,.08,.31,1.12);
  position: relative;
}
@keyframes cookiePopIn { from { transform: scale(0.88); } to { transform: scale(1); } }
.cookie-modal__close {
  position: absolute;
  top: 17px; right: 20px;
  background: var(--rk-accent);
  color: #251b3c;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.cookie-modal__close:focus-visible, .cookie-modal__close:hover {
  background: #fff7e0;
}
.cookie-modal__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  color: var(--rk-primary);
  margin-bottom: 8px;
  font-weight: 700;
}
.cookie-modal__desc {
  color: #22113A;
  font-size: 1rem;
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 14px;
}
.cookie-category {
  background: #edeaec;
  border-radius: 13px;
  padding: 13px 12px;
  color: #381f5d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1rem;
}
.cookie-category .toggle {
  margin-left: 10px;
}
.toggle {
  min-width: 42px; height: 24px;
  background: #d1d1db;
  border-radius: 20px;
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: background 0.16s;
}
.toggle input {
  display: none;
}
.toggle .slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 20px; height: 20px;
  background: #ffb700;
  border-radius: 50%;
  transition: left 0.22s, background 0.18s;
  box-shadow: 0 2px 6px #FFB70033;
}
.toggle input:checked + .slider {
  left: 20px; background: #4B266E;
}
.cookie-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 14px;
}
.cookie-modal__actions button {
  background: var(--rk-accent);
  color: #251b3c;
  font-family: 'Montserrat', sans-serif;
  border-radius: 18px;
  font-size: 1rem;
  padding: 7px 17px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.20s, color 0.20s;
}
.cookie-modal__actions button:hover, .cookie-modal__actions button:focus-visible {
  background: #ffe066;
  color: #35174d;
}

/* ===== GENERAL FORM ELEMENTS (IN CONTEXT) ===== */
input, textarea, select {
  background: #251b3c;
  color: var(--rk-accent);
  border-radius: 8px;
  padding: 8px 11px;
  border: 1px solid #35174d33;
  margin-top: 8px;
  width: 100%;
  font-size: 1rem;
}
input:focus, textarea:focus, select:focus {
  border: 1px solid var(--rk-accent);
  background: #292147;
  outline: none;
}

/* ===== ACCESSIBILITY AND FOCUS ===== */
a:focus-visible, button:focus-visible, .cta:focus-visible {
  outline: 2px solid var(--rk-accent);
  outline-offset: 2px;
}

/* ===== UTILITY CLASSES ===== */
.hide { display: none !important; }
.visually-hidden {
  border: 0 !important;
  clip: rect(0,0,0,0) !important;
  height: 1px !important; width: 1px !important;
  margin: -1px !important; overflow: hidden !important;
  padding: 0 !important; position: absolute !important;
}

/* ==== OVERLAP PREVENTION ==== */
* { box-sizing: border-box; }
.card, .feature-item, .testimonial-card {
  margin-bottom: 20px;
}
.card-container, .feature-grid, .content-grid, .footer-contact, .footer-nav, .text-image-section {
  gap: 20px;
}

/* No Grid, No Columns */
/* No absolute positioning for content except for modal/close btns/navigation overlays */
