/* =============================================================
   VBIG CORPORATION — STYLESHEET
   Faithfully replicating the design of vbigcorporation.godaddysites.com

   Structure:
     1.  CSS Custom Properties
     2.  Reset & Base
     3.  Typography
     4.  Layout Utilities
     5.  Buttons
     6.  Header & Navigation
     7.  Mobile Drawer
     8.  Hero Section
     9.  About / Content Cards (Home)
    10.  Introduction Section (Home)
    11.  Services Page
    12.  Reviews Section (Services)
    13.  Contact Page
    14.  Footer
    15.  Responsive (max-width breakpoints)
    16.  Reduced Motion
============================================================= */


/* -------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
------------------------------------------------------- */
:root {
  /* Colours pulled directly from the original GoDaddy stylesheet */
  --clr-bg:           #ffffff;
  --clr-header-bg:    rgb(22, 22, 22);      /* near-black header */
  --clr-footer-bg:    #eeeeee;              /* light grey footer */
  --clr-body-text:    rgb(27, 27, 27);
  --clr-muted:        rgb(125, 117, 112);
  --clr-muted-dark:   rgb(122, 111, 105);
  --clr-muted-light:  rgb(158, 145, 139);
  --clr-subtle:       rgb(87, 87, 87);
  --clr-card-border:  rgba(176, 176, 176, 0.5);
  --clr-divider:      rgb(226, 226, 226);
  --clr-theme:        #ebe9e8;              /* warm off-white theme colour */
  --clr-white:        #ffffff;

  /* Button colours (matches original) */
  --clr-btn-bg:       rgb(235, 233, 232);   /* soft cream/beige */
  --clr-btn-text:     rgb(0, 0, 0);
  --clr-btn-hover-bg: #ffffff;

  /* Fonts — League Spartan first (matches original), Helvetica fallback */
  --font-brand: 'League Spartan', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body:  Helvetica, Arial, sans-serif;

  /* Sizes */
  --header-h:     auto;         /* header wraps to content */
  --container-w:  1160px;
  --section-v:    56px;         /* top/bottom section padding */

  /* Shadows */
  --shadow-nav: 0 2px 8px rgba(0,0,0,.18);
}


/* -------------------------------------------------------
   2. RESET & BASE
------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--clr-body-text);
  background-color: var(--clr-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  background: transparent;
  border: none;
}

:focus-visible {
  outline: 3px solid var(--clr-muted-dark);
  outline-offset: 3px;
  border-radius: 2px;
}


/* -------------------------------------------------------
   3. TYPOGRAPHY
------------------------------------------------------- */
/* Page-level section title (h1/h2 on content pages) */
.section-title {
  font-family: var(--font-brand);
  font-size: clamp(1.75rem, 4vw, 1.875rem); /* ~30px */
  font-weight: 700;
  line-height: 1.27;
  color: var(--clr-muted-light);
  text-align: center;
  margin-bottom: 2.5rem; /* 40px */
  letter-spacing: normal;
  overflow: hidden;
}


/* -------------------------------------------------------
   4. LAYOUT UTILITIES
------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-pad {
  padding-top: var(--section-v);
  padding-bottom: var(--section-v);
}

/* On md+ screens the section padding increases */
@media (min-width: 1024px) {
  .section-pad {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}


/* -------------------------------------------------------
   5. BUTTONS
------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  min-height: 56px;
  border-radius: 0;                        /* matches original — square corners */
  font-family: var(--font-brand);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 200ms ease, color 200ms ease;
  white-space: nowrap;
  border: none;
}

/* Primary — black/dark text on beige */
.btn-primary {
  background-color: var(--clr-btn-bg);
  color: var(--clr-btn-text);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--clr-btn-hover-bg);
  color: var(--clr-btn-text);
}

/* Secondary — transparent outlined button (matches original secondary style) */
.btn-secondary {
  background-color: transparent;
  color: var(--clr-muted-dark);
  border: 1px solid currentColor;
  padding-left: 0;
  padding-right: 0;
  min-height: 40px;
  font-size: 14px;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: rgb(67, 63, 61);
}

/* Full-width submit button variant */
.btn-submit {
  width: 100%;
}


/* -------------------------------------------------------
   6. HEADER & NAVIGATION
------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--clr-header-bg);
  padding-top: 8px;
  padding-bottom: 8px;
  overflow: visible;
}

.header-inner {
  max-width: var(--container-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;   /* centred logo on mobile by default */
  gap: 8px;
  position: relative;
}

/* Brand / logo — inline SVG mark + wordmark */
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: 1 1 auto;
  justify-content: center;   /* centred on mobile */
  white-space: nowrap;
  transition: opacity 150ms ease;
}

