/* ==========================================================================
   DigitalSearchlight — styles.css
   Light, premium theme: white background, navy type, teal/cyan beam accent.
   Mobile-first, no framework.
   ========================================================================== */

:root {
  --navy: #0A1F44;
  --navy-2: #13305E;
  --teal: #00AEEF;
  --cyan: #5BD6FF;
  --white: #FFFFFF;

  --ink: #0A1F44;
  --ink-muted: #4A5568;
  --ink-faint: #8291AA;

  --surface: #F6F8FC;
  --surface-2: #EEF2F8;
  --border: #E1E7F0;
  --border-strong: #CBD5E4;

  --success: #1FA97C;
  --danger: #E23D5B;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;

  --shadow-card: 0 1px 2px rgba(10, 31, 68, 0.04), 0 16px 40px -20px rgba(10, 31, 68, 0.18);
  --shadow-card-hover: 0 1px 2px rgba(10, 31, 68, 0.05), 0 24px 56px -20px rgba(0, 174, 239, 0.28);
  --shadow-glow-teal: 0 20px 60px -22px rgba(0, 174, 239, 0.45);

  --header-h: 78px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --gradient-brand: linear-gradient(90deg, var(--navy) 0%, var(--teal) 55%, var(--cyan) 100%);
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--navy);
}

p {
  margin: 0;
}

button {
  font-family: inherit;
}

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

/* ---- Utility ---- */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 1000;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 12px;
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 12px;
}

.eyebrow-on-dark {
  color: var(--cyan);
}

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  color: var(--navy);
  box-shadow: var(--shadow-glow-teal);
}

.btn-primary:hover {
  box-shadow: 0 24px 60px -18px rgba(0, 174, 239, 0.6);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--navy);
}

.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 15px 30px;
  font-size: 1rem;
}

/* ---- Brand / logo ---- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  flex-shrink: 0;
}

.brand-word {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-word-line {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-word-top {
  color: var(--navy);
}

.brand-word-bottom {
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand--on-dark .brand-word-top {
  color: var(--white);
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-muted);
  transition: color 0.2s var(--ease);
}

.site-nav a:hover {
  color: var(--navy);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.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);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 84px;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 820px;
  text-align: left;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 6rem);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--ink-muted);
  max-width: 640px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--ink-faint);
}

/* ---- Marquee ---- */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 26px 0;
  overflow: hidden;
}

.marquee-label {
  font-size: 0.82rem;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 16px;
}

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 44px;
  animation: marquee 32s linear infinite;
}

.marquee-track span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-2);
  white-space: nowrap;
  opacity: 0.75;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---- Sections ---- */
.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--surface);
}

.section-head {
  max-width: 660px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 14px;
}

.section-lead {
  color: var(--ink-muted);
  font-size: 1.02rem;
}

/* ---- Bento grid ---- */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.bento-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}

.bento-item:hover {
  border-color: rgba(0, 174, 239, 0.45);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.bento-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(0, 174, 239, 0.1);
  color: var(--teal);
  margin-bottom: 20px;
}

.bento-icon svg {
  width: 24px;
  height: 24px;
}

.bento-badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(0, 174, 239, 0.14);
  border: 1px solid rgba(0, 174, 239, 0.35);
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 12px;
}

.bento-item h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}

.bento-item p {
  color: var(--ink-muted);
  font-size: 0.94rem;
}

/* ---- Who we help strip ---- */
.who-strip {
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}

.who-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.who-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.who-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.who-pill {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
}

.who-pill-core {
  color: var(--navy);
  background: rgba(0, 174, 239, 0.1);
  border-color: rgba(0, 174, 239, 0.35);
}

.who-pill-core span {
  color: var(--teal);
  font-weight: 700;
}

/* ---- Timeline ---- */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: step;
  margin: 0;
  padding: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 22px;
  width: 2px;
  background: var(--gradient-brand);
  opacity: 0.35;
}

.timeline-step {
  position: relative;
  padding: 0 0 40px 64px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-node {
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--teal);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 800;
}

.timeline-step h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.timeline-step p {
  color: var(--ink-muted);
  font-size: 0.92rem;
  max-width: 420px;
}

/* ---- Proof ---- */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.proof-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-card);
}

.proof-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  margin-bottom: 14px;
}

