:root {
  --bg-color: #000000;
  --text-color: #e0e0e0;
  --text-muted: #a0a0a0;
  --accent-color: #ffffff; 
  --font-heading: "Inter", "Roboto", system-ui, sans-serif;
  --font-body: "Inter", "Roboto", system-ui, sans-serif;
  --radius-lg: 24px;
  --radius-sm: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Base Ambient Lighting (GPU Accelerated to fix backdrop-filter bubbles) */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}

/* SPA Reveal Animations */
.page-section {
  display: none;
  position: relative; 
  z-index: 10;
}

.page-section.active {
  display: block;
  opacity: 1;
}

.page-section.active > * {
  position: relative;
  animation: safeSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-section.active::before {
  content: "";
  position: absolute;
  inset: -50px 0 -50px 0; 
  background-color: var(--bg-color); 
  z-index: 9999;
  pointer-events: none; 
  animation: fadeCurtain 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeCurtain {
  0% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

@keyframes safeSlideUp {
  0% { top: 25px; }
  100% { top: 0; }
}

@keyframes smoothReveal {
  0% { opacity: 0; top: 25px; }
  100% { opacity: 1; top: 0; }
}

#void-background,
.gallery-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100svh;
}

#void-background {
  z-index: -1;
  background-color: var(--bg-color);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--accent-color);
  font-weight: 600;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  text-align: center;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  background: linear-gradient(to bottom, #ffffff, #a1a1aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.1));
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-inline: auto;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-top: 1rem;
  line-height: 1.6;
}

/* Premium Header & Navigation */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 0 1rem;
  position: relative;
  z-index: 10000;
}

.header-top {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--accent-color);
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
}

.logo-container {
  margin-bottom: 2.5rem;
}

