/* =========================================================
   DAWGSWEB
   Main Stylesheet
   ========================================================= */


/* =========================================================
   1. VARIABLES
   ========================================================= */

:root {
  --ink: #102833;
  --ink-2: #29414b;
  --red: #d93632;
  --red-dark: #b92320;
  --cream: #f7f1e8;
  --paper: #fffdfa;
  --white: #ffffff;
  --line: #e7ddd1;
  --muted: #65747a;
  --soft: #f4eee6;
  --accent-soft: #ff7772;
  --text-on-dark: #ffffff;
  --muted-on-dark: #c7d1d4;
  --icon-on-red: #ffffff;

  --shadow: 0 18px 50px rgba(28, 38, 41, 0.11);

  --radius: 24px;
  --radius-sm: 16px;

  --max: 1180px;
}


/* =========================================================
   2. GLOBAL / RESET
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}


/* =========================================================
   3. ACCESSIBILITY
   ========================================================= */

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 9999;

  padding: 10px 14px;

  background: #ffffff;
  border-radius: 10px;
}


/* =========================================================
   4. HEADER / NAVIGATION
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;

  background: rgba(255, 253, 250, 0.9);
  backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(16, 40, 51, 0.08);
}

.nav-wrap {
  height: 92px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}


/* =========================================================
   5. DAWGSWEB LOGO
   ========================================================= */

.brand {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;

  align-items: center;

  column-gap: 8px;

  line-height: 1;
}

/*
   New image logo
*/

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo img {
  display: block;

  width: auto;
  height: 72px;
  max-width: 360px;

  object-fit: contain;
}

/*
   Original text-logo styles.
   These can remain here in case we ever need them again.
*/

.brand-paw {
  grid-row: 1 / 3;
  font-size: 31px;
}

.brand-name {
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -1.3px;
}

.brand-name span {
  color: var(--red);
}

.brand small {
  grid-column: 2;

  margin-top: 4px;

  color: var(--muted);

  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
}


/* =========================================================
   6. DESKTOP NAVIGATION
   ========================================================= */

.site-nav {
  display: flex;
  align-items: center;

  gap: 27px;

  font-size: 14px;
  font-weight: 700;
}

.site-nav > a:not(.btn) {
  position: relative;
}

.site-nav > a:not(.btn)::after {
  content: "";

  position: absolute;

  left: 0;
  right: 100%;
  bottom: -8px;

  height: 2px;

  background: var(--red);

  transition: 0.2s;
}

.site-nav > a:not(.btn):hover::after {
  right: 0;
}


/* =========================================================
   7. MOBILE MENU BUTTON
   ========================================================= */

.nav-toggle {
  display: none;

  padding: 8px;

  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;

  width: 25px;
  height: 2px;

  margin: 5px;

  background: var(--ink);
}


/* =========================================================
   8. BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 15px 23px;

  border: 0;
  border-radius: 12px;

  background: var(--red);
  color: #ffffff;

  font-weight: 850;

  box-shadow: 0 10px 25px rgba(217, 54, 50, 0.2);

  cursor: pointer;

  transition:
    transform 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}

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

  background: var(--red-dark);

  box-shadow: 0 14px 30px rgba(217, 54, 50, 0.28);
}

.btn-small {
  padding: 11px 17px;
  border-radius: 10px;
}

.btn-outline {
  background: transparent;
  color: var(--ink);

  border: 1.5px solid var(--ink);

  box-shadow: none;
}

.btn-outline:hover {
  background: var(--ink);
  color: #ffffff;
}

.btn-full {
  width: 100%;
}


/* =========================================================
   9. HERO
   ========================================================= */

.hero {
  position: relative;

  overflow: hidden;

  padding: 82px 0 0;

  background:
    linear-gradient(
      135deg,
      #fbf7f1 0%,
      #f3eadf 55%,
      #efe1d1 100%
    );
}

.hero-grid {
  min-height: 480px;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;

  align-items: center;

  gap: 40px;
}

.hero-copy {
  position: relative;
  z-index: 2;

  padding-bottom: 50px;
}

.eyebrow {
  display: inline-block;

  margin-bottom: 14px;

  color: var(--red);

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 1.8px;
}

