:root {
  --orange: #ff4c1c;
  --orange-dark: #e53e12;
  --teal: #1ecad3;
  --teal-dark: #16b4bc;
  --dark: #1d1d21;
  --dark-2: #252529;
  --heading: #1d1d21;
  --body: #6b6b6b;
  --muted: #8a8a8a;
  --white: #ffffff;
  --gray-bg: #f3f7f8;
  --line: #e6e8eb;
  --yellow: #fff4cc;
  --mint: #dff7ee;
  --peach: #ffe4d6;
  --lavender: #ece4ff;
  --shadow: 0 12px 40px rgba(29, 29, 33, 0.08);
  --radius: 8px;
  --header-h: 92px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--body);
  background: var(--white);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 16px;
}

p {
  margin: 0 0 16px;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-sm {
  padding: 72px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-label--bar::before {
  content: "";
  width: 4px;
  height: 22px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(28px, 3.2vw, 42px);
  max-width: 640px;
}

.section-lead {
  max-width: 560px;
  color: var(--body);
}

.text-center {
  text-align: center;
}

.text-center .section-title,
.text-center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 12px 28px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
  transition: 0.2s ease;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn-teal:hover {
  background: var(--teal-dark);
  color: var(--white);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn-dark:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}

.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-link {
  color: var(--orange);
  font-weight: 600;
  padding: 0;
  min-height: auto;
  background: none;
  border: 0;
}

.btn-link:hover {
  color: var(--heading);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 18px rgba(29, 29, 33, 0.06);
}

.site-header--dark {
  background: var(--dark);
  box-shadow: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  object-fit: cover;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.brand-name span {
  color: var(--orange);
}

.site-header .brand-name {
  color: var(--heading);
}

.site-header--dark .brand-name {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: inherit;
  font-size: 22px;
  cursor: pointer;
}

.site-header--dark .nav-toggle {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--heading);
}

.site-header--dark .main-nav a {
  color: var(--white);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--heading);
  font-size: 18px;
  cursor: pointer;
}

.site-header--dark .icon-btn {
  color: var(--white);
}

.icon-btn:hover {
  color: var(--orange);
}

/* Page hero (inner) */
.page-hero {
  background: var(--dark);
  color: #cfcfd4;
  padding: 90px 0 100px;
  overflow: hidden;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(40px, 5vw, 64px);
  margin-bottom: 18px;
}

.page-hero p {
  max-width: 460px;
  margin-bottom: 22px;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 4px;
}

.breadcrumb a {
  color: var(--white);
}

.hero-frame {
  position: relative;
  display: inline-block;
}

.hero-frame img {
  width: 100%;
  max-width: 520px;
  height: 340px;
  object-fit: cover;
  border-radius: 4px;
}

.sq {
  position: absolute;
  width: 28px;
  height: 28px;
  background: var(--orange);
  z-index: 2;
}

.sq.white {
  background: var(--white);
}

.sq-tl { top: -12px; left: -12px; }
.sq-tr { top: -12px; right: -12px; }
.sq-bl { bottom: -12px; left: -12px; }
.sq-br { bottom: -12px; right: 28px; }

/* Home pastel wrap */
.home-wrap {
  background:
    radial-gradient(900px 420px at 8% 8%, rgba(30, 202, 211, 0.12), transparent 60%),
    radial-gradient(800px 380px at 92% 12%, rgba(255, 76, 28, 0.1), transparent 55%),
    radial-gradient(700px 360px at 50% 55%, rgba(176, 150, 255, 0.1), transparent 60%),
    #fff;
}

.home-hero {
  padding: 70px 0 90px;
}

.home-hero h1 {
  font-size: clamp(36px, 4.6vw, 58px);
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}

.eyebrow {
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-visual {
  position: relative;
  min-height: 460px;
}

.hero-main {
  width: 86%;
  margin-left: auto;
  height: 430px;
  object-fit: cover;
  border-radius: 40px 40px 120px 40px;
  box-shadow: var(--shadow);
}

.hero-sub {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 46%;
  height: 180px;
  object-fit: cover;
  border-radius: 24px;
  border: 8px solid #fff;
  box-shadow: var(--shadow);
}

.check-list {
  margin: 22px 0 28px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: var(--heading);
  font-weight: 500;
}

.check-list li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  color: var(--orange);
  position: absolute;
  left: 0;
  top: 0;
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.about-photos img {
  height: 280px;
  width: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.about-photos img:last-child {
  margin-top: 40px;
}

/* Service cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.service-card {
  border-radius: 18px;
  padding: 32px 26px 28px;
  min-height: 280px;
}

.service-card.yellow { background: var(--yellow); }
.service-card.mint { background: var(--mint); }
.service-card.peach { background: var(--peach); }
.service-card.lavender { background: var(--lavender); }

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 24px;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(29, 29, 33, 0.06);
}

.service-card h3 {
  font-size: 20px;
}

.service-card p {
  font-size: 14.5px;
}

/* Dual CTA */
.dual-cta {
  background: var(--dark) url("../images/office-banner.png") center/cover no-repeat;
  position: relative;
}

.dual-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 22, 0.72);
}

.dual-cta .container {
  position: relative;
  z-index: 1;
}

.cta-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cta-box {
  border-radius: 10px;
  padding: 48px 40px;
  color: var(--white);
  min-height: 230px;
}

.cta-box h2,
.cta-box p {
  color: var(--white);
}

.cta-box.navy {
  background: linear-gradient(135deg, rgba(20, 48, 58, 0.92), rgba(16, 32, 40, 0.88));
}

.cta-box.sunset {
  background: linear-gradient(135deg, #ff6a3d, #ff4c1c 55%, #ff7a55);
}

/* Process */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
  position: relative;
}

.process-row::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  border-top: 2px dotted #d7dbe0;
  z-index: 0;
}