.site-logo:hover {
  opacity: 0.82;
}

/* Neural V SVG icon */
.site-logo__icon {
  display: block;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
}

/* Wordmark stack */
.site-logo__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

/* "VBIG" — gradient, bold */
.site-logo__vbig {
  font-family: var(--font-brand);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #0EA5E9 0%, #4F46E5 50%, #7C3AED 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

/* "CORPORATION" — light, spaced */
.site-logo__corp {
  font-family: var(--font-brand);
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1;
}

/* Desktop nav (hidden on mobile, shown on ≥1024px) */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 4px;
}

.desktop-nav__link {
  font-family: var(--font-brand);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clr-muted);
  padding: 12px 16px;
  line-height: 1.45;
  text-decoration: none;
  transition: color 150ms ease;
  min-width: 200px;
  text-align: center;
}

.desktop-nav__link:hover {
  color: rgb(67, 63, 61);
}

.desktop-nav__link--active {
  font-weight: 700;
  color: var(--clr-muted);
}

/* Hamburger toggle (mobile — always visible on small screens) */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-muted);
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle:hover {
  color: var(--clr-white);
}

/* Decorative triangle at base of header (matches original) */
.site-header::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 26.5px solid transparent;
  border-right: 26.5px solid transparent;
  border-top: 24px solid var(--clr-header-bg);
  position: absolute;
  left: 50%;
  bottom: -24px;
  transform: translateX(-50%);
  z-index: 10;
}


/* -------------------------------------------------------
   7. MOBILE DRAWER
------------------------------------------------------- */
.nav-drawer {
  background-color: rgb(246, 246, 246);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  overflow-y: auto;
  z-index: 10002;
  padding-top: 72px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  transform: translateX(-120%);
  transition: transform 0.3s ease-in-out;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.nav-drawer:not([hidden]) {
  display: block;
}

/* When open, JS removes [hidden] and adds .open */
.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 48px 12px 0;
  font-family: var(--font-brand);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clr-muted-dark);
  line-height: 1.45;
  border-bottom: 1px solid rgba(176,176,176,0.5);
  text-decoration: none;
  transition: color 150ms ease;
}

.drawer-link:hover {
  color: rgb(67, 63, 61);
}

.drawer-link--active {
  font-weight: 700;
  color: var(--clr-muted-dark);
}

/* Close overlay */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0,0,0,0.4);
}

.drawer-overlay.open {
  display: block;
}


/* -------------------------------------------------------
   8. HERO SECTION
------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 56px 24px;
}

/* Background image with dark overlay (rgba 0,0,0,0.3 matches original) */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.3) 100%),
    url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Decorative circle graphic (matches original foreground_generic_circle element) */
.hero-circle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  background: rgba(235, 233, 232, 0.12);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

/* Hero text content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 40%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Sub-tagline ("We make technology accessible!") */
.hero-tagline2 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 400;
  color: var(--clr-white);
  line-height: 1.45;
  letter-spacing: 1px;
  text-shadow: 2px 2px 2px rgba(0,0,0,0.2);
}

/* Main H1 heading */
.hero-heading {
  font-family: var(--font-brand);
  font-size: clamp(2.5rem, 6vw, 3.875rem); /* 40px → 62px */
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.2;
  white-space: pre-line;
  text-shadow: 2px 2px 2px rgba(0,0,0,0.2);
}

/* CTA group */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 8px;
}


/* -------------------------------------------------------
   9. ABOUT / CONTENT CARDS (HOME PAGE)
------------------------------------------------------- */
.about {
  background-color: var(--clr-bg);
}

/* 3-column grid of content cards */
.content-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-bottom: -24px;
  margin-left: -12px;
}

/* Each card takes 1/3 width on desktop */
.content-card {
  box-sizing: border-box;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 100%;
  max-width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  min-height: 16em;
}

/* Square image */
.content-card__img-wrap {
  display: block;
  width: 100%;
  text-align: center;
  overflow: hidden;
  order: -1; /* image first */
}

.content-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
}

/* Text body */
.content-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 24px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 72px;
  /* Border on right for desktop separator */
  border-bottom: 1px solid rgb(226, 226, 226);
  position: relative;
  background-size: cover;
}

/* Remove bottom border on last card */
.content-card:last-child .content-card__body {
  border-bottom: 0;
}

.content-card__heading {
  font-family: var(--font-brand);
  font-size: 22px;
  font-weight: 400;
  color: var(--clr-body-text);
  line-height: 1.45;
  margin-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-left: 40px;
  /* on desktop replaced by the relative heading */
}

