/* ==========================================================================
   Lunnys Webdesign (stlu.uk) - Modern Design System & Stylesheet
   ========================================================================== */

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

:root {
  /* Surface colors */
  --bg: #07090e;
  --bg-alt: #0d1118;
  --bg-raised: #131824;
  --bg-card: rgba(19, 24, 36, 0.7);
  --bg-card-hover: rgba(26, 33, 50, 0.85);

  /* Text colors */
  --text: #f8fafc;
  --text-dim: #94a3b8;
  --text-faint: #64748b;

  /* Accents */
  --accent: #3b82f6;
  --accent-hover: #60a5fa;
  --accent-soft: rgba(59, 130, 246, 0.12);
  --accent-glow: rgba(59, 130, 246, 0.25);
  
  --accent-2: #10b981;
  --accent-2-hover: #34d399;
  --accent-2-soft: rgba(16, 185, 129, 0.12);

  --danger: #f43f5e;
  --danger-soft: rgba(244, 63, 94, 0.12);

  /* Borders & Shadows */
  --border: rgba(255, 255, 255, 0.08);
  --border-subtle: rgba(255, 255, 255, 0.04);
  --border-hover: rgba(59, 130, 246, 0.4);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-card: 0 12px 32px -4px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--border);
  --shadow-glow: 0 0 35px -5px var(--accent-glow);
}

/* Base Reset & Typography */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
  font-variant-numeric: tabular-nums;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease;
}
a:hover {
  color: var(--accent-hover);
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

::selection {
  background: var(--accent);
  color: #030712;
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  display: inline-block;
}

nav.nav-desktop {
  display: flex;
  align-items: center;
  gap: 8px;
}
nav.nav-desktop a {
  padding: 8px 16px;
  color: var(--text-dim);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background-color 0.15s ease;
}
nav.nav-desktop a:hover {
  color: var(--text);
  background: var(--bg-alt);
}
nav.nav-desktop a.btn-nav {
  color: #030712;
  background: var(--accent);
  font-weight: 700;
  margin-left: 6px;
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}
nav.nav-desktop a.btn-nav:hover {
  background: var(--accent-hover);
  color: #030712;
  transform: translateY(-1px);
}

/* Mobile Nav Toggle & Menu */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.mobile-nav-menu {
  display: none;
  position: absolute;
  top: 74px;
  left: 0;
  right: 0;
  background: rgba(13, 17, 24, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  flex-direction: column;
  gap: 12px;
  z-index: 49;
}
.mobile-nav-menu.open {
  display: flex;
}
.mobile-nav-menu a {
  padding: 10px 14px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dim);
  border-radius: var(--radius-sm);
}
.mobile-nav-menu a:hover {
  color: var(--text);
  background: var(--bg-raised);
}
.mobile-nav-menu a.btn-nav {
  color: #030712;
  background: var(--accent);
  text-align: center;
  margin-top: 6px;
}

/* ==========================================================================
   Buttons & Badges
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.02rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--accent);
  color: #030712;
  box-shadow: 0 4px 18px rgba(59, 130, 246, 0.35);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #030712;
  box-shadow: 0 6px 24px rgba(59, 130, 246, 0.5);
}
.btn-ghost {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.03);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(59, 130, 246, 0.06);
}

.eyebrow-plain {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  padding: 110px 0 90px;
  overflow: hidden;
  isolation: isolate;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 25%, black 15%, transparent 80%);
  mask-image: radial-gradient(ellipse 75% 65% at 50% 25%, black 15%, transparent 80%);
  animation: gridDrift 45s linear infinite;
}
@keyframes gridDrift {
  from { background-position: 0 0; }
  to { background-position: 220px 220px; }
}

.hero-glow {
  position: absolute;
  z-index: -1;
  top: -150px;
  left: 50%;
  width: 950px;
  height: 520px;
  background: radial-gradient(ellipse closest-side, rgba(59, 130, 246, 0.18), transparent 70%);
  filter: blur(20px);
  transform: translateX(-50%);
  animation: glowDrift 12s ease-in-out infinite alternate;
}
.hero-glow.is-tracking {
  animation-play-state: paused;
  transform: translate(-50%, -50%) !important;
  transition: left 0.12s linear, top 0.12s linear;
}
@keyframes glowDrift {
  0% { transform: translate(-50%, 0) scale(1); }
  100% { transform: translate(-45%, 30px) scale(1.08); }
}

.hero h1 {
  font-size: clamp(2.6rem, 5.8vw, 4.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  max-width: 920px;
  margin-bottom: 24px;
}
.hero h1 .hl {
  color: var(--accent);
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lead {
  color: var(--text-dim);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  max-width: 700px;
  margin-bottom: 38px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* Hero Trust Markers */
.hero-trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 600;
}
.trust-item svg {
  color: var(--accent-2);
  flex-shrink: 0;
}