.hero h1 {
  max-width: 790px;

  margin: 0 0 24px;

  font-size: clamp(45px, 5.4vw, 76px);
  line-height: 0.98;

  letter-spacing: -4px;
}

.hero h1 span {
  color: var(--red);
}

.hero-lead {
  max-width: 650px;

  margin: 0 0 30px;

  color: var(--ink-2);

  font-size: 21px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 14px;
}

.microcopy {
  margin: 17px 0 0;

  color: var(--muted);

  font-size: 13px;
}


/* Hero Background Glow */

.hero-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(70px);

  opacity: 0.28;
}

.hero-glow-one {
  width: 320px;
  height: 320px;

  right: -100px;
  top: -100px;

  background: #e25750;
}

.hero-glow-two {
  width: 280px;
  height: 280px;

  left: -100px;
  bottom: -80px;

  background: #e8b475;
}


/* =========================================================
   10. HERO IMAGE
   ========================================================= */

.hero-image {
  position: relative;
  height: 100%;
  min-height: 480px;

  display: flex;
  align-items: stretch;

  overflow: hidden;

  border-radius: 28px 28px 0 0;

  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 480px;

  object-fit: cover;

  /* Move the image toward the right so the bulldog stays visible */
  object-position: 72% center;

  display: block;
}


/* =========================================================
   11. TRUST STRIP
   ========================================================= */

.trust-strip {
  position: relative;
  z-index: 5;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  padding: 20px 24px;

  background: #ffffff;

  border: 1px solid rgba(16, 40, 51, 0.07);
  border-radius: 18px;

  box-shadow: var(--shadow);

  transform: translateY(28px);
}

.trust-strip > div {
  display: flex;
  align-items: center;

  gap: 13px;

  padding: 0 20px;

  border-right: 1px solid var(--line);
}

.trust-strip > div:last-child {
  border: 0;
}

.trust-icon {
  font-size: 25px;
  font-weight: 900;
  color: var(--red);
}

.trust-strip p {
  margin: 0;
  line-height: 1.2;
}

.trust-strip strong {
  display: block;

  font-size: 14px;
}

.trust-strip small {
  display: block;

  margin-top: 5px;

  color: var(--muted);

  font-size: 11px;
}


/* =========================================================
   12. GENERAL SECTIONS
   ========================================================= */

.section {
  padding: 110px 0;
}

.section-soft {
  background: var(--soft);
}

.section-heading {
  max-width: 720px;

  margin-bottom: 45px;
}

.section-heading.centered {
  margin-inline: auto;

  text-align: center;
}

.section-heading h2,
.why-grid h2,
.contact-copy h2 {
  margin: 0 0 12px;

  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;

  letter-spacing: -2px;
}

.section-heading p {
  margin: 0;

  color: var(--muted);

  font-size: 17px;
}


/* =========================================================
   13. HOW IT WORKS
   ========================================================= */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}

.step {
  position: relative;

  padding: 28px 22px 24px;

  border-top: 1px solid var(--line);
}

.step > span {
  position: absolute;

  top: -17px;
  left: 22px;

  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  background: var(--red);
  color: #ffffff;

  border-radius: 50%;

  font-weight: 900;

  box-shadow: 0 8px 18px rgba(217, 54, 50, 0.22);
}

.step-icon {
  margin: 12px 0;
  color: var(--red);
  font-size: 35px;
}

.step h3 {
  margin: 0 0 10px;

  font-size: 18px;
  line-height: 1.15;
}

.step p {
  margin: 0;

  color: var(--muted);

  font-size: 14px;
}


/* Great Websites Banner */

.no-headaches {
  margin-top: 50px;
  padding: 27px 35px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  background: var(--ink);
  color: #ffffff;

  border-radius: var(--radius);
}

.no-headaches > div {
  display: flex;
  align-items: center;

  gap: 16px;
}

.no-headaches span {
  font-size: 35px;
  color: var(--accent-soft);
}

.no-headaches h3 {
  margin: 0;

  font-size: 24px;
}

.no-headaches p {
  max-width: 560px;

  margin: 0;

  color: var(--muted-on-dark);
}


