/* ==========================================================================
   chicagodigitech.com — Main Stylesheet
   Monochromatic editorial — pure black & white
   Google Fonts: Bebas Neue (headings), Inter (body)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. RESET + FONTS
   -------------------------------------------------------------------------- */



*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* --------------------------------------------------------------------------
   2. TYPOGRAPHY
   -------------------------------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
}

h1 {
  font-size: clamp(5rem, 12vw, 11rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.0;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.05;
}

p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #ddd;
}

.label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #bbb;
  display: block;
}

/* --------------------------------------------------------------------------
   3. LAYOUT
   -------------------------------------------------------------------------- */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
}

.section--white {
  background: #fff;
  color: #000;
}

.section--white p {
  color: #222;
}

.section--white .label {
  color: #555;
}

.divider {
  border: none;
  border-top: 1px solid #111;
  margin: 0;
}

.divider--light {
  border-top-color: #ddd;
}

/* --------------------------------------------------------------------------
   4. NAVIGATION
   -------------------------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #111;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: height 0.3s ease;
}

.nav--scrolled .nav__inner {
  height: 56px;
}

.nav__brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: #fff;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #666;
  transition: color 0.2s ease;
}

.nav__links a:hover,
.nav__links a.active {
  color: #fff;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #666;
  transition: background-color 0.2s;
}

.nav__toggle:hover span {
  background-color: #fff;
}

/* --------------------------------------------------------------------------
   5. HERO — ANIMATED CIRCLES + CONTENT
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #000;
  overflow: hidden;
}

/* Circle base */
.circle {
  position: absolute;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.6);
  pointer-events: none;
  background: transparent;
}

/* Individual circle placements */
.circle--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
  animation: float-1 35s ease-in-out infinite alternate;
}

.circle--2 {
  width: 350px;
  height: 350px;
  bottom: -100px;
  left: -80px;
  animation: float-2 28s ease-in-out infinite alternate;
}

.circle--3 {
  width: 200px;
  height: 200px;
  top: 30%;
  left: 20%;
  animation: float-3 22s ease-in-out infinite alternate;
}

.circle--4 {
  width: 500px;
  height: 500px;
  bottom: -200px;
  right: 10%;
  animation: float-1 40s ease-in-out infinite alternate-reverse;
}

.circle--5 {
  width: 150px;
  height: 150px;
  top: 15%;
  right: 30%;
  animation: float-2 18s ease-in-out infinite alternate;
}

.circle--6 {
  width: 800px;
  height: 800px;
  top: -300px;
  left: -200px;
  animation: float-3 50s linear infinite;
  border-color: rgba(255, 255, 255, 0.3);
}

/* Circle keyframes */
@keyframes float-1 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(30px, -20px) rotate(180deg); }
}

@keyframes float-2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-25px, 30px) scale(1.05); }
}

@keyframes float-3 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  33%  { transform: translate(20px, -30px) rotate(120deg); }
  66%  { transform: translate(-30px, 15px) rotate(240deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 8rem 0 6rem;
}

/* Fade-in keyframe */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #bbb;
  display: block;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.1s;
}

.hero__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 12vw, 11rem);
  line-height: 0.95;
  color: #fff;
  letter-spacing: 0.02em;
  animation: fadeUp 1s ease both;
  animation-delay: 0.3s;
}

/* The O in SALO */
.hero__o {
  color: #fff;
}

.hero__sub {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #ccc;
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.6s;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.9s;
}

/* --------------------------------------------------------------------------
   6. BUTTONS
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font: 600 0.7rem/1 'Inter', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

/* Button group — flex wrapper for side-by-side buttons */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* White fill — for dark sections */
.btn--white {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.btn--white:hover {
  background: transparent;
  color: #fff;
}

/* Ghost — for dark sections */
.btn--outline {
  background: transparent;
  color: #fff;
  border-color: #333;
}

.btn--outline:hover {
  border-color: #fff;
}

/* Black fill — for white sections */
.btn--dark {
  background: #000;
  color: #fff;
  border-color: #000;
}

.btn--dark:hover {
  background: transparent;
  color: #000;
}

/* Ghost on white */
.btn--outline-light {
  background: transparent;
  color: #000;
  border-color: #999;
}

.btn--outline-light:hover {
  border-color: #000;
}

/* --------------------------------------------------------------------------
   7. SCROLL REVEAL
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   8. CONTENT SECTIONS — HOME PAGE
   -------------------------------------------------------------------------- */

/* Services/intro block */
.copy-block {
  max-width: 680px;
}

.dit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.copy-block p + p {
  margin-top: 1.25rem;
}

/* Kit grid — white section */
.kit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2.5rem;
}