/* Static heading (always shown) */
.content-card__heading {
  position: static;
  padding-left: 0;
  margin-bottom: 8px;
}

.content-card__text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: rgb(94, 94, 94);
  line-height: 1.33;
  flex: 1;
  margin-bottom: 32px;
}

/* CTA link at bottom of card */
.content-card .btn-secondary {
  align-self: flex-start;
  margin-top: auto;
}


/* -------------------------------------------------------
   10. INTRODUCTION SECTION (HOME)
------------------------------------------------------- */
.intro {
  background-color: var(--clr-bg);
  overflow: hidden;
}

.intro-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.intro-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.33;
  color: rgb(94, 94, 94);
  max-width: 60ch;
}

.intro .btn-secondary {
  margin-top: 0;
}


/* -------------------------------------------------------
   11. SERVICES PAGE
------------------------------------------------------- */
.services-page {
  background-color: var(--clr-bg);
}

/* Services grid — same 3-column layout as content cards */
.services-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-bottom: -48px;
  margin-left: -12px;
}

.service-card {
  box-sizing: border-box;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 100%;
  max-width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.service-card__img-wrap {
  width: 100%;
  overflow: hidden;
}

.service-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.service-card__body {
  flex: 1;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card__title {
  font-family: var(--font-brand);
  font-size: 22px;
  font-weight: 400;
  color: var(--clr-body-text);
  line-height: 1.45;
}

.service-card__desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--clr-body-text);
}


/* -------------------------------------------------------
   12. REVIEWS SECTION (SERVICES PAGE)
------------------------------------------------------- */
.reviews-section {
  position: relative;
  padding: 40px 24px 56px;
  text-align: center;
  overflow: hidden;
}

.reviews-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,0.24) 0%, rgba(0,0,0,0.24) 100%),
    url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.reviews-content {
  position: relative;
  z-index: 1;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.reviews-title {
  font-family: var(--font-brand);
  font-size: clamp(1.75rem, 4vw, 1.875rem);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.27;
  margin-bottom: 56px;
}

.reviews-empty {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.72);
}


/* -------------------------------------------------------
   13. CONTACT PAGE
------------------------------------------------------- */
.contact-page {
  background-color: var(--clr-bg);
}

.contact-layout {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
}

/* Form column */
.contact-form-col {
  flex: 1 1 320px;
  min-width: 280px;
}

.contact-form-title {
  font-family: var(--font-brand);
  font-size: 22px;
  font-weight: 400;
  color: var(--clr-body-text);
  line-height: 1.45;
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--clr-body-text);
}

.required {
  color: #c0392b;
}

.form-group input {
  width: 100%;
  padding: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--clr-body-text);
  background: var(--clr-white);
  border: 1px solid rgba(176,176,176,0.6);
  border-radius: 0;
  outline: none;
  transition: border-color 150ms ease;
  -webkit-appearance: none;
}

.form-group input:focus {
  border-color: var(--clr-body-text);
}

.form-group input::placeholder {
  color: rgb(176,176,176);
  font-size: 14px;
}

.form-feedback {
  font-size: 14px;
  text-align: center;
  min-height: 1.4em;
  margin-top: 8px;
}

.form-feedback.success { color: #27ae60; font-weight: 700; }
.form-feedback.error   { color: #c0392b; }

.recaptcha-notice {
  font-size: 12px;
  color: var(--clr-muted);
  margin-top: 16px;
  line-height: 1.5;
}

.recaptcha-notice a {
  text-decoration: underline;
  color: inherit;
}

.recaptcha-notice a:hover {
  color: var(--clr-body-text);
}

/* Info column */
.contact-info-col {
  flex: 1 1 320px;
  min-width: 280px;
}

.contact-info-title {
  font-family: var(--font-brand);
  font-size: 22px;
  font-weight: 400;
  color: var(--clr-body-text);
  line-height: 1.45;
  margin-bottom: 12px;
}

.contact-info-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgb(94, 94, 94);
  line-height: 1.33;
  margin-bottom: 24px;
}

.business-card {
  border: 1px solid var(--clr-divider);
  padding: 24px;
  background: var(--clr-bg);
}

.business-name {
  font-family: var(--font-brand);
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-body-text);
  margin-bottom: 20px;
}

/* Hours table */
.hours-caption {
  font-family: var(--font-brand);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.083em;
  text-transform: uppercase;
  color: rgb(89, 89, 89);
  text-align: left;
  caption-side: top;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--clr-divider);
  width: 100%;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.hours-table th,
.hours-table td {
  padding: 6px 0;
  text-align: left;
  font-family: var(--font-body);
  color: rgb(89, 89, 89);
  vertical-align: top;
}