/* =========================================================
   14. RECENT WORK
   ========================================================= */

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 26px;
}

.work-card {
  padding: 14px;

  background: #ffffff;

  border: 1px solid #e8ded4;
  border-radius: 20px;

  box-shadow: 0 8px 28px rgba(40, 35, 30, 0.06);

  transition:
    transform 0.22s,
    box-shadow 0.22s;
}

.work-card:hover {
  transform: translateY(-6px);

  box-shadow: var(--shadow);
}


/* Browser Mockup */

.browser {
  overflow: hidden;

  background: #ffffff;

  border: 1px solid #ded8d0;
  border-radius: 12px;
}

.browser-bar {
  height: 29px;

  display: flex;
  align-items: center;

  gap: 5px;

  padding: 0 9px;

  background: #eee9e3;
}

.browser-bar i {
  width: 7px;
  height: 7px;

  background: #b7ada4;

  border-radius: 50%;
}

.browser-bar span {
  margin-left: 7px;

  color: #776d65;

  font-size: 8px;
}

.site-preview {
  position: relative;
  height: 260px;
  overflow: hidden;
  padding: 0;
  background: #ffffff;
}

.site-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.45s ease;
}

.work-card:hover .site-preview img {
  transform: scale(1.025);
}

/* Portfolio Meta */

.work-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 15px;

  padding: 16px 8px 6px;
}

.work-meta h3 {
  margin: 0 0 2px;

  font-size: 18px;
}

.work-meta p {
  margin: 0;

  color: var(--muted);

  font-size: 12px;
}

.work-meta > span {
  color: var(--red);

  font-size: 12px;
  font-weight: 800;

  white-space: nowrap;
}


/* Portfolio CTA Card */

.work-cta {
  min-height: 310px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 35px;

  background: var(--ink);
  color: #ffffff;

  border-color: var(--ink);

  text-align: center;
}

.paw-big {
  font-size: 52px;
  color: var(--accent-soft);
}

.work-cta h3 {
  margin: 10px 0;

  font-size: 27px;
}

.work-cta p {
  max-width: 360px;

  margin: 0 0 20px;

  color: var(--muted-on-dark);
}

.text-link {
  color: var(--accent-soft);

  font-weight: 900;
}


/* =========================================================
   15. PRICING
   ========================================================= */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  align-items: stretch;

  gap: 22px;
}

.price-card {
  position: relative;

  padding: 34px;

  background: #ffffff;

  border: 1px solid var(--line);
  border-radius: 20px;

  box-shadow: 0 10px 35px rgba(45, 38, 32, 0.05);
}

.price-card.featured {
  border: 2px solid var(--red);

  box-shadow: 0 20px 45px rgba(217, 54, 50, 0.12);

  transform: translateY(-9px);
}

.popular {
  position: absolute;

  left: -2px;
  right: -2px;
  top: -2px;

  padding: 6px;

  background: var(--red);
  color: #ffffff;

  border-radius: 18px 18px 0 0;

  text-align: center;

  font-size: 10px;
  font-weight: 900;

  letter-spacing: 1px;
}

.featured .plan-name {
  margin-top: 14px;
}

.plan-name {
  margin: 0;

  font-size: 21px;
  font-weight: 950;
}

.plan-blurb {
  min-height: 42px;

  color: var(--muted);

  font-size: 13px;
}

.price {
  display: flex;
  align-items: baseline;

  gap: 4px;

  margin-top: 15px;
}

.price strong {
  font-size: 48px;
  line-height: 1;

  letter-spacing: -2px;
}

.price span {
  font-size: 14px;
}

.setup {
  margin: 7px 0 25px;

  color: var(--muted);

  font-size: 13px;
}

.price-card ul {
  margin: 0 0 28px;
  padding: 0;

  list-style: none;
}

.price-card li {
  position: relative;

  padding: 7px 0 7px 24px;

  border-bottom: 1px solid #f0eae4;

  font-size: 14px;
}

.price-card li::before {
  content: "✓";

  position: absolute;
  left: 0;

  color: var(--red);

  font-weight: 900;
}