.logo, .footerlogo {
  max-width: 400px;
  width: 100%;
  height: auto;
  filter: grayscale(100%) contrast(120%);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.footerlogo { max-width: 250px; }

/* Structural Liquid Glass Elements */
.card, 
.form-container, 
.policy-block, 
.testimonial,
.gallery-item {
  background: rgba(25, 25, 25, var(--glass-opacity, 0.1)) !important; 
  backdrop-filter: blur(var(--glass-blur, 10px)) saturate(200%) !important; 
  -webkit-backdrop-filter: blur(var(--glass-blur, 10px)) saturate(200%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: var(--border-highlight-top, 1px solid rgba(255, 255, 255, 0.25)) !important; 
  border-left: var(--border-highlight-left, 1px solid rgba(255, 255, 255, 0.15)) !important;
  border-radius: var(--radius-lg);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.5), 
    inset 0 1px 2px rgba(255, 255, 255, 0.15);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

/* Header Navbar */
nav#main-nav {
  transition: all 0.3s ease;
}

nav ul, footer {
  list-style: none; display: flex; gap: 3rem; flex-wrap: wrap; justify-content: center;
  padding: 12px 32px; border-radius: 100px; 
  background: rgba(10, 10, 10, var(--glass-opacity, 0.1)) !important; 
  backdrop-filter: blur(var(--glass-blur, 10px)) saturate(200%) !important;
  -webkit-backdrop-filter: blur(var(--glass-blur, 10px)) saturate(200%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: var(--border-highlight-top, 1px solid rgba(255, 255, 255, 0.15)) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

nav a {
  color: var(--text-muted); text-decoration: none; font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 1.5px; font-weight: 500; position: relative; display: inline-block;
  transition: color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 50%; width: 4px; height: 4px;
  background: var(--accent-color); border-radius: 50%; transform: translateX(-50%) scale(0);
  transition: transform 0.3s ease;
  box-shadow: 0 0 8px var(--accent-color);
}

nav a.active { 
  color: var(--accent-color); 
  text-shadow: 0 0 10px color-mix(in srgb, var(--accent-color) 50%, transparent); 
  transform: translateY(-2px);
}
nav a.active::after { transform: translateX(-50%) scale(1); }

main {
  max-width: 1200px; margin: 0 auto; padding: 2rem 2rem 8rem; min-height: 70vh; position: relative; z-index: 10;
}

.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center; 
  padding: 2rem 1rem; /* Updated for even top and bottom spacing */
  min-height: 60vh; /* Allows flexbox to truly center the content vertically */
  margin-bottom: 2rem;
}

.typewriter-container {
  min-height: 80px; margin: 0 auto 3rem auto; max-width: 700px;
}

.hero-subtitle {
  font-size: 1.25rem; color: var(--text-muted); line-height: 1.7; font-weight: 300;
}

.cursor {
  display: inline-block; width: 6px; height: 1.2rem; background-color: var(--accent-color);
  animation: blink 1s infinite; margin-left: 4px; vertical-align: middle;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* Grid Layouts */
.bento-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 4rem;
}

.bento-grid .card {
  padding: 3.5rem 2.5rem; display: flex; flex-direction: column;
}

.bento-grid .span-3 {
  grid-column: 1 / -1; text-align: center; padding: 5rem 3rem;
}

.split-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
}

.split-grid .card {
  padding: 3.5rem 3rem; 
}
.split-grid .card p, .bento-grid .card p {
  color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; margin-top: auto;
}

/* Buttons */
.btn {
  display: inline-block; background: transparent; color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 40%, transparent); padding: 14px 32px;
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px;
  text-decoration: none; border-radius: 100px; cursor: pointer; text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:active {
  transform: translateY(0) scale(0.96); 
}

.pulse-btn {
  background: var(--accent-color); color: var(--bg-color); border: none; font-weight: bold;
}
.full-width { width: 100%; }
.btn-small { padding: 10px 24px; font-size: 0.75rem; }

/* Forms */
.form-container {
  max-width: 650px; margin: 0 auto; padding: 4rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block; margin-bottom: 0.8rem; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 16px 20px; background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1); color: var(--text-color);
  font-family: var(--font-body); outline: none; border-radius: var(--radius-sm);
  font-size: 1rem; box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.7);
  border-color: var(--accent-color);
  box-shadow: 
    0 10px 20px rgba(0,0,0,0.5), 
    0 0 0 1px var(--accent-color),
    0 0 20px color-mix(in srgb, var(--accent-color) 25%, transparent);
}

/* Gallery Restyling */
.store-categories {
  display: flex; justify-content: center; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap;
}

.category-btn.active {
  background: var(--accent-color); color: var(--bg-color); border-color: var(--accent-color);
}

.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem;
}

.gallery-item {
  position: relative;
  height: 300px;
  display: flex; 
  flex-direction: column; 
  justify-content: flex-end;
  border-radius: var(--radius-sm); 
  overflow: hidden; 
  cursor: pointer;
  content-visibility: auto; 
  contain-intrinsic-size: 300px; 
  transform: translateZ(0); 
}

.gallery-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.gallery-caption {
  position: relative;
  z-index: 2;
  margin-top: auto;
  width: 100%;
  padding: 30px 15px 15px;
  text-align: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  pointer-events: none;
}

.photo-count {
  display: block;
  font-size: 0.8rem;
  color: #aaa;
  margin-top: 4px;
}

.gallery-modal {
  background: rgba(0, 0, 0, 0.95); backdrop-filter: blur(10px); z-index: 20000;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease; padding: 2rem;
}

.gallery-modal.open { opacity: 1; pointer-events: auto; }

.gallery-modal img#modal-image {
  max-width: 90%; max-height: 75vh; object-fit: contain; border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8); transform: scale(0.95); transition: transform 0.3s cubic-bezier(0.2, 0, 0.2, 1);
  cursor: zoom-in;
}

.gallery-modal img#modal-image.zoomed {
  transform: scale(2.2) !important;
  cursor: zoom-out;
}