.process-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid #eceff2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 26px;
  box-shadow: var(--shadow);
}

.process-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

/* Stats */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 28px;
}

.stat-item {
  background: var(--white);
  border-radius: 12px;
  padding: 18px 16px 14px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.stat-item i {
  color: var(--orange);
  font-size: 26px;
}

.stat-item strong {
  display: block;
  color: var(--heading);
  font-size: 26px;
  line-height: 1.1;
}

.stat-item strong span {
  color: var(--orange);
}

.framed-photo {
  position: relative;
  max-width: 460px;
  margin-left: auto;
}

.framed-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 180px 180px 40px 180px;
}

/* Pricing */
.pricing-band {
  background: var(--dark) url("../images/office-banner.png") center/cover no-repeat;
  position: relative;
}

.pricing-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 24, 0.82);
}

.pricing-band .container {
  position: relative;
  z-index: 1;
}

.pricing-band .section-label,
.pricing-band .section-title,
.pricing-band .section-lead {
  color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.price-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px 32px;
  position: relative;
  box-shadow: var(--shadow);
}

.price-card.featured {
  transform: translateY(-12px);
  border-top: 6px solid var(--orange);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.price-card h3 {
  font-size: 20px;
}

.price {
  font-size: 40px;
  color: var(--orange);
  font-weight: 700;
  margin: 8px 0 12px;
}

.price small {
  font-size: 16px;
  color: var(--body);
  font-weight: 500;
}

.price-card li {
  padding: 8px 0 8px 26px;
  position: relative;
  border-bottom: 1px solid #f1f2f4;
}

.price-card li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  color: var(--orange);
  position: absolute;
  left: 0;
}

.price-card .btn {
  width: 100%;
  margin-top: 22px;
}

/* Testimonials */
.quote-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}

.stars {
  color: #f5b400;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.quote-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.quote-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.quote-user strong {
  display: block;
  color: var(--heading);
}

.testimonial-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
}

/* Logos */
.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 48px;
  margin-top: 18px;
}

.wordmark {
  font-weight: 700;
  font-size: 22px;
  color: #b7bdc4;
  letter-spacing: 0.4px;
}

/* Contact overlay */
.contact-band {
  background: var(--dark) url("../images/office-banner.png") center/cover no-repeat;
  position: relative;
}

.contact-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 16, 20, 0.78);
}

.contact-band .container {
  position: relative;
  z-index: 1;
}

.contact-band h2,
.contact-band .section-label {
  color: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-control,
.form-select,
textarea.form-control {
  width: 100%;
  border: 1px solid #e4e7ea;
  background: var(--white);
  border-radius: 6px;
  min-height: 54px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--heading);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.form-control:focus,
textarea.form-control:focus {
  outline: 2px solid rgba(255, 76, 28, 0.35);
  border-color: var(--orange);
}

.field-error {
  display: none;
  color: #e11d48;
  font-size: 13px;
  margin-top: 6px;
}

.field-error.show {
  display: block;
}

.is-invalid {
  border-color: #e11d48 !important;
}

.form-success {
  display: none;
  background: #e8fff4;
  border: 1px solid #9ae6b4;
  color: #146c43;
  padding: 16px 18px;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 16px;
}

.form-success.show {
  display: block;
}

.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
}

/* Footer */
.site-footer {
  background: var(--gray-bg);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.site-footer .brand-name {
  color: var(--heading);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  width: 38px;
  height: 38px;
  border: 1px solid #d5d8dc;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading);
}

.socials a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.footer-title {
  font-size: 18px;
  margin-bottom: 18px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--body);
}