.pricing-note {
  margin: 28px 0 0;

  color: var(--muted);

  text-align: center;

  font-size: 13px;
}


/* =========================================================
   16. WHY DAWGSWEB
   ========================================================= */

.section-dark {
  background: var(--ink);
  color: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;

  align-items: center;

  gap: 90px;
}

.why-grid > div:first-child > p {
  margin-bottom: 25px;

  color: #c2cdd1;

  font-size: 17px;
}

.eyebrow-light {
  color: var(--accent-soft);
}

.why-list {
  display: grid;

  gap: 14px;
}

.why-list > div {
  display: flex;

  gap: 16px;

  padding: 18px;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

.why-list > div > span {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;

  display: grid;
  place-items: center;

  background: var(--red);

  border-radius: 50%;

  font-weight: 900;
}

.why-list p {
  margin: 0;
}

.why-list strong {
  display: block;
}

.why-list small {
  display: block;

  margin-top: 3px;

  color: #b7c4c9;
}


/* =========================================================
   17. FAQ
   ========================================================= */

.faq-wrap {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;

  gap: 70px;
}

.faq-list {
  display: grid;

  gap: 10px;
}

.faq-list details {
  padding: 0 20px;

  background: #ffffff;

  border: 1px solid var(--line);
  border-radius: 14px;
}

.faq-list summary {
  position: relative;

  padding: 18px 35px 18px 0;

  cursor: pointer;

  font-weight: 850;

  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";

  position: absolute;

  right: 0;
  top: 13px;

  color: var(--red);

  font-size: 25px;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin: 0 0 18px;

  color: var(--muted);

  font-size: 14px;
}


/* =========================================================
   18. CONTACT
   ========================================================= */

.contact-section {
  background:
    linear-gradient(
      135deg,
      #f8f2e9,
      #efe1d1
    );
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;

  align-items: start;

  gap: 70px;
}

.contact-copy > p {
  max-width: 510px;

  color: var(--muted);

  font-size: 18px;
}

.contact-promise {
  display: flex;
  align-items: center;

  gap: 15px;

  margin-top: 35px;
}

.contact-promise span {
  font-size: 44px;
  color: var(--red);
}

.contact-promise p {
  margin: 0;
}


/* Contact Form */

.contact-form {
  display: grid;

  gap: 16px;

  padding: 35px;

  background: #ffffff;

  border-radius: var(--radius);

  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 15px;
}

.contact-form label {
  display: grid;

  gap: 6px;

  font-size: 12px;
  font-weight: 850;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;

  padding: 12px 13px;

  background: #ffffff;
  color: var(--ink);

  border: 1px solid #d9d0c7;
  border-radius: 10px;

  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--red);

  box-shadow: 0 0 0 3px rgba(217, 54, 50, 0.1);
}

.form-note {
  margin: 0;

  color: var(--muted);

  text-align: center;

  font-size: 11px;
}


/* =========================================================
   19. FOOTER
   ========================================================= */

.footer {
  padding: 60px 0 22px;

  background: #0b1c23;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 1fr;

  gap: 60px;
}

.footer .brand {
  display: inline-grid;
}


/* Footer Image Logo */

.footer-brand img {
  width: auto;
  height: 65px;

  object-fit: contain;
}

.footer-grid > div > p {
  max-width: 430px;

  color: #9eafb5;

  font-size: 13px;
}

.footer h3 {
  margin: 0 0 14px;

  font-size: 13px;

  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid a:not(.brand) {
  margin: 3px 0;

  color: #c8d2d6;

  font-size: 13px;
}

.footer-grid a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;

  gap: 20px;

  margin-top: 45px;
  padding-top: 18px;

  color: #81949c;

  border-top: 1px solid rgba(255, 255, 255, 0.09);

  font-size: 10px;
}



/* =========================================================
   COLOR / CONTRAST SAFEGUARDS
   Keeps icons and text readable on every section background.
   ========================================================= */

.section:not(.section-dark),
.price-card,
.work-card,
.faq-list details,
.contact-form {
  color: var(--ink);
}

.section-dark h2,
.section-dark h3,
.section-dark strong {
  color: var(--text-on-dark);
}

