/* ── BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--pc-font-body);
  /* background-color: var(--pc-bg-cream); */
  color: var(--pc-text-dark);
  margin: 0;
}

/* ══════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════ */
.navbar {
  background-color: var(--pc-bg-cream);
  padding: 0;
  min-height: 60px;
}

.navbar-brand {
  font-family: var(--pc-font-label);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pc-text-dark) !important;
  line-height: 1.2;
  padding: 0.5rem 0;
}

/* Nav links — exact source spec: Lato, 14px, ls 0.1em, uppercase, opacity hover */
.nav-link,
.dropdown-item {
  font-family: var(--pc-font-label);
  font-weight: 700;
  font-size: var(--pc-fs-label-m);
  letter-spacing: var(--pc-ls-label);
  text-transform: uppercase;
  color: var(--pc-text-light);
  padding: 0.35rem 0.85rem;
  transition: var(--pc-hover-transition);
}

.dropdown-item {
  color: var(--pc-text-dark);
}

.nav-link:hover {
  opacity: var(--pc-hover-opacity);
  color: var(--pc-text-light);
}

/* Contact button — taupe rgba(166,153,142) from source */
.btn-contact {
  font-family: var(--pc-font-label);
  font-weight: 700;
  font-size: var(--pc-fs-label-d);
  letter-spacing: var(--pc-ls-label);
  text-transform: uppercase;
  line-height: var(--pc-lh-label);
  background-color: var(--pc-btn-dark);
  color: var(--pc-text-light) !important;
  border: none;
  border-radius: 0;
  padding: 0.6rem 1.4rem;
  margin-top: 0.75rem;
  text-decoration: none;
  display: inline-block;
  transition: var(--pc-hover-transition);
}

.btn-contact:hover {
  opacity: var(--pc-hover-opacity);
}

/* Toggler */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2843%2C43%2C43%2C0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile nav collapse */
.navbar-collapse {
  background-color: var(--pc-bg-dark);
  padding: 1rem 1.25rem 1.5rem;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--pc-bg-cream);
}

.dropdown-menu {
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  border-radius: 0;
  background-color: var(--pc-bg-cream);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* ══════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════ */
.hero-section {
  position: relative;
  overflow: hidden;
  background-color: var(--pc-bg-hero);
  min-height: 619px;
}

/* .hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-48deg,
      transparent,
      transparent 80px,
      rgba(255, 255, 255, 0.012) 80px,
      rgba(255, 255, 255, 0.012) 81px);
  z-index: 0;
  pointer-events: none;
} */

/* ── Collage column ── */
.hero-photo-col {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
}

.collage-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-left: 0;
}

.collage-inner {
  display: flex;
  justify-content: flex-end;
  min-height: 220px;
}

.collage-img {
  width: 100%;
  max-height: calc(0.4 * 100vh);
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.08);
}

/* ── Text column ── */
.hero-content-col {
  position: relative;
  z-index: 2;
  padding: 2rem 1.25rem;
  display: flex;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--pc-font-label);
  font-weight: 400;
  font-size: var(--pc-fs-label-m);
  letter-spacing: var(--pc-ls-label);
  line-height: var(--pc-lh-label);
  text-transform: uppercase;
  color: var(--pc-text-muted-light);
  margin-bottom: 0.85rem;
}

.hero-title {
  font-family: var(--pc-font-display);
  font-weight: 400;
  font-style: normal;
  font-size: var(--pc-fs-hero-m);
  line-height: var(--pc-lh-tight);
  letter-spacing: var(--pc-ls-hero);
  color: var(--pc-text-light);
  margin-bottom: 1.5rem;
}

.hero-body {
  font-family: var(--pc-font-body);
  font-weight: 400;
  font-size: var(--pc-fs-body-lg-m);
  line-height: var(--pc-lh-body);
  letter-spacing: var(--pc-ls-body);
  color: var(--pc-text-light);
  max-width: 100%;
  margin: 0;
}

/* Section Styling */
/* ==========================================
   BASE STYLES (Mobile / Extra Small Screens)
   ========================================== */
.strategy-execution-section {
  background-color: #ffffff;
  font-family: var(--pc-font-body);
  color: #333333;
}

/* Typography Defaults for Mobile */
.strategy-execution-section .section-title {
  font-family: var(--pc-font-display);
  font-size: var(--pc-fs-h4-m);
  /* Mobile font size first */
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--pc-text-dark);
}

.strategy-execution-section .section-subtitle {
  font-size: var(--pc-fs-body-m);
  /* Mobile font size first */
  color: var(--pc-text-dark);
  font-weight: 700;
}

.strategy-execution-section .section-text {
  font-size: var(--pc-fs-body-m);
  /* Mobile font size first */
  line-height: 1.6;
  color: var(--pc-text-med);
}

/* Image & Spacing Adjustments */
.strategy-execution-section .custom-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Base mobile spacing: adds gap when image stacks below text */
.strategy-execution-section .image-wrapper {
  margin-top: 1.5rem;
}

.strategy-execution-section .image-wrapper img {
  aspect-ratio: 1/1;
}

.writing-sideways-rl {
  writing-mode: vertical-rl;
  text-orientation: sideways;
}

/* ==========================================
   BASE STYLES (Mobile / Extra Small Screens)
   ========================================== */