.footer-links a:hover {
  color: var(--orange);
}

.form-check input[type="checkbox"] {
  margin-top: 5px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.newsletter-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.newsletter-row .form-control {
  border-radius: 4px 0 0 4px;
  border-right: 0;
}

.newsletter-row .btn {
  min-height: 54px;
  border-radius: 0 4px 4px 0;
  padding: 0 18px;
}

.footer-bottom {
  border-top: 1px solid #e2e5e8;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.legal-links a:hover {
  color: var(--orange);
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  box-shadow: 0 8px 20px rgba(255, 76, 28, 0.35);
}

.back-top:hover {
  color: var(--white);
  background: var(--orange-dark);
}

/* Inner content helpers */
.bg-gray { background: var(--gray-bg); }
.bg-white { background: var(--white); }
.bg-dark {
  background: var(--dark);
  color: #cfcfd4;
}
.bg-dark h2,
.bg-dark h3,
.bg-dark .section-title {
  color: var(--white);
}

.feature-card,
.info-card,
.blog-card,
.team-card,
.benefit-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.info-card,
.benefit-card {
  padding: 32px 26px;
  height: 100%;
}

.info-card i,
.benefit-card i {
  font-size: 32px;
  color: var(--orange);
  margin-bottom: 12px;
  display: inline-block;
}

.counter-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 28px 20px;
  text-align: center;
  height: 100%;
}

.counter-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #fff3ee;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.counter-card h3 {
  font-size: 32px;
  margin-bottom: 4px;
}

.counter-card h3 span {
  color: var(--orange);
}

.search-bar > div {
  flex: 1;
}

.search-bar {
  display: flex;
  width: 100%;
  max-width: 620px;
  align-items: flex-start;
}

.search-bar .form-control {
  border-radius: 4px 0 0 4px;
  border-right: 0;
}

.search-bar .btn {
  border-radius: 0 4px 4px 0;
  white-space: nowrap;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.why-item i {
  font-size: 28px;
  color: var(--orange);
  margin-bottom: 10px;
  display: block;
}

.why-item h3 {
  color: var(--white);
  font-size: 20px;
}

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-card .body {
  padding: 18px 16px 22px;
  text-align: center;
}

.team-card h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog-card .body {
  padding: 22px 22px 24px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 10px;
}

.blog-meta i {
  color: var(--orange);
  margin-right: 4px;
}

.blog-card h3 {
  font-size: 20px;
}

.blog-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

.article {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.article img.cover {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 28px;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 32px;
}

.legal-content h3 {
  font-size: 18px;
  margin-top: 22px;
}

.narrow-form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  padding: 36px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.services-feature {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 28px;
}

.services-feature img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.play-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

/* Search modal */
.search-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2000;
  align-items: flex-start;
  justify-content: center;
  padding-top: 140px;
}

.search-modal.open {
  display: flex;
}

.search-modal .panel {
  width: min(560px, calc(100% - 32px));
  background: var(--white);
  border-radius: 10px;
  padding: 24px;
}

.nav-open .main-nav {
  display: flex;
}

@media (max-width: 1199px) {
  .service-grid,
  .process-row,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-row::before {
    display: none;
  }
}

@media (max-width: 991px) {
  .nav-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 8px;
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
  }
  .header-actions {
    margin-left: auto;
  }
  .header-actions .btn {
    display: none;
  }
  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    background: inherit;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px 24px;
    gap: 14px;
    box-shadow: var(--shadow);
  }
  .nav-open .main-nav {
    display: flex;
  }
  .site-header {
    position: sticky;
  }
  .header-inner {
    flex-wrap: nowrap;
    position: relative;
  }
  .brand-name {
    font-size: 17px;
    white-space: nowrap;
  }
  .nav-toggle {
    flex-shrink: 0;
    margin-left: 8px;
  }
  .about-photos,
  .cta-pair,
  .stat-grid,
  .form-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .about-photos img:last-child {
    margin-top: 0;
  }
  .hero-visual {
    min-height: 0;
    margin-top: 32px;
  }
  .hero-main {
    width: 100%;
    height: 340px;
  }
  .hero-sub {
    width: 48%;
    height: 140px;
  }
  .framed-photo {
    margin: 32px auto 0;
  }
  .price-card.featured {
    transform: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 70px 0;
  }
  .service-grid,
  .process-row,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-frame img,
  .testimonial-photo,
  .framed-photo img,
  .article img.cover {
    height: 260px;
  }
  .article,
  .narrow-form {
    padding: 22px 16px;
  }
  .search-bar {
    flex-direction: column;
  }
  .search-bar .form-control,
  .search-bar .btn {
    border-radius: 4px;
    width: 100%;
  }
}
