/* Fargo Print Company — Printify-matched theme */
:root {
  --primary: #ff4838;
  --primary-dark: #e63d2e;
  --yellow: #ffd15c;
  --yellow-hover: #ffc327;
  --dark: #1c1e22;
  --dark-2: #272c3f;
  --heading: #1c1e22;
  --text: #838d9e;
  --text-dark: #6a737c;
  --blue: #5b8def;
  --blue-soft: #eaf1ff;
  --gray-bg: #f4f5f8;
  --white: #ffffff;
  --border: #eceef3;
  --shadow: 0 10px 40px rgba(28, 30, 34, 0.08);
  --radius: 8px;
  --container: 1200px;
  --font: "Rubik", sans-serif;
  --script: "Shadows Into Light", cursive;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.container-wide {
  width: min(100% - 40px, 1320px);
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.section-sm {
  padding: 80px 0;
}

.section-gray {
  background: var(--gray-bg);
}

.script {
  font-family: var(--script);
  color: var(--primary);
  font-size: 28px;
  line-height: 1.2;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.25;
  margin-bottom: 18px;
}

.section-title.white,
.white {
  color: var(--white);
}

.lead {
  font-size: 16px;
  color: var(--text);
  max-width: 560px;
}

.text-center {
  text-align: center;
}

.text-center .lead {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  border-radius: 6px;
  padding: 16px 36px;
  transition: 0.3s;
}

.btn-yellow {
  background: var(--yellow);
  color: var(--heading);
}

.btn-yellow:hover {
  background: var(--yellow-hover);
  color: var(--heading);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--heading);
}

.btn-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.3s;
}

.btn-circle:hover {
  background: var(--heading);
  color: var(--white);
}

.btn-circle.lg {
  width: 64px;
  height: 64px;
  font-size: 20px;
}

.btn-circle.yellow {
  background: var(--yellow);
  color: var(--heading);
}

.btn-circle.yellow:hover {
  background: var(--white);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}

.site-header.sticky {
  position: fixed;
  animation: slideDown 0.35s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand img.logo-full {
  height: 52px;
  width: auto;
}

.brand-text {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav a {
  color: var(--heading);
  font-weight: 500;
  font-size: 16px;
  padding: 8px 14px;
  position: relative;
}

.nav a::after {
  content: "•";
  color: #c5c9d3;
  margin-left: 14px;
  font-size: 10px;
  position: relative;
  top: -2px;
}

.nav li:last-child a::after {
  display: none;
}

.nav a:hover,
.nav a.active {
  color: var(--primary);
}

.header-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 15px;
}

.social-dot.twitter {
  background: var(--yellow);
  color: var(--heading);
}

.social-dot.pinterest {
  background: var(--dark);
}

.social-dot.facebook {
  background: #3b5998;
}

.social-dot.youtube {
  background: var(--primary);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 6px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--heading);
  display: block;
}

/* Page banner */
.page-banner {
  background: var(--gray-bg);
  padding: 72px 0;
}

.page-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.page-banner h1 {
  font-size: 56px;
  color: var(--heading);
  font-weight: 700;
  line-height: 1.1;
}

.breadcrumb-pill {
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  padding: 16px 34px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.breadcrumb-pill a:hover {
  color: var(--yellow);
}

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 30, 34, 0.72) 0%, rgba(28, 30, 34, 0.28) 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 720px;
  padding: 80px 0;
}

.hero-content .script {
  color: var(--yellow);
  font-size: 32px;
}

.hero-content h1 {
  font-size: 68px;
  font-weight: 700;
  line-height: 1.08;
  margin: 10px 0 28px;
  color: var(--white);
}

.hero-dots {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
}

.hero-dots button.active {
  background: var(--primary);
  border-color: var(--primary);
}

/* About split / Dream it */
.about-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.photo-collage {
  position: relative;
  min-height: 480px;
}

.photo-collage img {
  object-fit: cover;
  border-radius: 6px;
}