/* ==========================================================================
   Sections Layout & Section Headers
   ========================================================================== */
section {
  padding: 96px 0;
  position: relative;
}
section.tight {
  padding: 72px 0;
}
.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}
h2 {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  font-weight: 800;
  line-height: 1.15;
}
.section-head p {
  color: var(--text-dim);
  font-size: 1.15rem;
  line-height: 1.6;
}

/* ==========================================================================
   Cost Comparison Section
   ========================================================================== */
.cost-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

.comp-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.comp-card.featured {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.08) 0%, rgba(19, 24, 36, 0.95) 100%);
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 12px 35px -8px rgba(59, 130, 246, 0.15);
}

.comp-badge {
  position: absolute;
  top: -13px;
  right: 24px;
  background: var(--accent);
  color: #030712;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.comp-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.comp-price {
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
}
.comp-card:not(.featured) .comp-price {
  color: var(--text-faint);
  text-decoration: line-through;
  text-decoration-color: var(--danger);
  text-decoration-thickness: 3px;
}
.comp-card.featured .comp-price {
  color: var(--accent-2);
}

.comp-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.comp-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--text-dim);
}
.comp-features li strong {
  color: var(--text);
}
.comp-icon-cross {
  color: var(--danger);
  font-weight: 800;
  flex-shrink: 0;
}
.comp-icon-check {
  color: var(--accent-2);
  font-weight: 800;
  flex-shrink: 0;
}

.cost-footnote {
  text-align: center;
  color: var(--text-dim);
  margin-top: 40px;
  font-size: 1.05rem;
  max-width: 800px;
  margin-inline: auto;
}
.cost-footnote strong {
  color: var(--text);
}

/* ==========================================================================
   Services Grid
   ========================================================================== */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  backdrop-filter: blur(12px);
}
.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.6);
}

.service-card .card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.service-card .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.service-card:nth-child(even) .icon {
  background: var(--accent-2-soft);
  color: var(--accent-2);
  border-color: rgba(16, 185, 129, 0.2);
}

.service-price-chip {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-dim);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text);
}
.service-card p {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.6;
  flex: 1;
}
.card-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
}
.service-card:hover .card-more {
  color: var(--accent-hover);
  transform: translateX(3px);
  transition: transform 0.15s ease;
}

/* ==========================================================================
   Photo Band / Quote Banner
   ========================================================================== */
.photo-band {
  position: relative;
  padding: 0;
  height: 320px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) brightness(0.45);
}
.photo-band .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 9, 14, 0.96) 0%, rgba(7, 9, 14, 0.6) 50%, rgba(7, 9, 14, 0.8) 100%);
  display: flex;
  align-items: center;
}
.photo-band .overlay .wrap {
  width: 100%;
}
.photo-band blockquote {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 720px;
  color: var(--text);
  line-height: 1.25;
}
.photo-band cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.about-grid img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  filter: saturate(0.9);
}
.about-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dim);
  font-size: 1.05rem;
}
.about-list li svg {
  color: var(--accent-2);
  flex-shrink: 0;
}