.kit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.kit-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #555;
  padding: 0.4rem 0.85rem;
  color: #ccc;
  background: transparent;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.kit-tag:hover {
  border-color: #fff;
  color: #000;
  background: #fff;
}

/* Kit tags on white section */
.section--white .kit-tag {
  border-color: #ccc;
  color: #333;
}

.section--white .kit-tag:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}

.photo-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.photo-stack img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border: 1px solid #ddd;
  display: block;
}

/* Expertise section */
.expertise-block {
  max-width: 760px;
}

/* Editing callout banner */
.callout {
  text-align: center;
  padding: 5rem 2rem;
}

.callout h2 {
  color: #000;
}

.callout p {
  color: #555;
  max-width: 480px;
  margin: 1rem auto 2.5rem;
}

.callout__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   9. ABOUT PAGE
   -------------------------------------------------------------------------- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.about-headshot {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  display: block;
  border: 1px solid #333;
  filter: grayscale(100%);
}

.section--white .about-headshot {
  border-color: #ddd;
}

.capabilities-list {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
}

.cap-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid #1a1a1a;
}

.section--white .cap-item {
  border-bottom-color: #e0e0e0;
}

.cap-item:first-child {
  border-top: 1px solid #1a1a1a;
}

.section--white .cap-item:first-child {
  border-top-color: #e0e0e0;
}

.cap-item__title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.3rem;
}

.section--white .cap-item__title {
  color: #000;
}

.cap-item__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #ccc;
}

.section--white .cap-item__desc {
  color: #555;
}

.contact-info {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info a {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}

.contact-info a:hover {
  opacity: 0.7;
}

.contact-info__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #555;
  display: block;
  margin-bottom: 0.2rem;
}

/* --------------------------------------------------------------------------
   10. PRICING TABLES
   -------------------------------------------------------------------------- */

.pricing-section {
  margin-top: 4rem;
}

.pricing-section + .pricing-section {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid #1a1a1a;
}

.section--white .pricing-section + .pricing-section {
  border-top-color: #ddd;
}

.pricing-section__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.pricing-section__desc {
  font-size: 0.9rem;
  margin-bottom: 2rem;
  max-width: 560px;
  color: #555;
}

.section--white .pricing-section__desc {
  color: #444;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.pricing-table thead tr {
  border-bottom: 1px solid #222;
}

.section--white .pricing-table thead tr {
  border-bottom-color: #ddd;
}

.pricing-table th {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: left;
  padding: 0 1rem 1rem 0;
  color: #444;
}

.section--white .pricing-table th {
  color: #666;
}

.pricing-table td {
  padding: 1rem 1rem 1rem 0;
  border-bottom: 1px solid #111;
  vertical-align: top;
  color: #ddd;
}

.section--white .pricing-table td {
  border-bottom-color: #eee;
  color: #444;
}

.pricing-table td:first-child {
  font-weight: 500;
  color: #fff;
}

.section--white .pricing-table td:first-child {
  color: #000;
}

.pricing-table td:last-child {
  font-weight: 600;
  white-space: nowrap;
  color: #fff;
}

.section--white .pricing-table td:last-child {
  color: #000;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  font-style: italic;
  color: #555;
}

/* --------------------------------------------------------------------------
   11. FAQ ACCORDION (pure CSS checkbox hack)
   -------------------------------------------------------------------------- */

.faq-list {
  margin-top: 2.5rem;
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid #1a1a1a;
}

.section--white .faq-item {
  border-bottom-color: #ddd;
}

.faq-item:first-child {
  border-top: 1px solid #1a1a1a;
}

.section--white .faq-item:first-child {
  border-top-color: #ddd;
}

.faq-item input[type="checkbox"] {
  display: none;
}

.faq-item label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  transition: opacity 0.2s;
  user-select: none;
}

.section--white .faq-item label {
  color: #000;
}

.faq-item label:hover {
  opacity: 0.75;
}

.faq-item label::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  flex-shrink: 0;
  opacity: 0.35;
  transition: opacity 0.2s;
}

.faq-item input[type="checkbox"]:checked + label::after {
  content: '×';
  opacity: 0.6;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item input[type="checkbox"]:checked ~ .faq-answer {
  max-height: 320px;
}

.faq-answer p {
  font-size: 0.875rem;
  line-height: 1.75;
  padding-bottom: 1.5rem;
  color: #ccc;
}

.section--white .faq-answer p {
  color: #bbb;
}

/* --------------------------------------------------------------------------
   12. CONTACT FORM
   -------------------------------------------------------------------------- */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}