.photo-collage .p1 {
  width: 58%;
  height: 300px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.photo-collage .p2 {
  width: 48%;
  height: 240px;
  position: absolute;
  top: 40px;
  right: 0;
}

.photo-collage .p3 {
  width: 52%;
  height: 220px;
  position: absolute;
  bottom: 0;
  left: 18%;
  z-index: 3;
}

.about-copy p {
  margin-bottom: 28px;
}

/* Feature cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px 32px 32px;
  position: relative;
  transition: 0.3s;
}

.feature-card:hover {
  box-shadow: var(--shadow);
  border-color: transparent;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  color: var(--blue);
}

.feature-card h3 {
  color: var(--heading);
  font-size: 22px;
  margin-bottom: 12px;
}

.feature-card p {
  margin-bottom: 20px;
}

.feature-card .btn-circle {
  position: absolute;
  right: 24px;
  bottom: -22px;
}

/* Testimonials */
.testimonials {
  background: var(--dark);
  padding: 90px 0;
  position: relative;
}

.testimonials-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.testimonials blockquote {
  font-size: 32px;
  line-height: 1.45;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 22px;
}

.testimonials .who {
  font-family: var(--script);
  color: var(--yellow);
  font-size: 28px;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fade 0.5s ease;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Quote with photo */
.quote-split {
  display: grid;
  grid-template-columns: 340px 1fr;
  background: var(--dark);
}

.quote-split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.quote-split .quote-body {
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-split blockquote {
  color: var(--white);
  font-size: 28px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 18px;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.faq-photo {
  position: relative;
}

.faq-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 6px;
}

.faq-photo .live-chat {
  position: absolute;
  left: 24px;
  bottom: 24px;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 40px 20px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--heading);
  cursor: pointer;
  position: relative;
}

.accordion-btn::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 18px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  text-align: center;
  font-size: 18px;
  line-height: 28px;
}

.accordion-btn.open::after {
  content: "−";
}

.accordion-panel {
  display: none;
  padding: 0 40px 18px 0;
  color: var(--text);
}

.accordion-panel.open {
  display: block;
}

/* Orange CTA */
.cta-band {
  background: var(--primary);
  padding: 80px 0;
  color: var(--white);
}

.cta-band h2 {
  font-size: 46px;
  color: var(--white);
  margin-bottom: 18px;
}

.cta-band ul {
  margin: 18px 0 28px;
}

.cta-band li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 6px;
}

.cta-band li::before {
  content: "•";
  position: absolute;
  left: 0;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.team-card {
  position: relative;
  overflow: hidden;
}

.team-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.team-card .meta {
  padding: 18px 8px 8px;
}

.team-card h3 {
  color: var(--heading);
  font-size: 20px;
}

.team-card span {
  color: var(--primary);
  font-size: 14px;
}

.team-card .btn-circle {
  position: absolute;
  right: 16px;
  bottom: 78px;
}

.team-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--gray-bg);
  margin-top: 40px;
  min-height: 420px;
}

.team-slide {
  display: none;
}

.team-slide.active {
  display: grid;
}