.testimonial-section {
  font-family: var(--pc-font-body);
  position: relative;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 3%;
  z-index: -1;
  background-color: var(--pc-bg-peach);
  font-family: var(--pc-font-body);
}

/* Background wrap for mobile (ensures background stretches nicely under text) */
.testimonial-section .content-bg-wrapper {
  /* background-color: #fdf6f0; */
  /* Matches the soft beige background color */
}

/* Inner content alignment and padding */
.testimonial-section .testimonial-content {
  padding: 3rem 1.5rem;
  /* Generous breathing room for mobile content */
}

/* Typography Defaults for Mobile */
.testimonial-section .testimonial-tag {
  font-size: var(--pc-fs-feature-d);
  font-family: var(--pc-font-label);
  letter-spacing: var(--pc-ls-label);
  color: var(--pc-text-dark);
}

.testimonial-section .testimonial-quote {
  font-family: var(--pc-font-display);
  font-size: var(--pc-fs-h3-m);
  /* Mobile font size base */
  line-height: var(--pc-lh-body);
  font-weight: 400;
  color: var(--pc-text-dark);
}

.testimonial-section .testimonial-subtext {
  font-size: var(--pc-fs-body-sm-m);
  /* Mobile font size base */
  line-height: var(--pc-lh-body-loose);
  color: var(--pc-text-dark);
}

.testimonial-section .testimonial-author {
  font-size: var(--pc-fs-btn-m);
  letter-spacing: var(--pc-ls-body);
  line-height: var(--pc-lh-label);
  color: var(--pc-text-dark);
}

/* Image adjustments for mobile layout scaling */
.testimonial-section .testimonial-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.features-process-section {
  background-color: #ffffff;
  font-family: var(--pc-font-body);
}

/* Center Heading (Editorial serif style) */
.features-process-section .main-display-title {
  font-family: var(--pc-font-display);
  font-size: var(--pc-fs-h2-xl-m);
  /* Creates a distinct, large section header */
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--pc-text-med);
  line-height: var(--pc-lh-heading);
}

/* Base Card Tweaks */
.features-process-section .feature-card {
  margin-bottom: 1.5rem;
  /* Separator gap for stacked layout on mobile viewports */
}

/* Inner Feature Titles */
.features-process-section .feature-title {
  font-family: var(--pc-font-label);
  font-size: var(--pc-fs-label-d);
  font-weight: 400;
  letter-spacing: var(--pc-ls-body);
  /* Matches tracking on capitalized subtitles */
  color: var(--pc-text-med);
  line-height: var(--pc-lh-body);
}

/* Paragraph Blocks */
.features-process-section .feature-text {
  font-family: var(--pc-font-body);
  font-weight: 400;
  font-size: var(--pc-fs-body-sm-m);
  line-height: 1.65;
  color: var(--pc-text-med);
  letter-spacing: var(--pc-ls-body);
}

.cta-offset-section {
  background-color: #ffffff;
  font-family: var(--pc-font-body);
  overflow: hidden;
  /* Guards mobile layouts against horizontal layout blowouts */
}

/* Background card fill wrapper block */
.cta-offset-section .content-card-bg {
  background-color: #edeae6;
  /* Accurate warm beige gray match */
  padding: 2.5rem 1.25rem;
}

/* Typography Defaults for Mobile */
.cta-offset-section .cta-heading {
  font-family: var(--pc-font-display);
  font-size: var(--pc-fs-h3-d);
  font-weight: 400;
  color: var(--pc-text-dark);

}

.cta-offset-section .cta-checklist li {
  margin-bottom: 1.5rem;
}

/* Rounded Circle Check Icon Configuration */
.cta-offset-section .icon-check-wrapper {
  color: #9a938a;
  /* Soft brown-gray tint matching the icon outline */
  margin-right: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #9a938a;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  padding: 3px;
}

.cta-offset-section .checklist-text {
  font-family: var(--pc-font-display);
  /* Editorial serif subheadings */
  font-size: var(--pc-fs-body-m);
  line-height: 1.4;
  color: var(--pc-text-dark);
  font-weight: 400;
  text-align: left;
}

/* Button UI styling */
.cta-offset-section .btn-cta-dark {
  background-color: #444a47;
  /* Muted slate charcoal variant */
  color: #ffffff;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  padding: 1.1rem 2.2rem;
  border: none;
  transition: opacity 0.2s ease-in-out;
}

.cta-offset-section .btn-cta-dark:hover {
  background-color: #333835;
  color: #ffffff;
}

/* Base Image scaling block */
.cta-offset-section .cta-img {
  width: 100%;
  max-height: 200px;
  height: auto;
  object-fit: cover;
  display: block;
  margin-bottom: 2rem;
}

.cta-text-wrapper {
  text-align: center;
}

/* from soft */


.technologies .heading {
  font-family: var(--pc-font-display);
  font-size: var(--pc-fs-h4-m);
  line-height: var(--pc-lh-body);
  letter-spacing: var(--pc-ls-heading);
  color: var(--pc-text-dark);
}

.client-box {
  margin-bottom: 20px;
  padding: 15px 12px 30px
}

.ttm-client-logo-tooltip {
  position: relative
}

.ttm-box-view-separator-logo .client-box .client:after {
  border-right: 1px solid #eaeaea;
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  right: -25px;
  top: 0
}

.ttm-box-view-separator-logo .row .col-sm-4:nth-child(3n+3) .client-box .client:after {
  display: none
}

