/* ==========================================================================
   Retro Editorial Sections Architecture
   Five Color-Blocked Zones: Teal -> Cream -> Orange -> Grey -> Charcoal
   ========================================================================== */

/* ==========================================================================
   ZONE 1: Header & Navigation (Retro Muted Teal)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--retro-teal);
  border-bottom: 2px dashed rgba(255, 255, 255, 0.35);
  z-index: var(--z-sticky);
  transition: box-shadow var(--transition-base), background-color var(--transition-base);
}

.site-header.is-scrolled {
  background-color: var(--retro-teal-dark);
  box-shadow: 0 4px 16px rgba(25, 35, 35, 0.3);
}

/* Nav layout: left-links | logo | right-group(links + CTA) — evenly spaced */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  /* Equal left/right flex sides so logo stays visually centred */
  gap: var(--space-6);
}

/* Left nav fills equal space */
.desktop-nav-left {
  flex: 1;
  justify-content: flex-end; /* push links toward center */
  gap: var(--space-8);
}

/* Right wrapper (nav-right + cta) fills equal space */
.nav-right-group {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* start from center outward */
  gap: var(--space-8);
}

.desktop-nav-right {
  gap: var(--space-8);
}

/* Logo badge — uses local logo.png, preserves circular retro feel */
.nav-brand-seal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: var(--radius-full);
  background-color: transparent;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.nav-brand-seal:hover {
  transform: scale(1.06);
}

/* Logo image inside the seal — circular, no distortion */
.nav-brand-logo {
  width: 62px;
  height: 62px;
  border-radius: var(--radius-full);
  object-fit: cover;
  object-position: center;
  display: block;
  /* Subtle drop shadow to lift off teal bar */
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}

/* Desktop Nav Links */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  font-family: var(--font-heading-retro);
  font-size: 1.0625rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--retro-cream);
  text-decoration: none;
  position: relative;
  padding: var(--space-2) 0;
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--retro-orange);
  transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background-color: var(--retro-charcoal-dark);
  border: 2px solid var(--retro-cream);
  border-radius: var(--radius-xs);
  color: var(--retro-cream);
  cursor: pointer;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
  transition: background-color var(--transition-fast);
}

.nav-toggle:hover {
  background-color: #000000;
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  background-color: currentColor;
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(20, 24, 26, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.nav-backdrop.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 100vw);
  background-color: var(--retro-cream);
  border-left: 3px solid var(--retro-border-ink);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-6);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
  visibility: hidden;
}

.mobile-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--space-4);
  border-bottom: 2px dashed rgba(35, 38, 41, 0.2);
}

.drawer-brand {
  font-family: var(--font-display-retro);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--retro-charcoal-dark);
}

.drawer-close-btn {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--retro-charcoal-dark);
  color: #ffffff;
  border: 2px solid var(--retro-border-ink);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-6);
}

.drawer-link {
  font-family: var(--font-heading-retro);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--retro-charcoal-dark);
  padding: var(--space-3) var(--space-4);
  border: 1px solid transparent;
  border-radius: var(--radius-xs);
  transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.drawer-link:hover {
  background-color: #ffffff;
  border-color: var(--retro-border-ink);
  color: var(--retro-orange);
}

.drawer-footer {
  padding-top: var(--space-4);
  border-top: 2px dashed rgba(35, 38, 41, 0.2);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* ==========================================================================
   ZONE 1: HERO SECTION (Retro Muted Teal)
   ========================================================================== */
.hero-section {
  background-color: var(--retro-teal);
  padding-top: var(--space-12);
  padding-bottom: var(--space-16);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-6);
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

/* Huge 3D-Extruded Retro Title */
.hero-title-retro {
  font-family: var(--font-display-retro);
  font-size: var(--font-size-hero);
  color: var(--retro-cream);
  text-shadow: 2px 2px 0 var(--retro-teal-deep),
               4px 4px 0 rgba(30, 45, 45, 0.5),
               6px 6px 0 rgba(15, 25, 25, 0.35);
  letter-spacing: 0.08em;
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
  max-width: 100%;
}

/* Retro Ribbon Banner Underneath Title */
.hero-ribbon-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: -8px;
  width: 100%;
  max-width: 100%;
}