.hours-table th {
  font-weight: 600;
  width: 50%;
  color: var(--clr-body-text);
}

.hours-table tr {
  border-bottom: 1px solid rgba(226,226,226,0.5);
}

.hours-table tr:last-child {
  border-bottom: none;
}


/* -------------------------------------------------------
   14. FOOTER
------------------------------------------------------- */
.site-footer {
  background-color: var(--clr-footer-bg);
  position: relative;
  border-top: 1px solid #eeeeee;
  padding-top: 56px;
  padding-bottom: 56px;
}

/* Triangle divider above footer content (matches original) */
.footer-triangle {
  display: flex;
  justify-content: center;
  color: #eeeeee;
  margin-top: -4px;
  margin-bottom: 0;
  transform: rotate(180deg);
  position: absolute;
  top: -23px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  filter: drop-shadow(0px 0px 0px #efefef);
}

.footer-triangle svg {
  display: block;
  width: 53px;
  height: 24px;
}

.footer-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 64px 24px;
  text-align: center;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.083em;
  color: rgb(89, 89, 89);
  line-height: 1.33;
  margin-bottom: 24px;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgb(27, 27, 27);
  width: 50px;
  margin: 0 auto 24px;
}

.footer-powered {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.083em;
  color: rgb(89, 89, 89);
  line-height: 1.33;
}


/* -------------------------------------------------------
   15. RESPONSIVE — BREAKPOINTS
------------------------------------------------------- */

/* ---- Mobile-only: show hamburger, stack hero ---- */
@media (max-width: 767px) {
  /* Header: hamburger left, logo centred */
  .site-logo {
    font-size: 22px;
    text-align: center;
  }

  /* Hero: full-width centred text */
  .hero-content {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .hero-heading {
    font-size: 2rem;
  }

  .hero-circle {
    width: 200px;
    height: 200px;
    opacity: 0.5;
  }

  /* Content cards: 1 column */
  .content-card {
    flex-basis: 100%;
    max-width: 100%;
  }

  .content-card__img {
    height: calc((100vw - 48px) / 1);
    width: 100%;
  }

  /* Services: 1 column */
  .service-card {
    flex-basis: 100%;
    max-width: 100%;
  }

  /* Contact: stacked */
  .contact-layout {
    flex-direction: column;
  }
}

/* ---- Tablet (768–1023px): 2 columns ---- */
@media (min-width: 768px) {
  /* Content cards: 2-up */
  .content-card {
    flex-basis: 50%;
    max-width: 50%;
    padding-right: 24px;
    padding-left: 24px;
  }

  /* Services: 2-up */
  .service-card {
    flex-basis: 50%;
    max-width: 50%;
    padding-right: 24px;
    padding-left: 24px;
  }

  .nav-toggle {
    display: flex; /* keep hamburger visible on tablet too */
  }
}

/* ---- Desktop (≥1024px): show full nav, 3 columns ---- */
@media (min-width: 1024px) {

  /* Show desktop nav, hide hamburger */
  .nav-toggle {
    display: none;
  }

  .desktop-nav {
    display: flex;
  }

  /* Header layout: left-nav | logo | right-placeholder */
  .header-inner {
    justify-content: space-between;
  }

  .site-logo {
    text-align: center;
    flex: 0 1 auto;
    order: 0;
  }

  /* 3-column content cards */
  .content-card {
    flex-basis: 33.3333%;
    max-width: 33.3333%;
    padding-right: 12px;
    padding-left: 12px;
  }

  /* Vertical right border separator between cards (except last) */
  .content-card:not(:last-child) .content-card__body {
    border-right: 1px solid rgb(226, 226, 226);
    border-bottom: transparent;
  }

  /* 3-column services */
  .service-card {
    flex-basis: 33.3333%;
    max-width: 33.3333%;
    padding-right: 12px;
    padding-left: 12px;
    margin-bottom: 48px;
  }

  /* Hero */
  .hero {
    min-height: 800px;
    padding: 100px 24px;
  }

  .hero-circle {
    width: 500px;
    height: 500px;
  }
}

/* ---- Large (≥1280px) ---- */
@media (min-width: 1280px) {
  .hero-heading {
    font-size: 3.875rem; /* 62px */
  }

  .container {
    max-width: 1160px;
  }
}

/* ---- XL (≥1536px) ---- */
@media (min-width: 1536px) {
  .site-logo {
    font-size: 24px;
  }

  .hero-heading {
    font-size: 4rem; /* 64px */
  }

  .container {
    max-width: 1280px;
  }
}


/* -------------------------------------------------------
   16. REDUCED MOTION
------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