.client-box.ttm-box-view-boxed-logo {
  padding: 0;
  margin-top: 30px;
  margin-bottom: 30px
}

.client-box.ttm-box-view-boxed-logo .ttm-client-logo-tooltip {
  margin-right: 13px;
  margin-left: 13px;
  padding: 18px 12px;
  display: table-cell;
  text-align: center;
  align-items: center;
  vertical-align: middle;
  border: 1px solid #ddd;
  width: 100%;
  background: #fff;
  padding: 15px
}

.client-box.ttm-box-view-boxed-logo .client {
  width: 100%;
  display: table
}

.client-box.ttm-box-view-boxed-logo .client img {
  height: 60px;
  object-fit: contain;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  -moz-filter: grayscale(1);
  -o-filter: grayscale(1);
  -ms-filter: grayscale(1)
}

.client-box.ttm-box-view-boxed-logo .client:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  -moz-filter: grayscale(0);
  -o-filter: grayscale(0);
  -ms-filter: grayscale(0)
}

.client-box.ttm-box-view-boxed-logo {
  position: relative;
  display: block;
  -webkit-box-shadow: 0 3px 13px #23397426;
  -moz-box-shadow: 0 3px 13px #23397426;
  box-shadow: 0 3px 13px #23397426;
  border-radius: 4px 0 0 4px
}

.site-footer {
  background-color: #f4f1ec;
  /* Accurate warm beige gray canvas fill */
  font-family: var(--pc-font-body);
}

/* Typography Base Details */
.site-footer .footer-brand-title {
  font-family: var(--pc-font-display);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 0.85;
  color: #9c8e82;
  /* Muted soft taupe tone */
  letter-spacing: -0.01em;
}

.site-footer .footer-brand-subtitle {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #9c8e82;
  margin-top: 0.25rem;
}

.site-footer .footer-nav .nav-link {
  font-size: var(--pc-fs-feature-d);
  color: var(--pc-text-med);
  padding: 0;
  display: inline-block;
  letter-spacing: 0.1em;
  line-height: normal;
  transition: opacity 0.2s ease-in-out;
}

.site-footer .footer-nav .nav-link:hover {
  opacity: 0.7;
}

/* Social & Link Elements */
.site-footer .social-icon-link {
  color: #9c8e82;
  transition: color 0.2s ease;
}

.site-footer .social-icon-link:hover {
  color: var(--pc-text-dark);
}

.site-footer .copyright-text,
.site-footer .legal-links,
.site-footer .legal-links a {
  font-size: 0.75rem;
  color: #9c8e82;
  text-decoration: none;
}

.site-footer .legal-links a:hover {
  text-decoration: underline;
}

/* Instagram Block Setup */
.site-footer .insta-handle {
  font-size: 0.8rem;
  color: #9c8e82;
  letter-spacing: 0.12em;
  text-decoration: none;
  display: inline-block;
}

.site-footer .insta-img-wrapper {
  overflow: hidden;
}

.site-footer .insta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.site-footer .insta-img-wrapper:hover .insta-img {
  transform: scale(1.03);
}

.portfolio-projects-section {
  background-color: #ffffff;
  font-family: var(--pc-font-body);
}

/* Section Title Typography */
.portfolio-projects-section .portfolio-main-title {
  font-family: var(--pc-font-display);
  font-size: var(--pc-fs-h2-sm-m);
  /* Scales beautifully down to mobile */
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.0em;
  color: var(--pc-text-dark);
}

/* Card Elements & Image Enforcements */
.portfolio-projects-section .project-img-wrapper {
  overflow: hidden;
  width: 100%;
}

.portfolio-projects-section .project-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Card Content Typography Details */
.portfolio-projects-section .project-heading {
  font-family: var(--pc-font-label);
  font-size: var(--pc-fs-body-m);
  font-weight: 700;
  letter-spacing: 0.1em;
  /* Matches tracking behavior on bold capitalized subtitles */
  color: var(--pc-text-dark);
}

.portfolio-projects-section .project-description {
  font-size: var(--pc-fs-body-m);
  line-height: 1.6;
  color: var(--pc-text-dark);
}

/* Primary "Learn More" Hyperlink UI */
.portfolio-projects-section .project-link {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: #9a938a;
  /* Signature subtle accent brand gray tint */
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s ease-in-out;
}

.portfolio-projects-section .project-link:hover {
  color: var(--pc-text-dark);
}

.hero-audit-section {
  background-color: #222222;
  /* Fallback baseline background fill */
  font-family: var(--pc-font-body);
}

/* Background image engine with built-in accessibility contrast masking layer */
.hero-audit-section .hero-bg-overlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url('path-to-your-cityscape-image.jpg') center/cover no-repeat;
  min-height: 480px;
  /* Base comfortable mobile elevation height */
}

/* Small Tag Header Label styling */
.hero-audit-section .audit-tag-label {
  text-transform: uppercase;
  line-height: 1.6;
  letter-spacing: 0.2em;
  font-size: 11px;
  text-align: left;
  font-family: var(--pc-font-label);
  font-weight: 400;
  font-style: normal;
  color: var(--pc-text-light);
  /* Slightly muted off-white for subtlety */
}

/* Dynamic Main Display Typography */
.hero-audit-section .audit-display-title {
  font-family: var(--pc-font-display);
  color: rgba(242, 239, 234, 1);
  text-transform: none;
  line-height: 1;
  letter-spacing: 0em;
  font-size: 32px;
  text-align: left;
  font-weight: 400;
  font-style: normal;
  color: var(--pc-text-light);

}