/* ==========================================================================
   FAQ Accordion Section
   ========================================================================== */
.faq-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 860px;
  margin-inline: auto;
}
.faq-item {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item[open] {
  border-color: rgba(59, 130, 246, 0.35);
}
.faq-item summary {
  padding: 20px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-chevron {
  transition: transform 0.2s ease;
  color: var(--accent);
  flex-shrink: 0;
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}
.faq-content {
  padding: 0 24px 22px;
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.65;
}

/* ==========================================================================
   Contact Section & Interactive Form
   ========================================================================== */
.contact-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}
.contact-info h2 {
  margin-bottom: 18px;
}
.contact-info p {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.contact-direct-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-direct-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.15s ease;
}
.contact-direct-link:hover {
  color: var(--accent);
}

form.contact-form {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-card);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
}
label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 8px;
  display: block;
}
input, textarea, select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.98rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  outline: none;
}
textarea {
  resize: vertical;
  min-height: 120px;
}
.form-status {
  font-size: 0.95rem;
  min-height: 20px;
  font-weight: 600;
}
.form-status.ok {
  color: var(--accent-2);
}
.form-status.err {
  color: var(--danger);
}
button.submit {
  align-self: flex-start;
}
button.submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ==========================================================================
   Subpage / Service Detail Specifics
   ========================================================================== */
.breadcrumb {
  color: var(--text-faint);
  font-size: 0.92rem;
  margin-bottom: 24px;
}
.breadcrumb a {
  color: var(--text-dim);
}
.breadcrumb a:hover {
  color: var(--accent);
}
.page-hero {
  padding: 80px 0 90px;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
}
.page-hero p.lead {
  font-size: 1.25rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  backdrop-filter: blur(10px);
}
.detail-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--accent-2);
  font-weight: 700;
}
.detail-card p {
  color: var(--text-dim);
  font-size: 0.98rem;
  line-height: 1.6;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.steps .step:last-child {
  border-bottom: 1px solid var(--border);
}
.step-num {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
  background: var(--accent-soft);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(59, 130, 246, 0.25);
}
.step h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  font-weight: 700;
}
.step p {
  color: var(--text-dim);
  font-size: 1rem;
}

.cta-band {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 80px 0;
}
.cta-band h2 {
  margin-bottom: 16px;
}
.cta-band p {
  color: var(--text-dim);
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 580px;
  margin-inline: auto;
}

.other-services {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}
.other-services a {
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 9px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.other-services a:hover {
  border-color: var(--accent);
  color: var(--text);
  background: var(--bg-raised);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  padding: 56px 0;
  text-align: center;
  color: var(--text-faint);
  font-size: 0.92rem;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
footer .footer-links {
  display: flex;
  gap: 20px;
}
footer a {
  color: var(--text-dim);
}
footer a:hover {
  color: var(--accent);
}

/* ==========================================================================
   Cookie Bar
   ========================================================================== */
.cookie-bar {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  max-width: 680px;
  margin: 0 auto;
  background: rgba(19, 24, 36, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  display: none;
  align-items: center;
  gap: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}
.cookie-bar.show {
  display: flex;
}
.cookie-bar p {
  color: var(--text-dim);
  font-size: 0.92rem;
  margin: 0;
  flex: 1;
}
.cookie-bar a {
  color: var(--accent-2);
}
.cookie-bar button {
  background: var(--accent);
  color: #030712;
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s ease;
}
.cookie-bar button:hover {
  background: var(--accent-hover);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 900px) {
  .header-status {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-grid .img-col {
    order: -1;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav.nav-desktop {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  section {
    padding: 68px 0;
  }
  .hero {
    padding: 76px 0 60px;
  }
  form.contact-form {
    padding: 24px 20px;
  }
  .photo-band {
    height: auto;
    min-height: 240px;
    padding: 40px 0;
  }
  .cookie-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
}