.contact-sidebar p {
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.7;
  color: #555;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #fff;
  border: 1px solid #ccc;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #000;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #ccc;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23000' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  margin-top: 0.5rem;
}

.thank-you {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
  border: 1px solid #ddd;
}

.thank-you h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #000;
}

.thank-you p {
  color: #555;
}

/* --------------------------------------------------------------------------
   13. FOOTER
   -------------------------------------------------------------------------- */

.footer {
  background: #000;
  border-top: 1px solid #111;
  padding: 3rem 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: #333;
}

.footer__links {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.footer__links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #444;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: #bbb;
}

.footer__copy {
  font-size: 0.7rem;
  color: #333;
}

.footer__social {
  font-size: 0.75rem;
  color: #555;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer__social:hover {
  color: #fff;
}

/* --------------------------------------------------------------------------
   14. DIFFERENTIATORS
   -------------------------------------------------------------------------- */

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
}

.diff-item {
  padding: 2rem 2rem 2rem 0;
  border-top: 3px solid #fff;
}

.section--white .diff-item {
  border-top-color: #000;
}

.diff-item:not(:first-child) {
  padding-left: 2rem;
  border-left: 1px solid #1a1a1a;
}

.section--white .diff-item:not(:first-child) {
  border-left-color: #ddd;
}

.diff-item__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.diff-item__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #bbb;
}

.section--white .diff-item__desc {
  color: #444;
}

/* --------------------------------------------------------------------------
   HOW IT WORKS / STEPS
   -------------------------------------------------------------------------- */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
  border: 1px solid #1a1a1a;
}

.section--white .steps-grid {
  border-color: #ddd;
}

.step {
  padding: 2.5rem;
  border-right: 1px solid #1a1a1a;
}

.section--white .step {
  border-right-color: #ddd;
}

.step:last-child {
  border-right: none;
}

.step__number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 1rem;
  color: #fff;
}

.section--white .step__number {
  color: #bbb;
}

.step__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.step__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #ccc;
}

.section--white .step__desc {
  color: #555;
}

/* --------------------------------------------------------------------------
   PLACEHOLDER BOX
   -------------------------------------------------------------------------- */

.placeholder-box {
  margin-top: 2.5rem;
  border: 1px dashed #333;
  padding: 4rem 2rem;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #333;
}

/* --------------------------------------------------------------------------
   15. MOBILE RESPONSIVE (@media max-width: 768px)
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {

  /* Nav: show hamburger, hide links */
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000;
    border-bottom: 1px solid #1a1a1a;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 0;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links a {
    padding: 0.9rem 2rem;
    width: 100%;
  }

  /* Hero */
  .hero__name {
    font-size: clamp(3.5rem, 18vw, 7rem);
  }

  /* Circles: reduce size, hide largest */
  .circle--1 { width: 420px; height: 420px; }
  .circle--2 { width: 245px; height: 245px; }
  .circle--3 { width: 140px; height: 140px; }
  .circle--4 { width: 350px; height: 350px; }
  .circle--5 { width: 105px; height: 105px; }
  .circle--6 { display: none; }

  /* Grids collapse to single column */
  .kit-grid,
  .about-grid,
  .contact-layout,
  .dit-grid {
    grid-template-columns: 1fr !important;
  }

  .kit-grid {
    gap: 2.5rem;
  }

  .about-grid,
  .contact-layout {
    gap: 3rem;
  }

  /* Steps and diff grids */
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step {
    border-right: none;
    border-bottom: 1px solid #1a1a1a;
  }

  .section--white .step {
    border-bottom-color: #ddd;
  }

  .step:last-child {
    border-bottom: none;
  }

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

  .diff-item:not(:first-child) {
    padding-left: 0;
    border-left: none;
  }

  /* Section padding */
  .section {
    padding: 4.5rem 0;
  }

  /* Callout */
  .callout {
    padding: 3rem 1.5rem;
  }

  /* Pricing: allow wrapping on mobile */
  .pricing-table {
    min-width: 0;
    font-size: 0.8rem;
  }

  .pricing-table td,
  .pricing-table th {
    padding: 0.75rem 0.5rem 0.75rem 0;
  }

  .pricing-table td:last-child {
    white-space: normal;
  }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero__name {
    font-size: clamp(3rem, 20vw, 5.5rem);
  }

  h2 {
    font-size: 2rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.65rem;
  }

  .hero__actions,
  .callout__actions,
  .btn-group {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero__actions .btn,
  .callout__actions .btn,
  .btn-group .btn {
    flex: 0 1 auto;
  }
}

.site-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
}