/* Descriptive Paragraph Body Styling */
.hero-audit-section .audit-description-text {
  line-height: 1.8;
  letter-spacing: 0.025em;
  font-size: 13px;
  text-align: left;
  font-family: var(--pc-font-body);
  font-weight: 400;
  font-style: normal;
  color: var(--pc-text-light);
  max-width: 620px;
  /* Retains targeted line-break formatting bounds */
}

.marketing-picture-section {
  background-color: #ffffff;
  font-family: var(--pc-font-body);
}

/* Uppercase Overline Tagline Typography */
.marketing-picture-section .section-meta-tag {
  text-transform: uppercase;
  line-height: 1.6;
  letter-spacing: 0.2em;
  font-size: 11px;
  text-align: center;
  font-family: var(--pc-font-label);
  font-weight: 400;
  font-style: normal;
  overflow: hidden;
  color: var(--pc-text-dark);
}

/* Large Serif Display Title */
.marketing-picture-section .display-headline {
  font-family: var(--pc-font-display);
  text-transform: none;
  line-height: 1.1;
  letter-spacing: 0em;
  font-size: 28px;
  text-align: center;
  font-weight: 400;
  font-style: normal;
  color: var(--pc-text-dark);
}

/* Paragraph Blocks Inner Width Anchor */
.marketing-picture-section .description-block-wrapper {
  max-width: 680px;
  /* Forces matching paragraph length metrics natively */
}

/* Core Paragraph Body Styling */
.marketing-picture-section .description-text {
  text-transform: none;
  line-height: 1.7;
  letter-spacing: 0.025em;
  font-size: 15px;
  text-align: center;
  font-family: var(--pc-font-body);
  font-weight: 400;
  font-style: normal;
  overflow: hidden;
  color: var(--pc-text-med);
}

.audit-results-section {
  background-color: #f4f1ec;
  /* Warm signature cream canvas color */
  font-family: var(--pc-font-body);
  overflow: hidden;
  /* Safeguards against watermark position leakage */
}

/* Section Header Sizing */
.audit-results-section .main-editorial-title {
  font-family: var(--pc-font-display);
  font-weight: 400;
  letter-spacing: 0.0em;
  color: var(--pc-text-dark);
  text-transform: uppercase;
  line-height: 1.4;
  font-size: 36px;
  text-align: center;
}

/* Individual Content Row Context Block */
.audit-results-section .result-row-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  /* Provides consistent spacing container boundaries */
}

/* Core List Text Settings */
.audit-results-section .result-item-text {
  text-transform: uppercase;
  line-height: 1.8;
  letter-spacing: 0.2em;
  font-size: 12px;
  text-align: center;
  font-family: var(--pc-font-label);
  font-weight: 400;
  font-style: normal;
  color: var(--pc-text-dark);

  position: relative;
  z-index: 2;
  /* Ensures text is always perfectly legible over watermarks */
  max-width: 85%;
}

/* Giant Floating Background Watermarks */
.audit-results-section .bg-watermark-number {
  font-family: var(--pc-font-body);
  /* Soft elegant white overlay trace mix */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  user-select: none;

  color: rgba(255, 255, 255, 1);
  text-transform: uppercase;
  line-height: 1.3;
  letter-spacing: 0.02em;
  font-size: 125px;
  text-align: center;
  font-weight: 400;
  font-style: normal;
}

/* Precise Alternating Watermark Shifts */
.audit-results-section .watermark-right {
  right: -5px;
}

.audit-results-section .watermark-left {
  left: -5px;
}

/* Custom Action Button Styling */
.audit-results-section .btn-audit-primary {
  background-color: #6a5f55;
  /* Earthy editorial warm slate taupe */
  color: #ffffff;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  padding: 1.1rem 2rem;
  border: none;
  transition: opacity 0.2s ease-in-out;
}

.audit-results-section .btn-audit-primary:hover {
  background-color: #554c44;
  color: #ffffff;
}

.audit-includes-section {
  background-color: #ffffff;
  font-family: var(--pc-font-body);
}

/* Small Capitalized Overline Tag */
.audit-includes-section .section-mini-tag {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--pc-text-dark);
}

/* Serif Header Styling */
.audit-includes-section .includes-main-heading {
  font-family: var(--pc-font-display);
  font-size: calc(var(--pc-fs-h2-sm-m) * 1.25);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--pc-text-dark);
}

/* Description Text Adjustments */
.audit-includes-section .includes-intro-text {
  font-size: var(--pc-fs-body-m);
  line-height: 1.65;
  color: var(--pc-text-med);
}

/* List Item Borders and Spacing */
.audit-includes-section .scope-item {
  border-top: 1px solid #1a1a1a;
  /* Clean solid dark horizontal rule layout */
  padding: 1.25rem 0;
}

/* Ensures closing line finishes the group layout */
.audit-includes-section .scope-item.last-item {
  border-bottom: 1px solid #1a1a1a;
}

/* Inline Scope Subheading Metrics */
.audit-includes-section .scope-title {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--pc-text-dark);
  line-height: 1.4;
  font-family: var(--pc-font-label);

}