.proof-metric {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.proof-label {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.proof-label span {
  font-weight: 500;
  color: var(--ink-faint);
  font-size: 0.85rem;
}

.proof-copy {
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.disclaimer {
  background: rgba(0, 174, 239, 0.08);
  border: 1px solid rgba(0, 174, 239, 0.3);
  color: var(--navy-2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.92rem;
}

.disclaimer strong {
  color: var(--navy);
}

/* ---- About ---- */
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.about-media {
  display: flex;
  justify-content: center;
}

.about-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.about-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(10, 31, 68, 0.15);
  box-shadow: var(--shadow-card);
}

.about-caption {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
}

.about-copy p {
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-copy h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  margin-bottom: 18px;
}

/* ---- FAQ / Accordion ---- */
.accordion {
  max-width: 780px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-item h3 {
  margin: 0;
  font-size: 1rem;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  color: var(--navy);
  text-align: left;
  padding: 22px 4px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.accordion-icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--teal);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease);
}

.accordion-icon::before {
  width: 14px;
  height: 2px;
}

.accordion-icon::after {
  width: 2px;
  height: 14px;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scale(0);
}

.accordion-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s var(--ease);
}

.accordion-panel p {
  color: var(--ink-muted);
  font-size: 0.94rem;
  padding: 0 4px 22px;
}

/* ---- CTA band ---- */
.cta-band {
  background: var(--navy);
  padding: 88px 0;
}

.cta-band-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-band-inner h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
}

.cta-band-inner p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  margin-bottom: 32px;
}

/* ---- Contact ---- */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.contact-copy h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  margin-bottom: 16px;
}

.contact-details {
  margin-top: 28px;
  display: grid;
  gap: 8px;
  font-size: 0.94rem;
}

.contact-details a {
  color: var(--teal);
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.form-note {
  font-size: 0.82rem;
  color: var(--ink-faint);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin: 0 0 22px;
}

.form-note a {
  color: var(--teal);
}

.form-row {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.form-row label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--ink);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.15);
}

.form-row textarea {
  resize: vertical;
  min-height: 96px;
}

.form-row.has-error input,
.form-row.has-error select,
.form-row.has-error textarea {
  border-color: var(--danger);
}

.form-error {
  min-height: 16px;
  font-size: 0.78rem;
  color: var(--danger);
}

.form-submit {
  width: 100%;
  margin-top: 6px;
}

.form-success {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(31, 169, 124, 0.1);
  border: 1px solid rgba(31, 169, 124, 0.35);
  color: var(--success);
  font-size: 0.9rem;
}

.form-success a {
  color: var(--success);
  text-decoration: underline;
}

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 0 0 32px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
}

.footer-top {
  padding: 20px 20px 0;
}

.footer-domain {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-top: 36px;
}

.footer-brand p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.social-icon:hover {
  background: var(--teal);
  color: var(--navy);
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-legal {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  display: grid;
  gap: 6px;
}

/* ==========================================================================
   Breakpoints
   ========================================================================== */

@media (min-width: 640px) {
  .form-row-split {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 780px) {
  .site-nav {
    position: static;
    background: none;
    border: none;
    height: auto;
    padding: 0;
  }

  .nav-toggle {
    display: none;
  }
}

@media (max-width: 779px) {
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease);
  }

  .site-nav.is-open {
    max-height: 400px;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 20px 20px;
  }

  .site-nav a {
    display: block;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .nav-toggle {
    display: flex;
  }

  .header-actions .btn-sm {
    display: none;
  }
}

@media (min-width: 640px) {
  .bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .timeline {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }

  .timeline::before {
    top: 22px;
    left: 0;
    right: 0;
    bottom: auto;
    height: 2px;
    width: auto;
  }

  .timeline-step {
    flex: 1;
    padding: 64px 8px 0 0;
  }

  .timeline-node {
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-step h3,
  .timeline-step p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 960px) {
  .bento {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(160px, auto);
    grid-auto-flow: dense;
  }

  .bento-ads {
    grid-column: span 2;
    grid-row: span 2;
  }

  .bento-seo {
    grid-column: span 2;
  }

  .bento-ecom {
    grid-column: span 2;
  }

  .bento-ai {
    grid-column: span 2;
  }

  .bento-cro {
    grid-column: span 1;
  }

  .bento-meta {
    grid-column: span 1;
  }

  .bento-track {
    grid-column: span 1;
  }

  .bento-nurture {
    grid-column: span 1;
  }

  .bento-analytics {
    grid-column: span 1;
  }

  .bento-web {
    grid-column: span 1;
  }

  .bento-comp {
    grid-column: span 1;
  }

  .about-inner {
    grid-template-columns: 260px 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .footer-inner {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: start;
  }
}

@media (max-width: 374px) {
  .wrap {
    padding: 0 16px;
  }

  .hero {
    padding: 88px 0 64px;
  }
}