.hero-ribbon {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--retro-cream);
  color: var(--retro-charcoal-dark);
  font-family: var(--font-heading-retro);
  font-size: clamp(0.75rem, 0.7rem + 0.3vw, 0.9375rem);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 2.25rem;
  border-top: 1.5px solid rgba(35, 38, 41, 0.35);
  border-bottom: 1.5px solid rgba(35, 38, 41, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
}

.hero-ribbon::before,
.hero-ribbon::after {
  content: '';
  position: absolute;
  top: 4px;
  bottom: 4px;
  width: 14px;
  background: var(--retro-cream-paper);
  z-index: -1;
}

.hero-ribbon::before {
  left: -10px;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.hero-ribbon::after {
  right: -10px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* Framed Retro Showcase Frame (like the clock/figurines box in reference) */
.hero-showcase-frame {
  width: 100%;
  max-width: 860px;
  background-color: var(--retro-cream);
  border: 7px solid #ffffff;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 32px rgba(20, 30, 35, 0.25), 0 2px 8px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  margin: var(--space-4) 0;
  box-sizing: border-box;
  min-width: 0;
}

.showcase-slider {
  display: grid;
  grid-template-areas: "slide";
  position: relative;
  min-height: 320px;
  width: 100%;
  min-width: 0;
}

.showcase-slide {
  grid-area: slide;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  align-items: stretch;
  min-width: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.35s cubic-bezier(0.25, 0.1, 0.25, 1),
              transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1),
              visibility 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.showcase-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  z-index: 2;
}

.showcase-img-wrap {
  height: 100%;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  background-color: var(--retro-cream-alt);
  min-width: 0;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-showcase-frame:hover .showcase-slide.is-active .showcase-img {
  transform: scale(1.02);
}

.showcase-details {
  padding: var(--space-6) var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  gap: var(--space-3);
  min-width: 0;
  box-sizing: border-box;
}

.showcase-tag {
  font-family: var(--font-heading-retro);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--retro-orange);
  background-color: var(--retro-orange-pale);
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--retro-orange);
  border-radius: var(--radius-xs);
}

.showcase-title {
  font-size: 1.75rem;
  color: var(--retro-charcoal-dark);
  line-height: 1.1;
  margin: 0;
}

.showcase-desc {
  font-size: 0.9375rem;
  color: var(--retro-charcoal);
  line-height: 1.6;
}

.showcase-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-2);
  flex-wrap: wrap;
}

/* Nav arrow buttons on the showcase */
.showcase-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--retro-charcoal-dark);
  color: #ffffff;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.showcase-nav-btn:hover {
  background-color: var(--retro-orange);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

.showcase-prev {
  left: 12px;
}

.showcase-prev:hover {
  transform: translateY(-50%) translateX(-2px);
}

.showcase-next {
  right: 12px;
}

.showcase-next:hover {
  transform: translateY(-50%) translateX(2px);
}

.showcase-nav-btn:active {
  transform: translateY(-50%) scale(0.92);
}

/* Retro Quote Banner (as in reference: “ HELLO, I AM JOHN DOE. ... ”) */
.hero-quote-banner {
  max-width: 860px;
  width: 100%;
  padding: var(--space-4) var(--space-6);
  border-top: 1px dashed rgba(255, 255, 255, 0.4);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
  font-family: var(--font-heading-retro);
  font-size: clamp(1rem, 0.9rem + 0.6vw, 1.35rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--retro-cream);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  line-height: 1.4;
}

.hero-quote-mark {
  color: #ffffff;
  font-size: 1.5em;
  vertical-align: middle;
}

/* ==========================================================================
   ZONE 2: ABOUT SECTION (Warm Paper Cream / Newsprint)
   ========================================================================== */