.team-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.team-featured .bio {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-featured h3 {
  font-size: 32px;
  color: var(--heading);
}

.team-nav {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.team-nav button {
  width: 48px;
  height: 48px;
  border: none;
  background: #d9dce3;
  color: var(--heading);
  cursor: pointer;
}

.team-nav button.active,
.team-nav button:hover {
  background: var(--primary);
  color: var(--white);
}

/* Explore services */
.explore {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.service-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.service-icon-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 20px;
  text-align: center;
  transition: 0.3s;
}

.service-icon-card:hover,
.service-icon-card.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.service-icon-card:hover svg,
.service-icon-card.active svg {
  stroke: var(--white);
}

.service-icon-card h4 {
  margin-top: 12px;
  font-size: 16px;
  color: inherit;
}

.service-icon-card svg {
  stroke: var(--blue);
}

.guidelines {
  margin-top: 28px;
  background: var(--gray-bg);
  padding: 24px;
}

.guidelines h4 {
  color: var(--heading);
  margin-bottom: 10px;
}

.file-types {
  display: flex;
  gap: 18px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.file-types span {
  font-weight: 700;
  color: var(--heading);
  font-size: 13px;
  text-transform: uppercase;
}

/* Colors CTA */
.color-cta {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.color-cta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.color-cta .copy {
  background: var(--dark);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.color-cta h2 {
  font-size: 46px;
  color: var(--white);
  margin: 8px 0 18px;
}

/* Projects */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.project-card {
  position: relative;
  overflow: hidden;
}

.project-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: 0.4s;
}

.project-card:hover img {
  transform: scale(1.06);
}

.project-card .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--white);
}

.project-card .cap span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-card .cap h3 {
  font-size: 22px;
}

.project-card .btn-circle {
  position: absolute;
  right: 18px;
  bottom: 18px;
}

/* About 3 cards */
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about-card {
  background: var(--white);
}

.about-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.about-card .body {
  padding: 28px 24px 40px;
  position: relative;
}

.about-card h3 {
  color: var(--heading);
  font-size: 22px;
  margin-bottom: 10px;
}

.about-card .btn-circle {
  position: absolute;
  right: 20px;
  bottom: -22px;
}

/* Dual tone */
.dual-tone {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.dual-tone .left {
  background: var(--primary);
  color: var(--white);
  padding: 90px 70px;
}

.dual-tone .left h2 {
  font-size: 40px;
  color: var(--white);
  margin: 8px 0 18px;
}

.dual-tone .right {
  min-height: 460px;
  background-size: cover;
  background-position: center;
}

.stats-card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  padding: 32px 36px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 36px;
  z-index: 2;
}

.stat {
  text-align: center;
}

.progress-ring {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  background: conic-gradient(var(--blue) calc(var(--p) * 1%), #e8eefc 0);
}

.progress-ring span {
  width: 82px;
  height: 82px;
  background: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--heading);
  font-size: 18px;
}

.stat h4 {
  color: var(--heading);
  font-size: 15px;
}

/* Service selector */
.service-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.service-tab {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 12px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.service-tab svg {
  stroke: var(--blue);
  margin: 0 auto 12px;
}

.service-tab h4 {
  color: var(--heading);
  font-size: 15px;
}

.service-tab.active,
.service-tab:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.service-tab.active h4,
.service-tab:hover h4 {
  color: var(--white);
}

.service-tab.active svg,
.service-tab:hover svg {
  stroke: var(--white);
}

.service-detail {
  max-width: 760px;
  margin: 70px auto 0;
  text-align: center;
}

.service-detail h2 {
  font-size: 40px;
  color: var(--heading);
}

.service-panels .panel {
  display: none;
}

.service-panels .panel.active {
  display: block;
}

/* Unique features banner */
.unique-features {
  background: var(--primary);
  padding: 80px 0;
  margin-top: 70px;
}

.unique-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.unique-inner h2 {
  font-size: 42px;
  color: var(--white);
  margin: 8px 0 14px;
}

.unique-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.unique-cards article {
  background: var(--white);
  overflow: hidden;
}

.unique-cards img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.unique-cards h4 {
  padding: 14px;
  color: var(--heading);
  text-align: center;
}

/* What we do split */
.wwd-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.wwd-photo {
  position: relative;
}

.wwd-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.wwd-photo .overlay-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: var(--white);
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wwd-photo .overlay-card h3 {
  color: var(--heading);
  font-size: 22px;
}

.wwd-list article {
  display: grid;
  grid-template-columns: 1fr 90px;
  gap: 16px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.wwd-list h3 {
  color: var(--heading);
  font-size: 20px;
  margin-bottom: 6px;
}

.wwd-list img {
  width: 90px;
  height: 90px;
  object-fit: cover;
}

/* Partners */
.partners {
  background: var(--primary);
  padding: 40px 0;
}

.partners-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0.92;
  font-size: 20px;
}

.partners-row span {
  font-family: var(--font);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 42px 32px 36px;
  text-align: center;
  transition: 0.3s;
}

.price-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.price-card .plan {
  font-family: var(--script);
  color: var(--primary);
  font-size: 26px;
}

.price-card .amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--heading);
  margin: 6px 0 18px;
}

.price-card .ico {
  color: var(--blue);
  margin: 10px auto 22px;
}

.price-card ul {
  margin-bottom: 28px;
}

.price-card li {
  padding: 8px 0;
  color: var(--text);
}

/* Contact */
.contact-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  box-shadow: var(--shadow);
  background: var(--white);
}

.contact-form-wrap {
  background: var(--gray-bg);
  padding: 60px 50px;
}

.contact-details {
  padding: 60px 50px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid transparent;
  background: var(--white);
  border-radius: 50px;
  padding: 16px 22px;
  font-size: 15px;
  color: var(--heading);
  outline: none;
  appearance: none;
}

.form-group textarea {
  border-radius: 24px;
  min-height: 140px;
  resize: vertical;
}

