/* ============================================================
   Dripping Tech & AI Consulting — Stylesheet
   Squarespace-style template
   ============================================================ */

:root {
  --navy:        #0C2340;
  --forest:      #166534;
  --navy-mid:    #1A3A5C;
  --navy-light:  #243E63;
  --teal:        #17A8BC;
  --teal-light:  #E8F7FA;
  --gold:        #E8A020;
  --gold-light:  #FDF4E3;
  --tigers-gold: #C5B075;
  --white:       #FFFFFF;
  --off-white:   #F7F8FA;
  --gray-100:    #EEF0F4;
  --gray-200:    #DDE1EA;
  --gray-500:    #8896A8;
  --gray-700:    #4A5568;
  --text:        #1E293B;
  --text-muted:  #5A6B7E;

  --font-serif: 'Lora', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1100px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 4px rgba(12,35,64,0.07), 0 2px 12px rgba(12,35,64,0.05);
  --shadow:    0 2px 8px rgba(12,35,64,0.09), 0 6px 24px rgba(12,35,64,0.07);
  --shadow-lg: 0 4px 16px rgba(12,35,64,0.12), 0 12px 40px rgba(12,35,64,0.09);
  --transition: 0.2s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- Container ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p { margin-bottom: 1rem; color: var(--text); }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off-white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: #1396A8;
}
.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}
.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* ---- Sticky header wrapper (banner + nav) ---- */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* ---- Signup Banner ---- */
.signup-banner {
  background: var(--forest);
  border-bottom: 1px solid rgba(0,0,0,0.12);
  padding: 9px 32px;
  position: relative;
}
.signup-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.signup-banner__text {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  text-align: center;
}
.signup-banner__text strong {
  color: var(--white);
}
.signup-banner__btn {
  background: var(--teal);
  color: var(--white);
  padding: 7px 18px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid var(--teal);
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.signup-banner__btn:hover {
  background: #1396A8;
  border-color: #1396A8;
}
.signup-banner__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 4px 6px;
  transition: color var(--transition);
}
.signup-banner__close:hover {
  color: var(--white);
}

/* ---- Signup Modal ---- */
.signup-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.signup-modal.open {
  display: flex;
}
.signup-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12,35,64,0.72);
  backdrop-filter: blur(2px);
}
.signup-modal__box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-lg);
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.signup-modal__box h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.signup-modal__box > p,
.signup-modal__desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.signup-modal__form-area {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 4px;
}
.signup-modal__form-area {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 20px 8px;
  margin-top: 8px;
}
.signup-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 18px;
  color: var(--gray-500);
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color var(--transition);
}
.signup-modal__close:hover { color: var(--navy); }
.form-group--checkbox {
  margin-bottom: 24px;
}
.form-group--checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}
.form-group--checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--teal);
}
.signup-success {
  text-align: center;
  padding: 24px 0;
}
.signup-success p {
  font-size: 17px;
  font-weight: 600;
  color: var(--teal);
  margin: 0;
}

/* ---- Navigation ---- */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 1px 8px rgba(12,35,64,0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
}
.nav__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.nav__logo-img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
.nav__logo > div {
  display: flex;
  flex-direction: column;
}
.nav__logo-name {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.nav__logo-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 5px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 6px 4px;
  transition: color var(--transition);
}
.nav__links a:hover {
  color: var(--navy);
  font-weight: 700;
}
.nav__links a.active {
  color: var(--navy);
  font-weight: 700;
  border-bottom: 2px solid var(--teal);
  padding-bottom: 4px;
}
.nav__cta { margin-left: 8px; }

/* Mobile nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 16px 32px 24px;
  gap: 4px;
}
.nav__mobile a {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a.active { color: var(--navy); font-weight: 700; }
.nav__mobile.open { display: flex; }

/* ---- Sections ---- */
.section {
  padding: 96px 0;
}
.section--alt {
  background: var(--off-white);
}
.section--dark {
  background: var(--navy);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark p,
.section--dark .section-label {
  color: var(--white);
}
.section--dark .section-label { color: rgba(255,255,255,0.6); }
.section--teal {
  background: var(--teal);
}
.section--teal h2,
.section--teal p,
.section--teal .section-label { color: var(--white); }
.section--teal .section-label { color: rgba(255,255,255,0.7); }

.section__header {
  margin-bottom: 56px;
}
.section__header--center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section__header h2 {
  margin-bottom: 16px;
}
.section__header p {
  font-size: 17px;
  color: var(--text-muted);
}
.section--dark .section__header p { color: rgba(255,255,255,0.75); }

/* ---- Home Hero ---- */
.hero {
  background: var(--navy);
  padding: 120px 32px 112px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(23,168,188,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.hero__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero__sub {
  font-size: 19px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.hero__link:hover { color: rgba(255,255,255,0.9); }

/* ---- Page Hero ---- */
.page-hero {
  background: var(--off-white);
  padding: 72px 32px 64px;
  border-bottom: 1px solid var(--gray-200);
}
.page-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}
.page-hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
}

/* ---- Cards grid ---- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.card__icon {
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}
.card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}
.card p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.card__link:hover { gap: 8px; }

/* ---- Two-col text layout ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col--text-only {
  grid-template-columns: 5fr 4fr;
}
.two-col--35 {
  grid-template-columns: 3fr 2fr;
  gap: 72px;
  align-items: start;
}

/* ---- ICP examples ---- */
.icp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin: 24px 0 28px;
}
.icp-item {
  padding: 6px 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 10px;
}
.icp-item span { font-size: 18px; }

/* ---- Callout / Assessment box ---- */
.callout-box {
  background: var(--teal-light);
  border: 2px solid var(--teal);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 64px;
}
.callout-box .callout-label {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.callout-box h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.callout-box .price-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 20px;
  display: block;
}
.callout-box p { font-size: 16px; color: var(--text); }
.callout-box .callout-meta {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(23,168,188,0.25);
}
.callout-box__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}