.about-section {
  background-color: var(--retro-cream);
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
  border-bottom: 2px dashed rgba(35, 38, 41, 0.25);
  position: relative;
}

.section-title-wrap {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-6);
}

.section-title-retro {
  font-family: var(--font-display-retro);
  font-size: clamp(2.5rem, 2.2rem + 2vw, 4.25rem);
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--retro-charcoal-dark);
  display: flex;
  align-items: center;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.about-editorial-lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--retro-charcoal-dark);
  max-width: 900px;
}

/* 4-Column Circular Badge Layout (Directly from reference) */
.about-columns-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.about-col-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
}

.about-seal-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background-color: var(--retro-orange);
  color: #ffffff;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 2px 2px 0 rgba(35, 38, 41, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform var(--transition-base);
}

.about-seal-icon::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px dashed rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-full);
}

.about-seal-icon:hover {
  transform: scale(1.06);
}

.about-seal-icon svg {
  width: 32px;
  height: 32px;
}

.about-col-title {
  font-family: var(--font-heading-retro);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--retro-charcoal-dark);
  margin-top: var(--space-2);
}

.about-col-text {
  font-size: 0.875rem;
  color: var(--retro-charcoal);
  line-height: 1.6;
}

/* ==========================================================================
   ZONE 3: PORTFOLIO / SELECTED WORK SECTION (Burnt Orange / Coral)
   ========================================================================== */
.projects-section {
  background-color: var(--retro-orange);
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
  border-bottom: 2px dashed rgba(255, 255, 255, 0.35);
  position: relative;
  color: #ffffff;
}

.projects-section .section-title-retro {
  color: #ffffff;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.25);
}

.projects-section .section-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 800px;
  margin-bottom: var(--space-6);
}

.projects-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
}

/* ==========================================================================
   ZONE 4: SERVICES & PROCESS (Heather Grey / Stone Paper Magazine)
   ========================================================================== */
.services-section {
  background-color: var(--retro-grey);
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
  border-bottom: 2px dashed rgba(35, 38, 41, 0.25);
  position: relative;
}

/* Zone 4: What I Build Balanced 2x2 Grid */
.services-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  width: 100%;
}

.magazine-layout-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: var(--space-10);
}

.magazine-main-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.magazine-sidebar-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

/* Retro Editorial Sidebar Box */
.retro-sidebar-box {
  background-color: var(--retro-cream);
  border: 2px solid var(--retro-border-ink);
  padding: var(--space-6);
  box-shadow: 3px 3px 0 rgba(35, 38, 41, 0.85);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.sidebar-title {
  font-family: var(--font-heading-retro);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--retro-charcoal-dark);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--retro-orange);
}

.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: 0.875rem;
  color: var(--retro-charcoal);
}

.sidebar-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.sidebar-bullet {
  color: var(--retro-orange);
  font-weight: bold;
}

/* Process Timeline inside Grey Section */
.process-timeline-wrap {
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 2px dashed rgba(35, 38, 41, 0.25);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
}

/* ==========================================================================
   ZONE 5: CONTACT SECTION (Dark Ink Charcoal)
   ========================================================================== */
.contact-section {
  background-color: var(--retro-charcoal);
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
  color: var(--retro-cream);
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section .section-title-retro {
  color: var(--retro-cream);
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-10);
  margin-top: var(--space-8);
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-card-box {
  background-color: var(--retro-charcoal-dark);
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: var(--space-6);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-method-link {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-3) 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  color: var(--retro-cream);
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.contact-method-link:last-child {
  border-bottom: none;
}

.contact-method-link:hover {
  color: var(--retro-orange-light);
  transform: translateX(3px);
}

.contact-method-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background-color: var(--retro-orange);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon-wrap svg {
  width: 18px;
  height: 18px;
}

.contact-label-text {
  font-family: var(--font-heading-retro);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--retro-cream-paper);
}

.contact-val-text {
  font-size: 0.9375rem;
  font-weight: var(--font-weight-semibold);
  color: #ffffff;
}

/* Contact Form Card */
.contact-form-panel {
  background-color: var(--retro-charcoal-dark);
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: var(--space-8);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.6);
}