.form-group select {
  background-color: var(--white);
  background-image: linear-gradient(45deg, transparent 50%, #838d9e 50%), linear-gradient(135deg, #838d9e 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: var(--primary);
  background: #fff5f4;
}

.error-text {
  display: none;
  color: var(--primary);
  font-size: 13px;
  margin-top: 6px;
  padding-left: 8px;
}

.form-group.error .error-text {
  display: block;
}

.form-success {
  display: none;
  background: #e8f8ee;
  color: #1d7a46;
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 16px;
  font-weight: 500;
}

.form-success.show {
  display: block;
}

.detail-block {
  margin-bottom: 26px;
}

.detail-block h4 {
  color: var(--heading);
  margin-bottom: 6px;
}

.detail-social {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

/* Legal / long content */
.legal {
  max-width: 860px;
  margin: 0 auto;
}

.legal h2 {
  color: var(--heading);
  font-size: 28px;
  margin: 36px 0 12px;
}

.legal h3 {
  color: var(--heading);
  font-size: 20px;
  margin: 24px 0 8px;
}

.legal p,
.legal li {
  margin-bottom: 14px;
}

.legal ul,
.legal ol {
  padding-left: 22px;
  margin-bottom: 16px;
}

.legal ul li,
.legal ol li {
  list-style: disc;
}

.legal ol li {
  list-style: decimal;
}

/* Subscribe pages */
.subscribe-box {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 50px 40px;
  text-align: center;
}

.subscribe-box p {
  margin-bottom: 24px;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: #9aa0a8;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 1.1fr;
  gap: 40px;
}

.site-footer h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 22px;
}

.site-footer p {
  margin-bottom: 18px;
}

.footer-links a {
  display: block;
  padding: 5px 0;
  color: #9aa0a8;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-posts article {
  margin-bottom: 16px;
}

.footer-posts time {
  color: var(--primary);
  font-size: 13px;
  display: block;
}

.footer-posts a {
  color: var(--white);
  font-weight: 500;
}

.newsletter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
}

.newsletter .form-success {
  flex: 1 1 100%;
}

.newsletter .form-group {
  flex: 1;
  margin-bottom: 0;
}

.newsletter input {
  flex: 1;
  background: #2a2d33;
  border: 1px solid #35383f;
  color: var(--white);
  padding: 14px 18px;
  border-radius: 4px;
  outline: none;
}

.newsletter input:focus {
  border-color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid #2c3036;
  margin-top: 50px;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 14px;
}

.footer-legal a:hover {
  color: var(--yellow);
}

/* Utility */
.mt-20 {
  margin-top: 20px;
}
.mb-10 {
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 1100px) {
  .about-split,
  .faq-grid,
  .explore,
  .wwd-split,
  .unique-inner,
  .contact-card,
  .quote-split,
  .team-featured,
  .color-cta,
  .dual-tone {
    grid-template-columns: 1fr;
  }

  .stats-card {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: -40px auto 0;
    width: max-content;
    max-width: calc(100% - 32px);
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .page-banner h1 {
    font-size: 40px;
  }

  .team-grid,
  .project-grid,
  .feature-grid,
  .about-cards,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .photo-collage {
    min-height: 380px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav,
  .header-social {
    display: none;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: static;
    width: 100%;
    background: var(--white);
    padding: 8px 0 16px;
    box-shadow: none;
    align-items: flex-start;
  }

  .nav.open a::after {
    display: none;
  }

  .header-social.open {
    display: flex;
    position: static;
    width: 100%;
    padding: 0 0 16px;
    background: var(--white);
  }

  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 70px 0;
  }

  .hero {
    min-height: 520px;
  }

  .hero-content h1,
  .section-title,
  .cta-band h2,
  .color-cta h2 {
    font-size: 34px;
  }

  .testimonials blockquote,
  .quote-split blockquote {
    font-size: 22px;
  }

  .team-grid,
  .project-grid,
  .feature-grid,
  .about-cards,
  .pricing-grid,
  .service-tabs,
  .unique-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-banner-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form-wrap,
  .contact-details,
  .dual-tone .left,
  .color-cta .copy,
  .quote-split .quote-body,
  .team-featured .bio {
    padding: 36px 24px;
  }

  .photo-collage {
    min-height: 300px;
  }

  .photo-collage .p1,
  .photo-collage .p2,
  .photo-collage .p3 {
    height: 160px;
  }

  .stats-card {
    flex-direction: column;
    width: calc(100% - 32px);
  }

  .brand img.logo-full {
    height: 42px;
  }
}