.gallery-modal.open img#modal-image:not(.zoomed) { transform: scale(1); }

.gallery-modal-close {
  position: absolute; top: 30px; right: 40px; color: #fff; font-size: 3rem;
  line-height: 1; cursor: pointer; transition: transform 0.3s; z-index: 20001;
}

.modal-thumbnails { display: flex; gap: 10px; margin-top: 20px; max-width: 90%; overflow-x: auto; z-index: 20001; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.modal-thumbnails::-webkit-scrollbar { display: none; }

.modal-thumb {
  width: 60px; height: 60px; object-fit: cover; cursor: pointer; border-radius: 8px;
  border: 1px solid transparent; opacity: 0.5; transition: all 0.3s ease;
}
.modal-thumb.active { border-color: var(--accent-color); opacity: 1; transform: translateY(-2px); }
.gallery-modal-caption { margin-top: 1.5rem; font-size: 1.1rem; color: #fff; letter-spacing: 0.5px; z-index: 20001;}

/* Improved Readable Testimonials & Policies */
.testimonial-container, .policy-block { max-width: 800px; margin: 0 auto; }

.testimonial {
  padding: 3.5rem; margin-bottom: 2rem; text-align: center;
}

.testimonial p {
  font-family: var(--font-body); font-size: 1.15rem; font-weight: 300; 
  color: #f5f5f5; line-height: 1.8; letter-spacing: 0.2px;
}

.testimonial span {
  display: block; margin-top: 2rem; font-size: 0.9rem; font-weight: 500; 
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent-color);
}

.policy-block { padding: 4rem; }
.policy-block h3 { margin-top: 3rem; font-size: 1.3rem; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 12px; color: #fff; font-family: var(--font-heading);}
.policy-block h3:first-child { margin-top: 0; }
.policy-block p { margin-top: 1.2rem; color: #bbb; line-height: 1.8; font-size: 1.05rem; font-weight: 300;}

/* Footer Glass */
footer {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 6rem 2rem 2rem; 
  position: relative; z-index: 10;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px; margin: 0 auto 4rem; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem;
}

.footer-col h4 {
  font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 1.5px; color: #fff; margin-bottom: 1.5rem;
}

.footer-col p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1rem; max-width: 400px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.3s ease; }

.footer-bottom {
  width: 100%; /* Forces the block to span the full flex container */
  max-width: 1200px; 
  margin: 0 auto; 
  padding-top: 2rem; 
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center; 
  color: #555; 
  font-size: 0.85rem;
}

/* ------------------------------------------------ */
/* ADMIN-SPECIFIC STYLES & OVERRIDES                */
/* ------------------------------------------------ */
.tab-content { display: none; position: relative; } 
.tab-content.active { display: block; opacity: 1; }
.tab-content.active > * { position: relative; animation: safeSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.tab-content.active::before {
  content: ""; position: absolute; inset: -50px 0 -50px 0; 
  background-color: var(--bg-color); z-index: 9999; pointer-events: none; 
  animation: fadeCurtain 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.admin-form { display: flex; flex-wrap: wrap; gap: 20px; padding: 30px; margin-bottom: 40px; }
.form-group.full { flex: 1 1 100%; max-width: 100%; display: block; }
.form-group.half { flex: 1 1 45%; min-width: 250px; }
.form-actions { flex: 0 0 100%; width: 100%; display: flex; gap: 15px; margin-top: 15px; }
.btn-clear { background: transparent !important; border-color: rgba(255,255,255,0.15) !important; color: #888 !important; } 
.btn-clear:hover { border-color: var(--accent-color) !important; color: var(--accent-color) !important;}

table { width: 100%; border-collapse: collapse; margin-top: 20px; font-size: 14px; overflow: hidden;}
th { border-bottom: 1px solid rgba(255,255,255,0.2); padding: 15px; text-align: left; color: var(--accent-color); font-family: var(--font-heading); font-weight: normal; letter-spacing: 0.5px;}
td { border-bottom: 1px solid rgba(255,255,255,0.05); padding: 15px; text-align: left; vertical-align: middle;}
tr:hover td { background: rgba(255, 255, 255, 0.03); }

.action-link { color: #ccc; text-decoration: none; margin-right: 15px; font-family: var(--font-heading); font-size: 0.9rem; transition: color 0.3s;}
.action-link:hover { color: var(--accent-color); text-shadow: 0 0 5px rgba(255,255,255,0.4); }
.delete-btn { color: #777; text-decoration: none; font-family: var(--font-heading); font-size: 0.9rem; transition: color 0.3s;}
.delete-btn:hover { color: #ff4444; }

.preview-card { position: relative; display: inline-flex; flex-direction: column; align-items: center; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); padding: 6px; gap: 5px; }
.preview-card img { width: 64px; height: 64px; object-fit: cover; border-radius: 4px; }
.preview-card-actions { display: flex; gap: 4px; width: 100%; justify-content: space-between; }
.preview-card-actions button { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); cursor: pointer; font-size: 10px; padding: 2px 6px; border-radius: 2px; }
.preview-card-actions button:hover { background: #fff; color: #000; }
.remove-img-badge { position: absolute; top: -6px; right: -6px; background: #ff4444; color: white; border: none; border-radius: 50%; width: 20px; height: 20px; cursor: pointer; font-size: 12px; line-height: 20px; text-align: center; }

.wysi-container { border: 1px solid rgba(255,255,255,0.2) !important; border-radius: var(--radius-sm); background: rgba(0,0,0,0.5); }
.wysi-toolbar { background: rgba(15, 15, 15, 0.9) !important; border-bottom: 1px solid rgba(255,255,255,0.2) !important; }
.wysi-toolbar button, .wysi-toolbar select { color: #e0e0e0 !important; background: transparent !important; border: 1px solid transparent !important; }
.wysi-toolbar button:hover { background: rgba(255,255,255,0.1) !important; border-color: rgba(255,255,255,0.3) !important; }
.wysi-editor { min-height: 200px; color: #e0e0e0; padding: 12px; font-family: var(--font-body); }

/* Toggle Switch */
.toggle-switch { display: inline-flex; align-items: center; cursor: pointer; }
.toggle-switch input { display: none; }
.slider { width: 44px; height: 24px; background: rgba(255,255,255,0.1); border-radius: 24px; position: relative; transition: 0.3s; border: 1px solid rgba(255,255,255,0.2); margin-right: 10px; }
.slider::before { content: ""; position: absolute; width: 18px; height: 18px; background: #888; border-radius: 50%; top: 2px; left: 2px; transition: 0.3s; }
input:checked + .slider { background: color-mix(in srgb, var(--accent-color) 30%, transparent); border-color: var(--accent-color); }
input:checked + .slider::before { transform: translateX(20px); background: var(--accent-color); }

/* Utility / Structural Classes */
.login-main { display: flex; justify-content: center; align-items: center; min-height: 100vh; }
.login-card { max-width: 450px; width: 100%; text-align: center; padding: 3rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 4rem; }
.p-0 { padding: 0 !important; }

.admin-header-title { border: none; margin: 0; padding: 0; font-size: 1.8rem; letter-spacing: 1px; color: var(--accent-color); font-family: var(--font-heading); font-weight: normal; text-transform: uppercase; }

.text-danger { color: #ff5555; }
.text-muted-italic { color: #ccc; font-style: italic; }
.text-muted { color: #aaa; }
.text-none { color: #666; }
.pin-display { color: var(--accent-color); font-size: 1.1rem; }

.file-input-pad { padding: 10px !important; }
.preview-img-small { max-width: 80px; border-radius: 4px; }
.preview-img-medium { max-width: 120px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.2); }
.image-preview-container { display: flex; gap: 10px; margin-top: 10px; flex-wrap: wrap; }
.preview-index { font-size: 10px; color: #888; }
.disabled-opacity:disabled { opacity: 0.3; }

.help-text { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.9rem; }

.error-banner { background: #111; border: 1px solid red; color: #fff; padding: 30px; font-family: sans-serif; }
.error-banner-centered { max-width: 600px; margin: 50px auto; }
.error-text { color: #ff4444; }
.error-text-margin { margin-top: 0; }

/* Hover Adjustments for Mouse Only */
@media (hover: hover) and (pointer: fine) {
  .logo:hover { filter: grayscale(0%) drop-shadow(0 0 20px color-mix(in srgb, var(--accent-color) 40%, transparent)); transform: scale(1.02); }
  nav a:hover { color: var(--accent-color); text-shadow: 0 0 10px color-mix(in srgb, var(--accent-color) 50%, transparent); transform: translateY(-2px); }
  nav a:hover::after { transform: translateX(-50%) scale(1); }
  .bento-grid .card:hover, .split-grid .card:hover {
    transform: translateY(-10px) scale(1.01);
    background: rgba(35, 35, 35, 0.4); 
    border-color: color-mix(in srgb, var(--accent-color) 40%, rgba(255,255,255,0.2));
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), inset 0 1px 2px rgba(255, 255, 255, 0.4), 0 0 45px color-mix(in srgb, var(--accent-color) 20%, transparent);
  }
  .btn:hover {
    background: var(--accent-color); color: var(--bg-color); border-color: var(--accent-color);
    transform: translateY(-4px); box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color) 35%, transparent);
  }
  .form-group input:hover, .form-group select:hover, .form-group textarea:hover {
    background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.3);
  }
  .gallery-item:hover {
    transform: translateY(-10px) scale(1.02); border-color: rgba(255,255,255,0.6);
    box-shadow: 0 25px 50px rgba(0,0,0,0.7), 0 0 45px color-mix(in srgb, var(--accent-color) 30%, transparent);
  }
  .gallery-modal-close:hover { transform: scale(0.9); color: var(--accent-color); }
  .modal-thumb:hover { border-color: var(--accent-color); opacity: 1; transform: translateY(-2px); }
  .footer-col ul li a:hover { color: var(--accent-color); padding-left: 4px; }
}

/* Mobile Adjustments */
@media (max-width: 900px) {
  .header-top { justify-content: space-between; padding: 0 1.5rem; }
  .logo-container { margin-bottom: 0; margin-top: 0; }
  .logo { max-width: 240px; }
  .mobile-toggle { display: block; position: static; transform: none; }
  
  nav#main-nav { 
    display: none; 
    width: 100%; 
    margin-top: 2.5rem; 
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10001;
  }
  nav#main-nav.open { display: block !important; }
  nav ul { flex-direction: column; border-radius: var(--radius-lg); padding: 2.5rem; gap: 1.5rem; }

  main { padding: 3rem 1rem 6rem; }

  .bento-grid { grid-template-columns: 1fr; gap: 1.5rem;}
  .bento-grid .span-3 { padding: 3rem 2rem; }
  .split-grid { grid-template-columns: 1fr; }
  .split-grid .card { padding: 2.5rem 2rem; }
  .footer-container { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .footer-col p { margin: 0 auto 1rem; }
  .form-container, .policy-block, .testimonial { padding: 2rem; }
  
  /* Admin specific structural mobile fixes */
  input, select, textarea { font-size: 16px !important; }
  .admin-form { padding: 1.5rem !important; gap: 1rem; }
  .form-group.half { flex: 1 1 100%; min-width: 100%; }
  .form-actions { flex-direction: column; }
  .form-actions .btn { width: 100%; margin-bottom: 0.5rem; }
  .table-responsive { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  th, td { white-space: nowrap; }
}