/* ==========================================================================
   ZONE 5: FOOTER (Dark Ink Charcoal Bar with Circular Seal Buttons)
   ========================================================================== */
.site-footer {
  background-color: var(--retro-charcoal-dark);
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
  border-top: 2px dashed rgba(255, 255, 255, 0.18);
  color: var(--retro-cream);
}

.footer-social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

/* Circular Seal Buttons in Footer (Directly matching bottom of reference) */
.footer-seal-btn {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background-color: var(--retro-charcoal);
  color: var(--retro-cream);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.4);
  text-decoration: none;
  transition: transform var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
}

.footer-seal-btn:hover {
  background-color: var(--retro-orange);
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.footer-seal-btn svg {
  width: 20px;
  height: 20px;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-6);
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  font-size: 0.8125rem;
  color: var(--retro-cream-paper);
}

.footer-back-link {
  font-family: var(--font-heading-retro);
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--retro-orange-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-back-link:hover {
  color: #ffffff;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 992px) {
  .about-columns-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }

  .services-grid-2x2 {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .magazine-layout-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none !important;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-section {
    padding-top: var(--space-8);
    padding-bottom: var(--space-10);
  }

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .nav-brand-seal {
    width: 44px;
    height: 44px;
  }

  .nav-brand-logo {
    width: 44px;
    height: 44px;
  }

  .nav-right-group {
    flex: 0; /* On mobile don't expand right group */
    gap: var(--space-3);
  }

  .nav-actions {
    margin-left: 0;
  }

  .hero-title-retro {
    font-size: clamp(2.5rem, 11vw, 3.75rem);
  }

  .hero-ribbon-wrap {
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  .hero-ribbon {
    display: block;
    width: 100%;
    font-size: clamp(0.6875rem, 2.4vw, 0.8125rem);
    letter-spacing: 0.08em;
    padding: 0.45rem 0.75rem;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }

  .hero-ribbon::before,
  .hero-ribbon::after {
    display: none;
  }

  .hero-showcase-frame {
    max-width: calc(100vw - 32px);
  }

  .showcase-slider {
    display: grid;
    grid-template-areas: "slide";
    min-height: auto;
  }

  .showcase-slide {
    grid-area: slide;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.35s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1),
                visibility 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
  }

  .showcase-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    z-index: 2;
  }

  .showcase-img-wrap {
    width: 100%;
    height: 190px;
    min-height: unset;
  }

  .showcase-nav-btn {
    top: 95px;
    width: 32px;
    height: 32px;
    font-size: 0.7rem;
  }

  .showcase-details {
    padding: var(--space-4) var(--space-4) var(--space-5);
    width: 100%;
  }

  .showcase-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    gap: var(--space-2);
  }

  .showcase-actions .btn {
    width: 100%;
    white-space: normal;
  }

  .hero-quote-banner {
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    padding: var(--space-3) var(--space-2);
  }

  .about-section,
  .projects-section,
  .services-section,
  .contact-section {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .section-title-retro {
    font-size: clamp(2.25rem, 8vw, 3rem);
  }

  .about-columns-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .project-card {
    padding: var(--space-4);
    gap: var(--space-4);
  }

  .project-footer-actions {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
  }

  .project-footer-actions .btn {
    width: 100%;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .form-grid-2col {
    grid-template-columns: 1fr;
  }

  .contact-form-panel {
    padding: var(--space-5);
  }

  .footer-bottom-row {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title-retro {
    font-size: clamp(2.25rem, 13vw, 3rem);
  }

  .filter-bar {
    gap: 6px;
  }

  .filter-pill {
    padding: 0.3rem 0.65rem;
    font-size: 0.75rem;
  }
}