/* Base Responsive Scaling Image settings */
.audit-includes-section .audit-includes-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0e0e0e;
  --ink-muted: #555;
  --ink-faint: #999;
  --paper: #faf9f6;
  --paper-warm: #f3f0e8;
  --samsung-blue: #1428A0;
  --samsung-blue-light: #e8ebf7;
  --accent-gold: #b8860b;
  --border: rgba(0, 0, 0, 0.1);
  --gap: 2.5rem;
}

/* ── HEADER ── */
header {
  position: relative;
  background: var(--pc-bg-dark);
  color: #fff;
  padding: 5rem 2rem 4rem;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

header::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 40%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.header-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}


h1 {
  font-family: var(--pc-font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.header-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  font-size: 13px;
  opacity: 0.75;
}

.header-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-meta span::before {
  content: '';
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

/* ── LAYOUT ── */
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
}

/* ── CONTEXT STRIP ── */
.context-strip {
  background: var(--samsung-blue-light);
  border-left: 4px solid var(--samsung-blue);
  padding: 1.5rem 2rem;
  margin: 3rem 0;
  border-radius: 0 6px 6px 0;
}

.context-strip p {
  font-size: 15px;
  color: var(--ink-muted);
  font-style: italic;
  line-height: 1.7;
}

.context-strip strong {
  color: var(--samsung-blue);
  font-style: normal;
  font-weight: 500;
}

/* ── SECTIONS ── */
main section {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 0.5px solid var(--border);
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pc-text-dark);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

h2 {
  font-family: var(--pc-font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

h3 {
  font-family: var(--pc-font-display);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

p {
  font-size: 15.5px;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

p strong,
li strong {
  color: var(--ink);
  font-weight: 500;
}

/* ── PRODUCT SERIES CARDS ── */
.series-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.series-card {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.series-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.series-m::before {
  background: #e63946;
}

.series-a::before {
  background: #7b2d8b;
}

.series-note::before {
  background: var(--samsung-blue);
}

.series-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.tag-m {
  background: #fce8ea;
  color: #a52030;
}

.tag-a {
  background: #f0e2f5;
  color: #5a1a70;
}

.tag-note {
  background: var(--samsung-blue-light);
  color: var(--samsung-blue);
}

.series-card h4 {
  font-family: var(--pc-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.series-card p {
  font-size: 13.5px;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.series-audience {
  font-size: 12px;
  color: var(--ink-faint);
  border-top: 0.5px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

.series-audience strong {
  color: var(--ink-muted);
  font-weight: 500;
}

/* ── CAMPAIGN HIGHLIGHT ── */
.campaign-highlight {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.campaign-highlight h4 {
  font-family: var(--pc-font-display);
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.stat-pill {
  background: var(--paper-warm);
  border: 0.5px solid var(--border);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 12.5px;
  color: var(--ink-muted);
}

.stat-pill strong {
  color: var(--ink);
  font-weight: 500;
}

/* ── TIMELINE / PROCESS ── */
.process-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-list li {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 0.5px solid var(--border);
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.6;
}

.process-list li:last-child {
  border-bottom: none;
}

.process-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--samsung-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* ── QUOTE PULL ── */
.pull-quote {
  font-family: var(--pc-font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  border-left: 3px solid var(--accent-gold);
  padding: 1.25rem 0 1.25rem 2rem;
  margin: 2.5rem 0;
}

/* ── LEARNINGS GRID ── */
.learnings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.learning-card {
  background: var(--paper-warm);
  border-radius: 10px;
  padding: 1.25rem;
}

.learning-card .icon {
  font-size: 20px;
  margin-bottom: 0.5rem;
}

.learning-card h5 {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.learning-card p {
  font-size: 12.5px;
  line-height: 1.55;
  margin: 0;
}

/* ── LOCALISATION ── */
.localization-box {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  margin-top: 1.5rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.localization-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.localization-box h4 {
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.5rem;
  font-size: 15px;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.5);
  padding: 2.5rem;
  font-size: 12px;
  letter-spacing: 0.05em;
}

footer strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  header {
    padding: 3.5rem 1.25rem 3rem;
  }

  main {
    padding: 0 1.25rem 4rem;
  }

  .localization-box {
    flex-direction: column;
  }
}

.ready-cta-parallax-section {
  background-color: #2b2b2b;
  /* Safety dark fallback anchor fill */
  font-family: var(--pc-font-body);
  overflow: hidden;
}

/* Parallax Background Engine with Dark Contrast Mask Layer */
.ready-cta-parallax-section .parallax-bg-wrapper {
  position: relative;
  min-height: 500px;
  /* Comfortable mobile viewport vertical lift footprint */

  /* Background layer configurations */

  background-attachment: scroll;
  /* Default behavior for touch/mobile devices to prevent glitches */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Serif Display Title Typography */
.ready-cta-parallax-section .parallax-cta-title {
  font-family: var(--pc-font-display);
  font-size: calc(var(--pc-fs-h2-sm-m) * 1.4);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: #ffffff;
}

/* Core Bounded Paragraph Copy */
.ready-cta-parallax-section .parallax-cta-text {
  font-family: var(--pc-font-body);
  font-size: var(--pc-fs-body-d);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.95);
  max-width: 540px;
  /* Constrains line length to match original layout proportions */
}

/* Solid Premium White Button UI Element */
.ready-cta-parallax-section .btn-parallax-light,
.hero-section .btn-parallax-light {
  background-color: #ffffff;
  color: var(--pc-text-dark);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  padding: 1.1rem 2.6rem;
  border: 1px solid #ffffff;
  transition: all 0.25s ease-in-out;
}

.ready-cta-parallax-section .btn-parallax-light:hover,
.hero-section .btn-parallax-light:hover {
  background-color: transparent;
  color: #ffffff;
}

<style>.gallery-item img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

/* Zoom effect on hover */
.gallery-item:hover img {
  transform: scale(1.05);
}

/* Absolute positioning for the close button over the modal image */
.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1055;
  /* Higher than the image to stay on top */
  background-color: rgba(0, 0, 0, 0.5);
  /* Semi-transparent background for visibility */
  padding: 10px;
  border-radius: 50%;
}


/* Forces the image to fill the square completely and stay centered */
.gallery-item img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

/* Zoom effect on hover */
.gallery-item:hover img {
  transform: scale(1.05);
}

/* Absolute positioning for the close button over the modal image */
.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1055;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 50%;
}

/* Custom Video Overlay styles */
.video-container {
  position: relative;
  cursor: pointer;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  /* Dim background before playing */
  transition: all 0.3s ease;
  z-index: 2;
}

/* The Custom Play Button */
.custom-play-btn {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

/* Play icon using pure CSS triangle */
.play-icon {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #111;
  /* Dark play arrow */
  margin-left: 6px;
  /* Visual centering adjustment for triangles */
}

.video-container:hover .custom-play-btn {
  transform: scale(1.1);
  background-color: #fff;
}

/* Class to hide the overlay cleanly when playing */
.video-container.is-playing .video-overlay {
  opacity: 0;
  pointer-events: none;
}

.contact-form-section {
  background-color: #f4f1ec;
  /* Matches the warm cream signature canvas backdrop */
  font-family: var(--pc-font-body);
}

/* Left Panel Info Typography */
.contact-form-section .blurb-text {
  color: var(--pc-btn-charcoal);
  line-height: 1.5;
  letter-spacing: 0.025em;
  font-size: 14px;
  text-align: left;
  font-family: var(--pc-font-body);
}

.contact-form-section .contact-email-link {
  color: var(--pc-text-dark);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact-form-section .contact-email-link:hover {
  opacity: 0.7;
}

/* Right Panel Main Header */
.contact-form-section .contact-main-heading {
  font-family: var(--pc-font-display);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #2b2b2b;
}

/* Premium Minimal Form Inputs */
.contact-form-section .form-group-item {
  position: relative;
  display: flex;
  flex-direction: column;
}

.contact-form-section .form-custom-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: #9c8e82;
  /* Soft signature neutral label accent */
  margin-bottom: 0.25rem;
}

.contact-form-section .form-control-custom {
  background-color: transparent !important;
  border: none;
  border-bottom: 1px solid #1a1a1a;
  /* Single solid baseline look */
  border-radius: 0;
  padding: 0.5rem 0;
  font-size: var(--pc-fs-body-m);
  color: var(--pc-text-dark);
  outline: none;
  transition: border-color 0.2s ease-in-out;
}

.contact-form-section .form-control-custom:focus {
  border-bottom-color: #9c8e82;
}

/* Message Helper Copy Styling */
.contact-form-section .form-helper-note {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #8a8076;
}

/* Custom Earthy Taupe Submit Button */
.contact-form-section .btn-contact-submit {
  background-color: #b0a496;
  /* Elegant warm mud stone tone */
  color: #ffffff;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  padding: 0.9rem 2.8rem;
  border: none;
  transition: background-color 0.2s ease-in-out;
}

.contact-form-section .btn-contact-submit:hover {
  background-color: #9c8e82;
  color: #ffffff;
}

/* Core Responsive Scaling Image setting */
.contact-form-section .contact-hero-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.contact-form-section .contact-hero-img.sq {
  aspect-ratio: 1 / 1;
}

/* sm ≥576px */
@media (min-width: 576px) {
  .hero-section {
    /* min-height: 572px; */
  }

  .collage-inner {
    min-height: 300px;
  }

  .hero-content-col {
    padding: 2.5rem 1.5rem;
  }

  .hero-eyebrow {
    font-size: var(--pc-fs-label-d);
  }

  .hero-title {
    font-size: var(--pc-fs-hero-d);
  }

  .hero-body {
    font-size: var(--pc-fs-body-lg-d);
    max-width: 530px;
  }
}

/* ==========================================
   RESPONSIVE BREAKPOINTS (Scaling Up)
   ========================================== */

/* Medium Devices (Tablets, 768px and up) */
@media (min-width: 768px) {
  .strategy-execution-section .section-title {
    font-size: var(--pc-fs-h2-sm-m);
    /* Upgraded sizing for desktop */
  }

  .strategy-execution-section .section-subtitle,
  .strategy-execution-section .section-text {
    font-size: var(--pc-fs-body-d);
    /* Upgraded sizing for desktop */
  }

  /* Reset the top margin since columns are now side-by-side */
  .strategy-execution-section .image-wrapper {
    margin-top: 0;
  }

  .strategy-execution-section .image-wrapper img {
    aspect-ratio: unset;
    max-height: 575px;
  }

  .testimonial-section::before {
    width: 70%;
    top: 6%;
    right: 0;
  }

  /* Set exact spacing structure to align text dynamically alongside image */
  .testimonial-section .testimonial-content {
    padding: 5rem 4rem 5rem 5rem;
  }

  /* Upgrade typography size scaling for desktop */
  .testimonial-section .testimonial-quote {
    font-size: var(--pc-fs-h3-d);
  }

  .testimonial-section .testimonial-subtext {
    font-size: var(--pc-fs-body-m);
  }

  /* Image height match behavior to prevent background gaps */
  .testimonial-section .image-container {
    height: 100%;
  }

  .testimonial-section .testimonial-img {
    height: 100%;
    min-height: 520px;
    /* Adjust this threshold value based on layout balance goals */
  }

  .features-process-section .main-display-title {
    font-size: var(--pc-fs-h2-d);
    line-height: var(--pc-lh-body);
  }

  /* Clears mobile margin spacing since elements are now columns side-by-side */
  .features-process-section .feature-card {
    margin-bottom: 0;
  }

  /* Upgrade text sizing smoothly to handle desktop viewport scaling */
  .features-process-section .feature-title {
    font-size: var(--pc-fs-feature-d);
    letter-spacing: var(--pc-ls-nav);
    line-height: var(--pc-lh-body);
  }

  .features-process-section .feature-text {
    font-size: var(--pc-fs-body-sm-m);
    line-height: var(--pc-lh-body);
  }

  /* Restructure container card to safely accommodate absolute offsets */
  .cta-offset-section .content-card-bg {
    padding: 0;
    background-color: transparent;
  }

  .cta-text-wrapper {
    text-align: left;
  }

  /* Draw a pseudo background that only blocks behind the text section column */
  .cta-offset-section .content-card-bg::before {
    content: "";
    position: absolute;
    top: 4rem;
    bottom: 0;
    left: 0;
    width: 75%;
    /* Spans across to form the framing box anchor under the text */
    background-color: #edeae6;
    z-index: 0;
  }

  /* Elevate text structure above the pseudo container background layout */
  .cta-offset-section .cta-text-wrapper {
    position: relative;
    z-index: 2;
    padding: 7rem 2rem 5rem 3rem;
  }

  .cta-offset-section .cta-heading {
    font-size: var(--pc-fs-h2-sm-m);
  }

  .cta-offset-section .checklist-text {
    font-size: var(--pc-fs-body-d);
  }

  /* Absolute position layout matrix to force the premium asymmetrical image break */
  .cta-offset-section .alignment-wrapper {
    position: static;
  }

  .cta-offset-section .offset-image-container {
    /* position: absolute; */
    /* top: 0;
    right: 0; */
    height: 88%;
    /* Leaves the clean bottom edge spacing overflow */
  }

  .cta-offset-section .cta-img {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    max-height: 400px;
  }

  .site-footer .footer-brand-title {
    font-size: 3rem;
  }

  .site-footer .footer-brand-subtitle {
    font-size: 13px;
  }

  .site-footer .footer-nav .nav-link {
    font-size: 13px;
  }

  .portfolio-projects-section .portfolio-main-title {
    font-size: var(--pc-fs-h2-xl-m);
  }

  .portfolio-projects-section .project-description {
    font-size: var(--pc-fs-body-sm-m);
  }

  .hero-audit-section .hero-bg-overlay {
    min-height: 600px;
    /* Scales layout impact footprint up */
  }

  .hero-audit-section .audit-tag-label {
    font-size: 0.85rem;
    letter-spacing: 0.22em;
  }

  .hero-audit-section .audit-display-title {
    font-size: calc(var(--pc-fs-h2-sm-m) * 1.6);
    line-height: 1.2;
  }

  .hero-audit-section .audit-description-text {
    font-size: var(--pc-fs-body-d);
  }

  .marketing-picture-section .section-meta-tag {
    line-height: 1.6;
    letter-spacing: 0.2em;
    font-size: 13px;
  }

  .marketing-picture-section .display-headline {
    line-height: 1;
    letter-spacing: 0em;
    font-size: 32px;
  }

  .marketing-picture-section .description-text {
    line-height: 1.5;
    letter-spacing: 0.025em;
    font-size: 15px;
  }

  .audit-results-section .main-editorial-title {
    line-height: 1.1;
    letter-spacing: 0em;
    font-size: 48px;
  }

  .audit-results-section .result-item-text {
    line-height: 1.8;
    letter-spacing: 0.2em;
    font-size: 13px;
    max-width: 80%;
  }

  .audit-results-section .bg-watermark-number {
    font-size: 100px;
    /* Larger display footprint scale factor */
  }

  .audit-results-section .watermark-right {
    right: 20px;
  }

  .audit-results-section .watermark-left {
    left: 20px;
  }

  .audit-results-section .flank-img-left {
    position: absolute;
    left: -20%;
    bottom: 50px;
    width: 250px;
    height: 250px;
    z-index: 1;
  }

  .flank-img-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .audit-results-section .flank-img-right {
    position: absolute;
    right: -20%;
    top: 140px;
    width: 250px;
    height: 250px;
    z-index: 1;
  }

  .flank-img-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .audit-results-section .content-stack-layer {
    z-index: 2;
    /* Forces middle navigation content stacks visually above flanking layers */
  }

  .audit-includes-section .section-mini-tag {
    text-transform: uppercase;
    line-height: 1.6;
    letter-spacing: 0.2em;
    font-size: 8px;
    text-align: left;
    font-family: 'Uniform';
    font-weight: 400;
    font-style: normal;
  }

  .audit-includes-section .includes-main-heading {
    letter-spacing: 0em;
    font-size: 38px;

  }

  .audit-includes-section .includes-intro-text {
    font-size: 14px;
  }

  .audit-includes-section .scope-item {
    padding: .5rem 0;
    /* Expanded padding structure on wide desktop layouts */
  }

  .audit-includes-section .scope-item .scope-title {
    font-size: 10px;
  }

  .audit-includes-section .audit-includes-img {
    height: 100%;
  }

  .ready-cta-parallax-section .parallax-bg-wrapper {
    background-attachment: fixed;
    min-height: 600px;
  }

  .ready-cta-parallax-section .parallax-cta-title {
    font-size: calc(var(--pc-fs-h2-sm-m) * 1.7);
  }

  .ready-cta-parallax-section .parallax-cta-text {
    font-size: var(--pc-fs-body-d);
  }

  .contact-form-section .contact-main-heading {
    font-size: 30px;
  }

  .contact-form-section .blurb-text,
  .contact-form-section .blurb-subtext {
    font-size: 16px;
  }

}

/* lg ≥992px */
@media (min-width: 992px) {
  .navbar {
    min-height: 106px;
  }

  .navbar-collapse {
    background-color: transparent;
    padding: 0;
  }

  .navbar-collapse .nav-link {
    color: var(--pc-text-dark) !important;
    font-size: var(--pc-fs-nav);
    letter-spacing: var(--pc-ls-nav);
  }

  .nav-link {
    color: var(--pc-text-dark) !important;
    font-size: var(--pc-fs-nav);
    letter-spacing: var(--pc-ls-nav);
  }

  .btn-contact {
    background-color: var(--pc-btn-contact);
    margin-top: 0;
  }

  .collage-img {
    max-height: unset;

  }

  .hero-photo-col {
    order: 0;
  }

  .collage-wrap {
    margin-left: 40px;
  }

  .collage-inner img {
    max-width: 80%;
  }

  .hero-content-col {
    padding: 5rem;
  }

  .testimonial-section::before {
    top: 10%;
  }

  .testimonial-section .testimonial-content {
    padding: 7rem 6rem 7rem 7rem;
    /* Exact wide screen pixel balance */
  }

  .features-process-section .main-display-title {
    font-size: 4rem;
    /* Replicates the ultra-crisp wide editorial display title size */
  }

  .cta-offset-section .content-card-bg::before {
    width: 72%;
    top: 1rem;
  }

  .cta-offset-section .cta-text-wrapper {
    padding: 5rem 0 7rem 5rem;
  }

  .cta-offset-section .cta-heading {
    font-size: 3.25rem;
  }

  .cta-offset-section .offset-image-container {
    width: 100%;
  }

  .site-footer .footer-brand-title {
    font-size: 3.5rem;
  }

  /* Forces the layout to accurately breathe across massive viewport monitors */
  .site-footer .footer-legal-meta {
    margin-top: auto;
  }

  .portfolio-projects-section .portfolio-main-title {
    font-size: 3.5rem;
    /* Delivers the luxury wide editorial scale structure */
    line-height: 1.15;
  }

  .hero-audit-section .hero-bg-overlay {
    min-height: 575px;
    /* Perfect desktop viewport presentation */
  }

  .hero-audit-section .audit-display-title {
    font-size: 63px;
    /* Mirrors premium widescreen design canvas impact */
  }

  .hero-audit-section .audit-description-text {
    font-size: var(--pc-fs-body-sm-m);
  }

  .marketing-picture-section .display-headline {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: 0.025em;
  }

  .audit-results-section .main-editorial-title {
    line-height: 1.3;
    letter-spacing: 0em;
    font-size: 48px;
  }

  .audit-results-section .flank-img-left {
    position: absolute;
    left: -6%;
    bottom: 50px;
    width: 250px;
    height: 400px;
  }

  .audit-results-section .flank-img-right {
    position: absolute;
    right: -6%;
    top: 140px;
    width: 250px;
    height: 400px;
    z-index: 1;
  }

  .audit-results-section .bg-watermark-number {
    font-size: 120px;
    /* Larger display footprint scale factor */
  }

  .audit-includes-section .section-mini-tag {
    font-size: 13px;
  }

  .audit-includes-section .includes-main-heading {
    letter-spacing: 0em;
    font-size: 43px;

  }

  .audit-includes-section .includes-intro-text {
    line-height: 1.7;
    letter-spacing: 0.025em;
    font-size: 15px;
    font-weight: 400;

  }

  .audit-includes-section .scope-item {
    padding: .5rem 0;
    /* Expanded padding structure on wide desktop layouts */
  }

  .audit-includes-section .scope-item .scope-title {
    font-size: 13px;
  }

  /* Enforces image column properties matching layout aesthetics */
  .audit-includes-section .includes-image-container {
    padding-right: 1rem;
  }

  .audit-includes-section .scope-item {
    padding: 1.25rem 0;
    /* Expanded padding structure on wide desktop layouts */
  }

  .ready-cta-parallax-section .parallax-bg-wrapper {
    min-height: 650px;
  }

  .ready-cta-parallax-section .parallax-cta-title {
    font-size: 4.5rem;
    /* Large high-fashion impact headline font metric */
  }

  .contact-form-section .contact-main-heading {
    font-size: 3.25rem;
  }
}