.section-dark .why-list > div > span {
  color: var(--icon-on-red);
}

.no-headaches h3 {
  color: var(--text-on-dark);
}

.price-card .plan-name,
.price-card .price,
.price-card li,
.work-meta h3,
.faq-list summary,
.contact-form label {
  color: var(--ink);
}

.trust-strip strong {
  color: var(--ink);
}

.trust-strip small,
.step p,
.section-heading p,
.work-meta p,
.plan-blurb,
.setup,
.pricing-note,
.faq-list details p,
.contact-copy > p,
.form-note {
  color: var(--muted);
}

/* =========================================================
   20. SCROLL REVEAL ANIMATION
   ========================================================= */

.reveal {
  opacity: 0;

  transform: translateY(18px);

  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;

  transform: none;
}


/* =========================================================
   21. TABLET
   ========================================================= */

@media (max-width: 960px) {

  /* Navigation */

  .site-nav {
    position: absolute;

    top: 78px;
    left: 20px;
    right: 20px;

    display: none;
    flex-direction: column;
    align-items: stretch;

    gap: 14px;

    padding: 20px;

    background: #ffffff;

    border: 1px solid var(--line);
    border-radius: 16px;

    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav .btn {
    margin-top: 5px;
  }

  .nav-toggle {
    display: block;
  }


  /* Hero */

  .hero {
    padding-top: 55px;
  }

  .hero-grid {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .hero-copy {
    padding-bottom: 10px;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

.hero-image {
  width: 100%;
  max-width: 760px;
  min-height: 400px;

  margin-inline: auto;

  border-radius: 24px;
}

.hero-image img {
  min-height: 400px;
}


  /* Trust Strip */

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip > div {
    padding: 15px;

    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }


  /* How It Works */

  .steps {
    grid-template-columns: 1fr 1fr;

    gap: 35px 15px;
  }


  /* Recent Work */

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


  /* Pricing */

  .pricing-grid {
    grid-template-columns: 1fr;

    max-width: 620px;

    margin-inline: auto;
  }

  .price-card.featured {
    transform: none;
  }


  /* Other Layouts */

  .why-grid,
  .faq-wrap,
  .contact-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }


  /* Footer */

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}


/* =========================================================
   22. MOBILE
   ========================================================= */

@media (max-width: 680px) {

  .container {
    width: min(calc(100% - 28px), var(--max));
  }


  /* Header / Logo */

  .brand small {
    display: none;
  }

  .brand {
    grid-template-rows: auto;
  }

  .brand-paw {
    grid-row: auto;
  }

  .brand-name {
    font-size: 24px;
  }

  .brand-logo img {
    height: 55px;
    max-width: 275px;
  }

  .nav-wrap {
    height: 76px;
  }

  .site-nav {
    top: 76px;
  }


  /* Hero */

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: 43px;

    letter-spacing: -2.5px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }


  /* Mascot */

.hero-image {
  min-height: 300px;

  margin-top: 15px;

  border-radius: 20px;
}

.hero-image img {
  min-height: 300px;

  object-position: 62% center;
}


  /* Trust Strip */

  .trust-strip {
    grid-template-columns: 1fr;

    transform: translateY(22px);
  }

  .trust-strip > div {
    border-bottom: 1px solid var(--line) !important;
  }

  .trust-strip > div:last-child {
    border-bottom: 0 !important;
  }


  /* General Sections */

  .section {
    padding: 82px 0;
  }

  .section-heading h2,
  .why-grid h2,
  .contact-copy h2 {
    letter-spacing: -1.5px;
  }


  /* How It Works */

  .steps {
    grid-template-columns: 1fr;

    gap: 34px;
  }

  .no-headaches {
    flex-direction: column;
    align-items: flex-start;
  }


  /* Recent Work */

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

  .site-preview {
    height: 180px;
  }


  /* Pricing */

  .price-card {
    padding: 28px 24px;
  }


  /* Contact */

  .field-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px 18px;
  }


  /* Footer */

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom p {
    margin: 0;
  }
}


/* =========================================================
   23. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;

    transform: none;

    transition: none;
  }

  .btn,
  .work-card {
    transition: none;
  }
}