/* ---- Service rows (what comes next) ---- */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 64px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.service-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.service-card p { font-size: 15px; color: var(--text-muted); flex: 1; }
.service-card .fit-line {
  font-size: 13px;
  color: var(--gray-500);
  font-style: italic;
  margin: 16px 0;
  padding: 12px 16px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--teal);
}
.service-card .no-contract {
  font-size: 12px;
  color: var(--teal);
  font-weight: 600;
  margin-top: 8px;
}
.service-card .card-cta {
  margin-top: 20px;
}

/* ---- FAQ ---- */
.faq { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item summary {
  list-style: none;
  padding: 22px 0;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--navy);
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform var(--transition);
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item[open] summary { color: var(--teal); }
.faq-item .faq-body {
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ---- Contact page accordions ---- */
.contact-accordion {
  border-bottom: 1px solid var(--gray-200);
}
.contact-accordion:first-of-type {
  border-top: 1px solid var(--gray-200);
}
.contact-accordion__header {
  list-style: none;
  padding: 24px 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}
.contact-accordion__header::-webkit-details-marker { display: none; }
.contact-accordion__header::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform var(--transition);
}
.contact-accordion[open] > .contact-accordion__header::after {
  content: '−';
}
.contact-accordion[open] > .contact-accordion__header { color: var(--teal); }
.contact-accordion__body {
  padding: 8px 0 36px;
}

/* ---- Hosting callout (Events) ---- */
.hosting-box {
  background: var(--gold-light);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin: 48px 0;
}
.hosting-box h3 { margin-bottom: 8px; }
.hosting-box p { font-size: 15px; color: var(--text-muted); margin: 0; }

/* ---- About headshot area ---- */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 72px;
  align-items: start;
}
.about-photo {
  position: sticky;
  top: 100px;
}
.about-photo__img {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--gray-500);
  overflow: hidden;
}
.about-photo__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.about-body h2 { margin-bottom: 24px; }
.about-body p { font-size: 16.5px; margin-bottom: 1.2rem; }
.about-subhead {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 40px;
  margin-bottom: 12px;
  display: block;
}

/* ---- Contact page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
}

.contact-info { }
.contact-info h3 { margin-bottom: 20px; font-size: 1rem; }
.contact-detail {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-detail__icon {
  width: 32px;
  height: 32px;
  background: var(--teal-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail p { font-size: 14px; color: var(--text-muted); margin: 0; }
.contact-detail strong { color: var(--text); font-size: 14px; display: block; }

/* ---- Form ---- */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group--checkbox label {
  display: flex;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 0;
  letter-spacing: 0;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(23,168,188,0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ---- Events page ---- */
.event-section { margin-bottom: 64px; }
.event-section h2 { margin-bottom: 16px; }
.event-section > p { font-size: 17px; color: var(--text-muted); margin-bottom: 28px; }
.expect-list {
  list-style: none;
  margin: 24px 0;
}
.expect-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--gray-100);
}
.expect-list li:last-child { border-bottom: none; }
.expect-list li::before {
  content: '→';
  color: var(--teal);
  font-weight: 600;
  flex-shrink: 0;
}


/* ---- Discovery call steps grid ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  margin-top: 32px;
}

/* ---- CTA section ---- */
.cta-section {
  text-align: center;
  padding: 96px 32px;
  background: var(--navy);
}
.cta-section--teal { background: var(--teal); }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.75); font-size: 17px; max-width: 520px; margin: 0 auto 36px; }

/* ---- Footer ---- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand .nav__logo-name { color: var(--white); font-size: 18px; }
.footer__brand .nav__logo-sub { color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer__brand p { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.55); max-width: 280px; margin-top: 12px; }
.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer__col ul a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 13px; color: rgba(255,255,255,0.4); margin: 0; }

/* ---- Utility ---- */
.text-teal { color: var(--teal); }
.text-tigers-gold { color: var(--tigers-gold); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .service-row { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { position: static; max-width: 320px; margin: 0 auto; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .icp-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .signup-banner { padding: 8px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  /* Bottom sheet on mobile */
  .signup-modal {
    padding: 0;
    align-items: flex-end;
    justify-content: stretch;
  }
  .signup-modal__box {
    padding: 24px 20px 36px;
    border-radius: 16px 16px 0 0;
    max-width: 100%;
    max-height: 90dvh;
    width: 100%;
    margin: 0;
  }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .cards { grid-template-columns: 1fr; }
  .callout-box { padding: 32px 24px; }
  .callout-box__inner { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .icp-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .page-hero { padding: 48px 20px 40px; }
  .cta-section { padding: 64px 20px; }
  .hero { padding: 80px 24px 72px; }
  .container, .container--narrow { padding: 0 20px; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { text-align: center; }
}
