@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400&family=Playfair+Display:ital,wght@0,400;1,400&display=swap");

:root {
  --off-white: #f8f6f1;
  --paper: #f3efe7;
  --stone: #e0d9cc;
  --graphite: #121212;
  --charcoal: #1a1a1a;
  --ink: #26241f;
  --soft-ink: rgba(38, 36, 31, 0.68);
  --white-soft: rgba(255, 255, 255, 0.72);
  --white-faint: rgba(255, 255, 255, 0.16);
  --forest: #344437;
  --display: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", Arial, Helvetica, sans-serif;
}

/* Hostinger live repair: form feedback, blog/article spacing */
.contact-form select,
.contact-form select option,
.contact-form select:focus option {
  background: var(--graphite);
  color: #fff;
}

.contact-form .form-note[hidden] {
  display: none;
}

.contact-form .form-note {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.contact-form .form-note.success {
  color: #dfe8d8;
}

.contact-form .form-note.error {
  color: #ffb4a7;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.blog-page {
  background: var(--paper);
}

.blog-page .blog-hero {
  min-height: auto;
  padding: 108px clamp(28px, 4vw, 78px) 78px;
  border-bottom: 0;
}

.blog-page .blog-hero h1 {
  max-width: 980px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(54px, 7vw, 96px);
  line-height: 0.95;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.blog-filters button {
  min-height: 36px;
  padding: 0 18px;
  border: 1px solid var(--stone);
  appearance: none;
  background: transparent;
  color: var(--soft-ink);
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.blog-filters button.active {
  border-color: var(--graphite);
  background: var(--graphite);
  color: #fff;
}

.featured-post {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(42px, 5vw, 84px);
  padding: 0 clamp(28px, 4vw, 78px) 112px;
  border-bottom: 1px solid var(--stone);
  background: var(--paper);
}

.featured-post > img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.featured-post article {
  max-width: 650px;
}

.featured-post h2 {
  margin: 24px 0 18px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(34px, 3.4vw, 58px);
  font-weight: 400;
  line-height: 1;
}

.featured-post article > p:not(.eyebrow):not(.post-meta) {
  margin: 0 0 26px;
  color: var(--soft-ink);
  font-size: 16px;
  line-height: 1.75;
}

.post-meta {
  color: var(--soft-ink);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--graphite);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.blog-page .blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1320px;
  margin: 0 auto;
  padding: 88px clamp(28px, 4vw, 78px) 128px;
  gap: 28px;
  background: var(--off-white);
}

.blog-page .blog-card {
  display: block;
  min-height: auto;
  padding: 0 0 34px;
  border: 1px solid var(--stone);
  background: var(--paper);
  color: inherit;
}

.blog-page .blog-card img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.blog-page .blog-card > .eyebrow {
  margin: 32px 34px 0;
}

.blog-page .blog-card > h2 {
  margin: 16px 34px 12px;
  font-family: var(--display);
  font-size: clamp(30px, 2.3vw, 44px);
  font-weight: 400;
  line-height: 1.05;
}

.blog-page .blog-card > p:not(.eyebrow) {
  margin: 0 34px 18px;
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.6;
}

.blog-page .blog-card > .post-meta {
  display: block;
  margin: 0 34px;
}

.article-cta {
  display: grid;
  min-height: 390px;
  place-items: center;
  justify-items: center;
  gap: 30px;
  padding: 92px 24px;
  background: var(--graphite);
  color: #fff;
  text-align: center;
}

.article-cta h2 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(36px, 3.4vw, 58px);
  font-weight: 400;
  line-height: 1.08;
}

.article-cta .button.light,
.article-cta .light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-width: 390px;
  min-height: 70px;
  padding: 0 38px;
  border: 1px solid #fff;
  background: #fff;
  color: var(--graphite);
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.article-page {
  background: var(--off-white);
}

.article-page .article-head {
  padding: 82px clamp(28px, 4vw, 78px) 72px;
  border-bottom: 1px solid var(--stone);
  background: var(--off-white);
}

.article-head .back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 62px;
  color: var(--soft-ink);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.article-head .eyebrow {
  margin: 0 0 26px;
  color: var(--forest);
}

.article-head h1 {
  max-width: 1160px;
  margin: 0 0 28px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(44px, 5.4vw, 86px);
  font-weight: 400;
  line-height: 1;
}

.article-page > img.article-cover {
  display: block;
  width: 100%;
  height: min(680px, 60vw);
  min-height: 360px;
  object-fit: cover;
}

.article-page > article.article-body {
  display: block;
  max-width: 920px;
  margin: 0 auto;
  padding: 110px 28px 126px;
  background: var(--off-white);
}

.article-page > article.article-body p {
  margin: 0 0 34px;
  color: var(--soft-ink);
  font-size: clamp(18px, 1.2vw, 23px);
  line-height: 1.75;
}

.article-page > article.article-body h3 {
  margin: 58px 0 18px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(30px, 2.4vw, 46px);
  font-weight: 400;
  line-height: 1.1;
}

@media (max-width: 900px) {
  .blog-page .blog-hero {
    padding-top: 86px;
  }

  .featured-post {
    grid-template-columns: 1fr;
    padding-bottom: 78px;
  }

  .featured-post > img {
    height: min(70vw, 460px);
  }

  .blog-page .blog-grid {
    grid-template-columns: 1fr;
    padding-top: 64px;
    padding-bottom: 88px;
  }

  .article-cta .button.light,
  .article-cta .light-button {
    width: min(390px, 100%);
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .blog-page .blog-hero {
    padding: 74px 22px 54px;
  }

  .blog-page .blog-hero h1 {
    font-size: 44px;
  }

  .blog-filters {
    gap: 8px;
  }

  .blog-filters button {
    min-height: 34px;
    padding: 0 12px;
    letter-spacing: 0.2em;
  }

  .featured-post {
    padding: 0 22px 64px;
  }

  .featured-post > img {
    height: 320px;
  }

  .blog-page .blog-grid {
    padding: 52px 22px 72px;
  }

  .blog-page .blog-card img {
    height: 240px;
  }

  .blog-page .blog-card > .eyebrow,
  .blog-page .blog-card > h2,
  .blog-page .blog-card > p:not(.eyebrow),
  .blog-page .blog-card > .post-meta {
    margin-left: 22px;
    margin-right: 22px;
  }

  .article-page .article-head {
    padding: 68px 22px 54px;
  }

  .article-head .back-link {
    margin-bottom: 44px;
  }

  .article-head h1 {
    font-size: 40px;
  }

  .article-page > img.article-cover {
    min-height: 260px;
  }

  .article-page > article.article-body {
    padding: 68px 22px 82px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
}

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

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

img {
  max-width: 100%;
}

h1,
h2,
h3,
strong {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin: 0;
}

em {
  font-family: var(--display);
  font-style: italic;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 28px;
  background: var(--graphite);
  color: #fff;
  transition: opacity 700ms ease, visibility 700ms ease;
}

.loader img {
  width: min(310px, 72vw);
}

.loader span {
  width: 224px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.loader span::after {
  content: "";
  display: block;
  height: 100%;
  background: #fff;
  animation: loadingLine 900ms ease both;
  transform-origin: left;
}

.loader p,
.eyebrow,
.section-kicker span,
.section-kicker small,
.desktop-nav,
.nav-cta,
.button,
.filter-row button,
.center-link,
.contact-section label,
.footer-bottom,
.site-footer nav span,
.footer-grid > div:last-child > span {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.28em;
  line-height: 1.35;
  text-transform: uppercase;
}

.loader p {
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.4em;
}

.loaderHidden {
  opacity: 0;
  visibility: hidden;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  padding: 0 clamp(24px, 4vw, 64px);
  color: #fff;
  transition: height 420ms ease, background 420ms ease, border-color 420ms ease;
}

.header-solid {
  height: 78px;
  background: rgba(18, 18, 18, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 40px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
  text-transform: uppercase;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0.25em;
}

.brand small {
  margin-top: 8px;
  opacity: 0.82;
  font-size: 8px;
  letter-spacing: 0.5em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.35vw, 24px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.desktop-nav a,
.site-footer a,
.social-row a {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 260ms ease, color 260ms ease, opacity 260ms ease;
}

.desktop-nav a:hover,
.site-footer a:hover,
.social-row a:hover {
  background-size: 100% 1px;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
  cursor: pointer;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 260ms ease, opacity 260ms ease;
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle {
  background-size: 100% 1px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 90;
  min-width: 282px;
  padding: 10px 0;
  border: 1px solid var(--stone);
  background: #f6f1eb;
  color: var(--graphite);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 18px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 18px;
  color: var(--graphite) !important;
  font-size: 11px;
  line-height: 1.25;
  letter-spacing: 0.16em;
  white-space: nowrap;
  background-image: none;
}

.nav-dropdown-menu a:hover {
  background: rgba(65, 82, 54, 0.08);
}

.site-header.on-light .nav-dropdown-toggle {
  color: var(--graphite);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 59px;
  padding: 20px 28px;
  border: 1px solid currentColor;
  border-radius: 0;
  transition: background 260ms ease, border-color 260ms ease, color 260ms ease;
}

.nav-cta:hover,
.button.ghost:hover {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
}

.button.light {
  border-color: #fff;
  background: #fff;
  color: var(--graphite);
}

.button.light:hover {
  border-color: var(--off-white);
  background: var(--off-white);
}

.button.dark {
  border-color: var(--graphite);
  background: var(--graphite);
  color: #fff;
}

.button.dark:hover {
  background: var(--forest);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.mobile-panel {
  position: fixed;
  inset: 78px 0 auto;
  z-index: 45;
  display: none;
  padding: 18px 24px 28px;
  background: rgba(18, 18, 18, 0.98);
  color: #fff;
  transform: translateY(-120%);
  transition: transform 320ms ease;
}

.mobile-panel-open {
  transform: translateY(0);
}

.mobile-panel a {
  display: flex;
  align-items: center;
  min-height: 52px;
  border-bottom: 1px solid var(--white-faint);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.mobile-panel details {
  border-bottom: 1px solid var(--white-faint);
  padding: 14px 0;
}

.mobile-panel summary {
  display: flex;
  align-items: center;
  min-height: 34px;
  color: inherit;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.mobile-panel summary::-webkit-details-marker {
  display: none;
}

.mobile-panel details a {
  min-height: 38px;
  padding-left: 18px;
  border-bottom: 0;
  font-size: 11px;
  opacity: 0.84;
}

.site-header.on-light .mobile-panel details {
  border-color: rgba(23, 23, 23, 0.14);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.hero-image,
.final-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.22) 42%, rgba(0, 0, 0, 0.72));
}

.vertical-note {
  position: absolute;
  left: 38px;
  top: 50%;
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
}

.scroll-note {
  position: absolute;
  right: 38px;
  bottom: 42px;
  z-index: 2;
  display: grid;
  justify-items: end;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
}

.scroll-note i {
  position: relative;
  display: block;
  width: 1px;
  height: 64px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.36);
}

.scroll-note i::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 30px;
  background: #fff;
  animation: scrollLine 1.7s ease-in-out infinite;
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 1180px;
  padding: 130px clamp(24px, 5vw, 92px) clamp(84px, 10vw, 136px);
  animation: revealUp 900ms ease 500ms both;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--forest);
  letter-spacing: 0.32em;
}

.hero .eyebrow,
.services-dark .eyebrow,
.faq-section .eyebrow,
.final-cta .eyebrow {
  color: var(--white-soft);
}

.hero h1 {
  max-width: 900px;
  color: #fff;
  font-size: clamp(44px, 7.4vw, 104px);
  line-height: 1.02;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(50px, 6vw, 78px) clamp(24px, 4vw, 52px);
  border-block: 1px solid var(--stone);
  background: var(--off-white);
}

.stats-band strong {
  display: block;
  color: var(--graphite);
  font-size: clamp(52px, 6vw, 84px);
  line-height: 1;
}

.stats-band strong::after {
  content: "+";
}

.stats-band span {
  display: block;
  margin-top: 14px;
  color: rgba(38, 36, 31, 0.7);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.editorial-section,
.discipline,
.projects-section,
.services-dark,
.process-section,
.perspective-section,
.voices-section,
.faq-section,
.contact-section,
.locations-section {
  padding: clamp(86px, 11vw, 150px) clamp(24px, 4vw, 52px);
}

.editorial-section,
.light-section {
  background: var(--off-white);
  color: var(--ink);
}

.split-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(170px, 0.28fr) 1fr;
  gap: clamp(42px, 7vw, 112px);
  max-width: 1500px;
  margin: 0 auto;
}

.section-kicker span {
  color: var(--forest);
}

.section-kicker small {
  display: block;
  margin-top: 12px;
  color: rgba(38, 36, 31, 0.48);
  letter-spacing: 0.35em;
}

.split-section h2,
.section-heading h2,
.contact-section h2,
.final-cta h2 {
  max-width: 790px;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.08;
}

.two-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  max-width: 900px;
  margin-top: 42px;
}

.two-copy p,
.section-heading > p,
.commitment-grid p,
.work-grid p,
.work-grid small,
.services-dark .section-heading > p,
.process-list p,
.perspective-grid p,
.voices-grid p,
.faq-list p,
.contact-section > div > p,
.contact-cards p,
.site-footer p {
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.85;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  max-width: 1500px;
  margin: 0 auto clamp(48px, 7vw, 90px);
}

.section-heading > p {
  max-width: 460px;
}

.discipline,
.perspective-section {
  border-block: 1px solid var(--stone);
  background: color-mix(in srgb, var(--stone) 48%, white);
}

.discipline {
  padding-top: 52px;
  padding-bottom: 68px;
}

.discipline .section-heading {
  max-width: 1500px;
  margin-bottom: 76px;
}

.discipline .section-heading h2 {
  max-width: 690px;
  font-size: clamp(46px, 4.25vw, 72px);
  line-height: 0.96;
}

.discipline .section-heading > p {
  max-width: 470px;
  align-self: end;
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1.55;
}

.discipline .eyebrow {
  margin-bottom: 26px;
  font-size: 8px;
  letter-spacing: 0.46em;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1500px;
  margin: 0 auto;
  border-top: 1px solid var(--stone);
  border-left: 1px solid var(--stone);
}

.commitment-grid article {
  min-height: 340px;
  padding: 64px clamp(54px, 3.45vw, 72px) 54px;
  border-right: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  background: var(--off-white);
  transition: background 420ms ease, color 420ms ease;
}

.commitment-grid article:hover {
  background: var(--graphite);
  color: var(--off-white);
}

.commitment-grid article:hover p,
.commitment-grid article:hover .mark,
.commitment-grid article:hover .commitment-icon {
  color: rgba(255, 255, 255, 0.72);
}

.commitment-grid article > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.mark,
.service-rows span,
.process-list strong,
.perspective-grid strong,
.work-grid span,
.journal-grid span {
  color: rgba(38, 36, 31, 0.44);
  font-family: var(--display);
}

.commitment-grid .mark {
  margin-top: 12px;
  color: rgba(38, 36, 31, 0.48);
  font-size: 22px;
  font-style: italic;
  line-height: 1;
}

.commitment-icon {
  display: block;
  width: 42px;
  height: 42px;
  color: var(--graphite);
}

.commitment-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.commitment-grid h3,
.service-rows strong,
.process-list h3,
.perspective-grid h3,
.voices-grid h3,
.faq-list summary {
  font-size: clamp(24px, 2.25vw, 34px);
  line-height: 1.12;
}

.commitment-grid h3 {
  margin-top: 86px;
  font-size: clamp(34px, 2.65vw, 48px);
  line-height: 1.06;
}

.commitment-grid p {
  max-width: 470px;
  margin-top: 28px;
  font-size: 19px;
  line-height: 1.65;
}

.projects-section {
  max-width: none;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 650px;
}

.filter-row button {
  min-height: 38px;
  padding: 10px 14px;
  border: 1px solid var(--stone);
  border-radius: 999px;
  background: transparent;
  color: var(--soft-ink);
  cursor: pointer;
}

.filter-row button.active,
.filter-row button:hover {
  background: var(--graphite);
  color: #fff;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 112px;
  grid-auto-flow: dense;
  align-items: stretch;
  gap: 28px;
  max-width: 1500px;
  margin: 0 auto;
}

.work-grid article {
  position: relative;
  overflow: hidden;
  grid-row: span 4;
  min-height: 0;
  background: var(--graphite);
}

.work-grid .work-tall {
  grid-row: span 6;
}

.work-grid .work-short {
  grid-row: span 3;
}

.work-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 700ms ease, opacity 700ms ease;
}

.work-grid article:hover img {
  transform: scale(1.06);
  opacity: 0.95;
}

.work-grid article > div {
  position: absolute;
  inset: auto 0 0;
  padding: 28px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.work-grid span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.work-grid h3 {
  margin-top: 10px;
  font-size: clamp(28px, 3vw, 42px);
}

.work-grid p,
.work-grid small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.center-link {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 14px;
  min-height: 59px;
  margin: 54px auto 0;
  padding: 20px 28px;
  border: 1px solid var(--graphite);
  color: var(--graphite);
}

.center-link:hover {
  background: var(--graphite);
  color: #fff;
}

.services-dark,
.faq-section,
.site-footer {
  background: var(--graphite);
  color: var(--off-white);
}

.faq-section {
  min-height: 520px;
  padding: 132px clamp(52px, 3.5vw, 66px) 0;
}

.faq-section .section-heading {
  display: grid;
  grid-template-columns: minmax(680px, 1fr) minmax(380px, 0.48fr);
  align-items: center;
  gap: 90px;
  max-width: none;
  margin: 0 auto;
  padding-bottom: 116px;
  border-bottom: 1px solid var(--white-faint);
}

.faq-section .section-heading h2 {
  max-width: 960px;
  color: #fff;
  font-size: clamp(64px, 5.85vw, 100px);
  line-height: 1.04;
}

.faq-section .section-heading > p {
  justify-self: end;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  line-height: 1.72;
}

.faq-section .eyebrow {
  margin-bottom: 34px;
}

.services-dark .section-heading > p,
.faq-section .section-heading > p,
.site-footer p {
  color: rgba(255, 255, 255, 0.62);
}

.service-rows,
.faq-list {
  max-width: 1500px;
  margin: 0 auto;
  border-top: 1px solid var(--white-faint);
}

.faq-section .faq-list {
  border-top: 0;
}

.service-rows a {
  display: grid;
  grid-template-columns: 90px 1fr 40px;
  align-items: center;
  gap: 28px;
  min-height: 92px;
  border-bottom: 1px solid var(--white-faint);
  transition: background 260ms ease, padding 260ms ease;
}

.service-rows a:hover {
  padding-inline: 24px;
  background: rgba(255, 255, 255, 0.05);
}

.service-rows span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 18px;
}

.service-rows strong {
  font-weight: 400;
}

.service-rows b {
  justify-self: end;
  font-weight: 300;
  opacity: 0.6;
}

.process-section {
  border-bottom: 1px solid var(--stone);
  padding-top: 118px;
  padding-bottom: 135px;
}

.process-list {
  display: grid;
  max-width: 1500px;
  margin: 0 auto;
  border-top: 1px solid var(--stone);
}

.process-list article {
  display: grid;
  grid-template-columns: 90px minmax(160px, 0.35fr) 1fr;
  align-items: start;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--stone);
}

.process-timeline {
  grid-template-columns: repeat(8, minmax(158px, 1fr));
  overflow-x: auto;
  gap: 0;
  padding-top: 68px;
  border-bottom: 0;
}

.process-timeline article {
  position: relative;
  display: block;
  min-width: 158px;
  padding: 0 28px 34px 0;
  border-bottom: 0;
}

.process-timeline article::before {
  content: "";
  position: absolute;
  top: -29px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--graphite);
}

.process-timeline h3 {
  margin-top: 34px;
  font-size: 17px;
}

.process-timeline p {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.55;
}

.process-list strong {
  color: rgba(38, 36, 31, 0.48);
  font-size: 34px;
  line-height: 1;
}

.perspective-grid,
.voices-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 1500px;
  margin: 0 auto;
  border-top: 1px solid var(--stone);
  border-left: 1px solid var(--stone);
}

.perspective-grid article,
.voices-grid article {
  padding: clamp(28px, 3.5vw, 46px);
  border-right: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  background: var(--off-white);
}

.perspective-grid strong {
  display: block;
  color: var(--graphite);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
}

.perspective-grid h3 {
  margin-top: 32px;
}

.perspective-grid p {
  margin-top: 16px;
}

.voices-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.voices-grid span {
  display: block;
  color: var(--graphite);
  font-family: var(--display);
  font-size: 64px;
  line-height: 0.8;
}

.voices-grid p {
  margin-top: 24px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1.24;
}

.voices-grid h3 {
  margin-top: 36px;
  font-size: 22px;
}

.voices-grid small {
  display: block;
  margin-top: 8px;
  color: var(--soft-ink);
}

.faq-list details {
  border-bottom: 1px solid var(--white-faint);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--sans);
  font-size: 24px;
}

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

.faq-list p {
  max-width: 820px;
  padding: 0 0 32px;
  color: rgba(255, 255, 255, 0.64);
}

.contact-section {
  align-items: start;
  grid-template-columns: minmax(380px, 0.42fr) minmax(560px, 0.58fr);
  gap: clamp(46px, 4.6vw, 72px);
  max-width: 1500px;
  min-height: 650px;
  padding: 34px clamp(28px, 4vw, 52px) 38px;
  background: var(--off-white);
}

.contact-section > div {
  padding-top: 0;
}

.contact-section .eyebrow {
  margin-bottom: 20px;
  font-size: 8px;
  letter-spacing: 0.46em;
}

.contact-section h2 {
  max-width: 520px;
  font-size: clamp(40px, 3.65vw, 64px);
  line-height: 1;
}

.contact-section > div > p {
  max-width: 440px;
  margin-top: 24px;
  font-size: 11px;
  line-height: 1.7;
}

.contact-cards {
  display: grid;
  gap: 7px;
  max-width: 455px;
  margin-top: 26px;
}

.contact-cards article {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
}

.contact-cards article::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(38, 36, 31, 0.54);
  border-radius: 50%;
}

.contact-cards span {
  display: block;
  margin: 0 0 3px 24px;
  color: var(--soft-ink);
  font-size: 8px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.contact-cards a,
.contact-cards p,
.social-row a {
  color: var(--ink);
  margin-left: 24px;
  font-size: 11px;
  line-height: 1.55;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 28px;
  max-width: 440px;
  margin-top: 30px;
  color: var(--soft-ink);
  font-size: 8px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.contact-section .button.dark {
  display: none;
}

.map-card {
  max-width: 455px;
  margin-top: 34px;
  border: 0;
  background: #fff;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
  filter: grayscale(1) contrast(0.92) brightness(1.03);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: start;
  min-height: 740px;
  gap: 24px 28px;
  padding: 44px clamp(44px, 4vw, 68px) 44px;
  background: var(--graphite);
  color: #fff;
}

.contact-form .form-eyebrow,
.contact-form h3,
.contact-form .wide,
.contact-form button,
.contact-form .form-note {
  grid-column: 1 / -1;
}

.contact-form .form-eyebrow {
  margin: 0 0 -12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
  letter-spacing: 0.42em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-form h3 {
  max-width: 620px;
  margin-bottom: 4px;
  color: #fff;
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 1;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
  letter-spacing: 0.36em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 32px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  background: transparent;
  color: #fff;
  outline: none;
  padding: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0;
}

.contact-form textarea {
  min-height: 82px;
  padding-top: 2px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.66);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.6);
}

.contact-form button {
  justify-self: start;
  min-height: 49px;
  min-width: 306px;
  margin-top: -2px;
  border: 1px solid #fff;
  background: #fff;
  color: var(--graphite);
  font-size: 8px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-form button:hover {
  background: var(--off-white);
}

.contact-form .form-note {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  letter-spacing: 0;
  text-transform: none;
}

.locations-section {
  border-top: 1px solid var(--stone);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1500px;
  margin: 0 auto;
}

.location-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--stone);
  background: #fff;
  transition: background 260ms ease, color 260ms ease;
}

.location-grid a:hover {
  background: var(--graphite);
  color: #fff;
}

.location-grid span {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.2;
}

.location-page {
  background: var(--off-white);
  color: var(--ink);
}

.location-header {
  position: sticky;
  height: 120px;
  background: var(--off-white);
  border-bottom: 1px solid var(--stone);
  color: var(--ink);
  backdrop-filter: none;
}

.location-header .brand,
.location-header .desktop-nav,
.location-header .nav-cta {
  color: var(--ink);
}

.location-header .brand img {
  filter: invert(1);
}

.location-header .nav-cta {
  min-width: 292px;
  border-color: var(--ink);
}

.location-header .nav-cta:hover {
  background: var(--graphite);
  color: #fff;
}

.location-hero {
  min-height: 520px;
  padding: 156px clamp(24px, 3.8vw, 72px) 118px;
  border-bottom: 1px solid var(--stone);
  background: var(--off-white);
}

.location-hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--forest);
}

.location-hero .eyebrow span {
  font-size: 20px;
  letter-spacing: 0;
}

.location-hero h1 {
  max-width: 1220px;
  margin-top: 44px;
  font-size: clamp(70px, 7vw, 136px);
  line-height: 0.95;
}

.location-hero > p:not(.eyebrow) {
  margin-top: 42px;
  color: rgba(38, 36, 31, 0.72);
  font-family: var(--display);
  font-size: clamp(25px, 2vw, 36px);
  font-style: italic;
  line-height: 1.3;
}

.location-practice {
  display: grid;
  grid-template-columns: minmax(420px, 0.48fr) minmax(420px, 0.52fr);
  gap: clamp(70px, 9vw, 160px);
  padding: 122px clamp(24px, 3.8vw, 72px) 118px;
  border-bottom: 1px solid var(--stone);
  background: var(--paper);
}

.location-practice article > p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 56px;
  color: rgba(38, 36, 31, 0.84);
  font-size: clamp(22px, 1.6vw, 29px);
  line-height: 1.75;
}

.location-practice aside {
  padding-top: 0;
}

.location-practice ul {
  margin-top: 36px;
}

.location-practice li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 68px;
  border-bottom: 1px solid var(--stone);
}

.location-practice li span {
  color: var(--forest);
  font-family: var(--sans);
  font-size: 22px;
}

.location-practice li strong {
  font-family: var(--display);
  font-size: clamp(26px, 1.85vw, 36px);
  font-weight: 400;
  line-height: 1.2;
}

.location-card-section {
  padding: 162px clamp(24px, 3.8vw, 72px) 130px;
  background: var(--paper);
}

.location-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.location-card-grid article {
  min-height: 238px;
  padding: 58px clamp(42px, 3.1vw, 64px);
  border: 1px solid var(--stone);
  background: #fff;
}

.location-card-grid span {
  color: rgba(38, 36, 31, 0.42);
  font-family: var(--display);
  font-size: 18px;
  font-style: italic;
}

.location-card-grid h3 {
  margin-top: 40px;
  font-size: clamp(34px, 2.55vw, 48px);
  line-height: 1.05;
}

.location-card-grid p {
  margin-top: 22px;
  color: rgba(38, 36, 31, 0.62);
  font-size: 18px;
  line-height: 1.65;
}

.location-talk {
  display: grid;
  place-items: center;
  min-height: 720px;
  padding: 120px 24px;
  background: var(--graphite);
  color: #fff;
  text-align: center;
}

.location-talk h2 {
  max-width: 1120px;
  margin-top: 42px;
  color: #fff;
  font-size: clamp(58px, 5.7vw, 108px);
  line-height: 0.98;
}

.location-talk .button {
  margin-top: 64px;
  min-width: 390px;
}

.location-related {
  padding: 86px clamp(24px, 3.8vw, 72px) 88px;
  background: var(--off-white);
}

.location-related > div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.location-related a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--stone);
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.location-related a:hover {
  background: var(--graphite);
  color: #fff;
}

.location-footer {
  padding-top: 116px;
}

.location-footer .footer-grid {
  padding-bottom: 88px;
}

.blog-page {
  background: var(--paper);
  color: var(--ink);
}

.blog-hero {
  min-height: 540px;
  padding: 156px clamp(24px, 3.8vw, 72px) 112px;
  border-bottom: 1px solid var(--stone);
  background: var(--off-white);
}

.blog-hero h1 {
  max-width: 1120px;
  margin-top: 42px;
  font-size: clamp(66px, 6.4vw, 122px);
  line-height: 0.96;
}

.blog-hero > p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 42px;
  color: rgba(38, 36, 31, 0.72);
  font-size: clamp(20px, 1.45vw, 28px);
  line-height: 1.55;
}

.blog-featured {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(420px, 1.05fr);
  min-height: 660px;
  border-bottom: 1px solid var(--stone);
  background: var(--paper);
}

.blog-featured-image {
  min-height: 660px;
  border-right: 1px solid var(--stone);
  overflow: hidden;
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86);
}

.blog-featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 7.2vw, 136px) clamp(28px, 5vw, 96px);
}

.blog-meta {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

.blog-featured-copy .blog-meta {
  margin-top: 34px;
}

.blog-featured-copy h2 {
  max-width: 840px;
  margin-top: 28px;
  font-size: clamp(44px, 4.2vw, 76px);
  line-height: 1.03;
}

.blog-featured-copy > p:not(.eyebrow):not(.blog-meta) {
  max-width: 720px;
  margin-top: 34px;
  color: rgba(38, 36, 31, 0.72);
  font-size: clamp(18px, 1.15vw, 23px);
  line-height: 1.75;
}

.blog-read {
  align-self: flex-start;
  margin-top: 44px;
  padding: 18px 28px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.blog-read:hover {
  background: var(--graphite);
  color: #fff;
}

.blog-grid-section {
  padding: 130px clamp(24px, 3.8vw, 72px) 138px;
  background: var(--off-white);
}

.blog-section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(420px, 0.64fr);
  gap: clamp(48px, 8vw, 150px);
  margin-bottom: 72px;
}

.blog-section-head > p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(38, 36, 31, 0.72);
  font-size: clamp(21px, 1.45vw, 29px);
  line-height: 1.62;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--stone);
  border-left: 1px solid var(--stone);
}

.blog-card {
  min-height: 520px;
  border-right: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  background: var(--paper);
}

.blog-card img {
  width: 100%;
  height: 265px;
  object-fit: cover;
  filter: saturate(0.82);
}

.blog-card-content {
  padding: 36px clamp(24px, 2.6vw, 48px) 44px;
}

.blog-card h2 {
  margin-top: 20px;
  font-size: clamp(28px, 2.1vw, 42px);
  line-height: 1.12;
}

.blog-card p:last-child {
  margin-top: 22px;
  color: rgba(38, 36, 31, 0.68);
  font-size: 16px;
  line-height: 1.7;
}

.blog-newsletter {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 118px clamp(24px, 3.8vw, 72px);
  background: var(--graphite);
  color: #fff;
  text-align: center;
}

.blog-newsletter h2 {
  max-width: 960px;
  margin-top: 28px;
  font-size: clamp(48px, 5.4vw, 92px);
  line-height: 1.02;
}

.blog-newsletter .light-button {
  margin-top: 50px;
}

.journal-landing {
  padding: 74px clamp(28px, 4.2vw, 82px) 132px;
  background: var(--paper);
}

.journal-landing h1 {
  max-width: 1000px;
  margin-top: 26px;
  font-size: clamp(56px, 5.2vw, 92px);
  line-height: 0.96;
}

.journal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 56px;
}

.journal-filters a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--stone);
  color: rgba(38, 36, 31, 0.56);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.journal-filters a.active,
.journal-filters a:hover {
  border-color: var(--graphite);
  background: var(--graphite);
  color: #fff;
}

.journal-list {
  display: grid;
  gap: 80px;
  margin-top: 38px;
  max-width: 1260px;
}

.journal-entry {
  display: grid;
  grid-template-columns: minmax(420px, 0.93fr) minmax(420px, 1fr);
  gap: clamp(46px, 6vw, 92px);
  align-items: center;
}

.journal-image {
  display: block;
  height: 520px;
  overflow: hidden;
  background: var(--stone);
}

.journal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
  transition: transform 700ms ease;
}

.journal-entry:hover .journal-image img {
  transform: scale(1.035);
}

.journal-copy {
  padding: 24px 0;
}

.journal-copy h2 {
  max-width: 680px;
  margin-top: 26px;
  font-size: clamp(38px, 3.2vw, 56px);
  line-height: 1.02;
}

.journal-copy h2 a {
  color: inherit;
}

.journal-copy > p:not(.blog-meta):not(.journal-byline) {
  max-width: 600px;
  margin-top: 24px;
  color: rgba(38, 36, 31, 0.66);
  font-size: 16px;
  line-height: 1.8;
}

.journal-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.journal-byline span {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--muted);
}

.journal-copy .blog-read {
  margin-top: 34px;
  padding: 0 0 9px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
}

.journal-copy .blog-read:hover {
  background: transparent;
  color: var(--muted);
}

.article-page {
  background: var(--paper);
  color: var(--ink);
}

.article-hero {
  padding: 74px clamp(28px, 4.2vw, 82px) 70px;
  border-bottom: 1px solid var(--stone);
}

.back-to-journal {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(38, 36, 31, 0.62);
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.article-category {
  margin-top: 62px;
  color: var(--olive);
  font-size: 13px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
  color: rgba(38, 36, 31, 0.58);
  font-size: 13px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.article-author span {
  width: 28px;
  height: 1px;
  background: rgba(38, 36, 31, 0.38);
}

.article-hero h1 {
  max-width: 1240px;
  margin-top: 26px;
  font-size: clamp(48px, 4.45vw, 82px);
  line-height: 1.02;
}

.article-standfirst {
  max-width: 760px;
  margin-top: 34px;
  color: rgba(38, 36, 31, 0.68);
  font-size: clamp(20px, 1.4vw, 27px);
  line-height: 1.58;
}

.article-cover {
  height: min(680px, 60vw);
  min-height: 360px;
  overflow: hidden;
  background: var(--stone);
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84);
}

.article-body {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(520px, 0.72fr);
  gap: clamp(46px, 9vw, 160px);
  padding: 118px clamp(28px, 4.2vw, 82px) 128px;
  background: var(--off-white);
}

.article-body aside {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.24em;
  line-height: 2;
  text-transform: uppercase;
}

.article-content {
  max-width: 860px;
}

.article-content h2 {
  margin: 62px 0 20px;
  font-size: clamp(34px, 3vw, 58px);
  line-height: 1.04;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content p {
  margin-top: 22px;
  color: rgba(38, 36, 31, 0.76);
  font-size: clamp(18px, 1.15vw, 22px);
  line-height: 1.82;
}

.article-content ul {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.article-content li {
  position: relative;
  padding-left: 26px;
  color: rgba(38, 36, 31, 0.76);
  font-size: clamp(18px, 1.1vw, 21px);
  line-height: 1.75;
}

.article-content li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--olive);
}

.article-cta {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 82px clamp(28px, 4.2vw, 82px);
  background: var(--graphite);
  color: #fff;
  text-align: center;
}

.article-cta h2 {
  max-width: 760px;
  font-size: clamp(34px, 3vw, 54px);
  line-height: 1.08;
}

.article-cta .light-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 430px;
  min-height: 70px;
  margin-top: 42px;
  padding: 0 42px;
  border: 1px solid #fff;
  background: #fff;
  color: var(--graphite);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.34em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.article-cta .light-button:hover {
  border-color: rgba(255, 255, 255, 0.82);
  background: transparent;
  color: #fff;
}

.article-cta .light-button span {
  margin-left: 26px;
  font-size: 18px;
  line-height: 1;
}

.service-page {
  background: var(--off-white);
  color: var(--ink);
}

.service-header {
  color: #fff;
}

.service-detail-hero {
  position: relative;
  min-height: 750px;
  display: grid;
  align-items: end;
  padding: 160px clamp(28px, 3.8vw, 72px) 125px;
  overflow: hidden;
  color: #fff;
  background: var(--graphite);
}

.service-detail-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.service-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.36) 48%, rgba(0, 0, 0, 0.42)),
    rgba(18, 18, 18, 0.36);
}

.service-detail-hero-content {
  position: relative;
  z-index: 1;
  width: min(1360px, 100%);
}

.service-detail-hero h1 {
  margin-top: 32px;
  color: #fff;
  font-size: clamp(76px, 7vw, 142px);
  line-height: 0.95;
}

.service-detail-hero-content > p:last-child {
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--display);
  font-size: 20px;
  font-style: italic;
  line-height: 1.35;
}

.service-overview,
.service-lists,
.service-process-detail,
.service-related {
  padding-inline: clamp(28px, 3.8vw, 72px);
}

.service-overview {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: clamp(48px, 7vw, 128px);
  align-items: start;
  min-height: 470px;
  padding-top: 160px;
  padding-bottom: 155px;
  border-bottom: 1px solid var(--stone);
  background: var(--off-white);
}

.service-overview h2 {
  max-width: 1180px;
  font-size: clamp(42px, 3.1vw, 64px);
  line-height: 1.08;
}

.service-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 5.4vw, 104px);
  padding-top: 126px;
  padding-bottom: 150px;
  border-bottom: 1px solid var(--stone);
  background: var(--paper);
}

.service-list-block ul {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.service-list-block li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
  align-items: baseline;
  min-height: 80px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(38, 36, 31, 0.08);
}

.service-list-major li span {
  color: var(--forest);
  font-size: 18px;
}

.service-list-major strong {
  font-size: clamp(28px, 2vw, 37px);
  line-height: 1.08;
}

.service-list-minor li {
  grid-template-columns: 26px 1fr;
  color: var(--ink);
  font-size: clamp(17px, 1.05vw, 20px);
  line-height: 1.45;
}

.service-list-minor li span {
  color: rgba(38, 36, 31, 0.48);
}

.service-process-detail {
  padding-top: 160px;
  padding-bottom: 180px;
  background: var(--off-white);
}

.service-process-detail h2 {
  margin-top: 28px;
  max-width: 760px;
  font-size: clamp(54px, 4.3vw, 82px);
  line-height: 1.02;
}

.service-process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 28px;
  margin: 104px 0 0;
  padding: 0;
  list-style: none;
}

.service-process-line::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--graphite);
}

.service-process-line li {
  position: relative;
  min-width: 0;
  padding-top: 50px;
}

.service-process-line li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--graphite);
}

.service-process-line span {
  display: block;
  margin-bottom: 22px;
  color: rgba(38, 36, 31, 0.55);
  font-family: var(--display);
  font-size: 14px;
  font-style: italic;
}

.service-process-line strong {
  display: block;
  max-width: 190px;
  font-size: clamp(22px, 1.45vw, 29px);
  line-height: 1.08;
}

.service-talk {
  display: grid;
  place-items: center;
  min-height: 620px;
  padding: 120px clamp(24px, 3.8vw, 72px);
  text-align: center;
  background: var(--graphite);
  color: #fff;
}

.service-talk h2 {
  width: min(1120px, 100%);
  margin: 30px auto 52px;
  color: #fff;
  font-size: clamp(58px, 5.2vw, 100px);
  line-height: 0.98;
}

.service-talk .button {
  min-width: min(390px, 100%);
  background: #fff;
  color: #111;
  border-color: #fff;
}

.service-related {
  padding-top: 92px;
  padding-bottom: 100px;
  background: var(--off-white);
}

.service-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 46px;
}

.service-related-grid a {
  position: relative;
  min-height: 126px;
  padding: 30px 62px 28px 30px;
  border: 1px solid var(--stone);
  background: rgba(255, 255, 255, 0.16);
  transition: background 260ms ease, border-color 260ms ease, transform 260ms ease;
}

.service-related-grid a:hover {
  background: #fff;
  border-color: rgba(38, 36, 31, 0.34);
  transform: translateY(-3px);
}

.service-related-grid a > span {
  position: absolute;
  top: 32px;
  right: 34px;
  color: rgba(38, 36, 31, 0.45);
  font-size: 30px;
  line-height: 1;
}

.service-related-grid strong {
  display: block;
  font-size: clamp(25px, 1.7vw, 32px);
  line-height: 1.1;
}

.service-related-grid small {
  display: block;
  margin-top: 10px;
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.5;
}

.appointment-page {
  background: var(--paper);
  color: var(--ink);
}

.appointment-hero {
  padding: 96px clamp(24px, 3.8vw, 72px) 58px;
  background: var(--off-white);
}

.appointment-hero h1 {
  max-width: 780px;
  margin-top: 34px;
  font-size: clamp(58px, 5.05vw, 96px);
  line-height: 1;
}

.appointment-hero > p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 30px;
  color: rgba(38, 36, 31, 0.72);
  font-size: clamp(18px, 1.08vw, 22px);
  line-height: 1.55;
}

.appointment-flow {
  display: grid;
  grid-template-columns: 260px minmax(0, 990px);
  gap: clamp(42px, 5.5vw, 92px);
  align-items: start;
  padding: 42px clamp(24px, 3.8vw, 72px) 136px;
  background: var(--paper);
}

.appointment-steps {
  position: sticky;
  top: 142px;
  display: grid;
  gap: 28px;
  padding-top: 6px;
}

.appointment-steps article {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 20px;
  align-items: center;
}

.appointment-steps span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 14px;
}

.appointment-steps .complete span {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
}

.appointment-steps .active span {
  border-color: var(--graphite);
  background: var(--graphite);
  color: #fff;
}

.appointment-steps article:not(.active):not(.complete) {
  opacity: 0.48;
}

.appointment-steps p {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.appointment-steps strong {
  margin-top: 6px;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
}

.appointment-form {
  display: grid;
  gap: 50px;
}

.appointment-card {
  padding: 52px;
  border: 1px solid var(--stone);
  background: #fff;
}

.appointment-card.disabled {
  opacity: 0.46;
}

.appointment-card.is-hidden {
  display: none;
}

.appointment-card.disabled button,
.appointment-card.disabled input,
.appointment-card.disabled select,
.appointment-card.disabled textarea {
  cursor: not-allowed;
}

.appointment-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  color: var(--forest);
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.appointment-label span {
  letter-spacing: 0;
  font-size: 18px;
}

.calendar-shell {
  display: grid;
  gap: 18px;
}

.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.calendar-toolbar strong {
  font-family: var(--display);
  font-size: clamp(28px, 2.4vw, 40px);
  font-weight: 400;
}

.calendar-toolbar button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--stone);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
}

.calendar-toolbar button:hover {
  background: var(--graphite);
  color: #fff;
}

.calendar-toolbar button:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.calendar-toolbar button:disabled:hover {
  background: #fff;
  color: var(--ink);
}

.calendar-weekdays {
  display: none;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.calendar-weekdays span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.date-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.date-grid button,
.time-grid button,
.mode-grid button {
  border: 1px solid var(--stone);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.date-grid button {
  display: grid;
  justify-items: start;
  min-height: 94px;
  padding: 14px 14px;
  text-align: left;
}

.date-grid button.outside-month {
  opacity: 0.28;
}

.date-grid button:disabled {
  opacity: 0.22;
  cursor: not-allowed;
}

.date-grid span,
.date-grid em {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.date-grid strong {
  margin-top: 10px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.date-grid em {
  margin-top: 4px;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.time-grid button {
  min-height: 68px;
  font-family: var(--font-sans);
  font-size: 18px;
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mode-grid button {
  display: grid;
  gap: 22px;
  justify-items: start;
  min-height: 124px;
  padding: 26px;
  font-family: var(--display);
  font-size: 24px;
  text-align: left;
}

.mode-grid span {
  color: inherit;
  font-family: var(--font-sans);
  font-size: 18px;
}

.date-grid button:hover,
.time-grid button:hover,
.mode-grid button:hover,
.date-grid button.selected,
.time-grid button.selected,
.mode-grid button.selected {
  border-color: var(--graphite);
  background: var(--graphite);
  color: #fff;
}

.date-grid button:disabled:hover,
.appointment-card.disabled button:hover {
  border-color: var(--stone);
  background: #fff;
  color: var(--ink);
}

.date-grid button.selected span,
.date-grid button.selected em {
  color: rgba(255, 255, 255, 0.68);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 30px;
}

.details-grid label {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.details-grid input,
.details-grid select,
.details-grid textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--stone);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: 20px var(--font-sans);
  letter-spacing: 0;
  outline: none;
  text-transform: none;
}

.details-grid input,
.details-grid select {
  min-height: 48px;
}

.details-grid textarea {
  min-height: 150px;
  resize: vertical;
}

.details-grid .wide {
  grid-column: 1 / -1;
}

.booking-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 42px;
}

.booking-summary p {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.booking-summary button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-width: 306px;
  min-height: 62px;
  border: 1px solid var(--graphite);
  background: var(--graphite);
  color: #fff;
  cursor: pointer;
  padding: 0 28px;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.booking-summary button:disabled {
  opacity: 0.36;
  cursor: not-allowed;
}

.appointment-form .form-note {
  margin-top: 20px;
  color: var(--forest);
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 540px;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.final-cta > div {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.final-cta article {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  padding: 80px 24px;
}

.final-cta h2 {
  max-width: 920px;
  color: #fff;
  font-size: clamp(42px, 6.8vw, 92px);
}

.final-cta .button {
  margin-top: 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.8fr) 0.8fr 0.9fr 1.1fr;
  gap: clamp(34px, 6vw, 86px);
  max-width: 1500px;
  margin: 0 auto;
  padding: 76px clamp(24px, 4vw, 52px);
}

.footer-brand img {
  width: 48px;
}

.site-footer nav,
.footer-grid > div:last-child {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer nav span,
.footer-grid > div:last-child > span {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.35em;
}

.site-footer nav a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.journal-form {
  display: flex;
  max-width: 390px;
  margin-top: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.journal-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #fff;
  outline: none;
  padding: 14px 0;
}

.journal-form button {
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 22px clamp(24px, 4vw, 52px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  transition: transform 260ms ease;
}

.whatsapp:hover {
  transform: scale(1.08);
}

.popup-open {
  overflow: hidden;
}

.consultation-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.consultation-popup.popup-visible {
  opacity: 1;
  pointer-events: auto;
}

.consultation-popup-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1fr);
  width: min(780px, calc(100vw - 64px));
  max-height: min(620px, calc(100vh - 64px));
  overflow: hidden;
  background: var(--off-white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

.consultation-popup-image {
  min-height: 450px;
}

.consultation-popup-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consultation-popup-content {
  position: relative;
  padding: 42px 42px 44px;
  background: var(--off-white);
}

.consultation-popup-close {
  position: absolute;
  top: 18px;
  right: 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.consultation-popup-content .eyebrow {
  margin-bottom: 20px;
  color: var(--forest);
  font-size: 11px;
  letter-spacing: 0.42em;
}

.consultation-popup-content h2 {
  max-width: 340px;
  font-size: clamp(31px, 2.25vw, 38px);
  line-height: 1.1;
}

.consultation-popup-content p:not(.eyebrow):not(.popup-note) {
  max-width: 340px;
  margin-top: 18px;
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.55;
}

.consultation-popup-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.consultation-popup-form input {
  min-height: 52px;
  border: 1px solid var(--stone);
  background: #fff;
  padding: 0 20px;
  color: var(--ink);
  font: 16px var(--font-sans);
  outline: none;
}

.consultation-popup-form input:focus {
  border-color: var(--ink);
}

.consultation-popup-form button {
  min-height: 58px;
  border: 1px solid var(--graphite);
  background: var(--graphite);
  color: #fff;
  cursor: pointer;
  font: 700 11px var(--font-sans);
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.popup-note {
  min-height: 18px;
  color: var(--soft-ink);
  font-size: 13px;
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

@keyframes scrollLine {
  from {
    transform: translateY(-32px);
  }
  to {
    transform: translateY(70px);
  }
}

@keyframes loadingLine {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1500px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-button,
  .mobile-panel {
    display: block;
  }

  .commitment-grid,
  .work-grid,
  .perspective-grid,
  .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-rows a {
    grid-template-columns: 64px 1fr 32px;
  }

  .faq-section {
    padding-inline: 32px;
  }

  .faq-section .section-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .faq-section .section-heading > p {
    justify-self: start;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-section h2,
  .contact-section > div > p,
  .contact-cards,
  .social-row {
    max-width: 620px;
  }

  .location-header {
    height: 86px;
  }

  .location-practice,
  .location-card-grid {
    grid-template-columns: 1fr;
  }

  .blog-featured,
  .blog-section-head {
    grid-template-columns: 1fr;
  }

  .blog-featured-image {
    border-right: 0;
    border-bottom: 1px solid var(--stone);
  }

  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journal-entry,
  .article-body {
    grid-template-columns: 1fr;
  }

  .location-hero {
    padding-top: 120px;
  }

  .location-talk {
    min-height: 560px;
  }
}

@media (min-width: 1181px) and (max-height: 760px) {
  .hero-copy {
    padding-top: 122px;
    padding-bottom: 48px;
  }

  .hero h1 {
    max-width: 980px;
    font-size: clamp(48px, 6.2vw, 86px);
    line-height: 1;
  }

  .hero-copy > p:not(.eyebrow) {
    margin-top: 18px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 24px;
  }
}

@media (max-width: 780px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-header {
    height: 78px;
    padding-inline: 20px;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand small {
    letter-spacing: 0.36em;
  }

  .vertical-note,
  .scroll-note {
    display: none;
  }

  .hero-copy {
    padding-inline: 22px;
    padding-bottom: 64px;
  }

  .hero h1,
  .section-heading h2,
  .split-section h2,
  .contact-section h2,
  .final-cta h2 {
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .button,
  .center-link {
    width: 100%;
  }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section,
  .contact-section,
  .two-copy,
  .section-heading,
  .process-list article,
  .service-rows a,
  .footer-grid,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

  .filter-row {
    justify-content: flex-start;
    gap: 8px;
  }

  .filter-row button {
    min-height: 34px;
    padding: 8px 10px;
    font-size: 9px;
  }

  .commitment-grid,
  .work-grid,
  .perspective-grid,
  .voices-grid,
  .location-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .work-grid article {
    grid-row: auto;
    min-height: 430px;
  }

  .commitment-grid article {
    min-height: 300px;
    padding: 42px 28px;
  }

  .commitment-grid h3 {
    margin-top: 58px;
    font-size: 30px;
  }

  .commitment-grid p {
    font-size: 15px;
  }

  .work-grid .work-tall,
  .work-grid .work-short {
    grid-row: auto;
    min-height: 430px;
  }

  .work-grid {
    grid-auto-rows: auto;
  }

  .service-rows a {
    gap: 10px;
    padding-block: 24px;
  }

  .service-rows b {
    justify-self: start;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    overflow-x: visible;
    padding-top: 42px;
  }

  .process-timeline article {
    min-width: 0;
    padding-left: 20px;
  }

  .process-timeline article::before {
    top: 3px;
    left: 0;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .contact-form button {
    min-width: 100%;
  }

  .location-hero {
    min-height: auto;
    padding: 116px 22px 74px;
  }

  .location-hero h1 {
    margin-top: 28px;
    font-size: clamp(48px, 14vw, 72px);
  }

  .location-hero > p:not(.eyebrow) {
    margin-top: 26px;
    font-size: 22px;
  }

  .location-practice,
  .location-card-section,
  .location-related {
    padding-inline: 22px;
  }

  .location-practice {
    gap: 56px;
    padding-block: 74px;
  }

  .location-practice article > p:not(.eyebrow) {
    margin-top: 30px;
    font-size: 19px;
  }

  .location-card-section {
    padding-block: 86px;
  }

  .location-card-grid article {
    min-height: 220px;
    padding: 36px 28px;
  }

  .location-card-grid h3 {
    margin-top: 34px;
    font-size: 32px;
  }

  .location-talk h2 {
    font-size: clamp(42px, 13vw, 66px);
  }

  .location-talk .button {
    min-width: 100%;
  }

  .blog-hero {
    min-height: auto;
    padding: 116px 22px 74px;
  }

  .blog-hero h1 {
    margin-top: 28px;
    font-size: clamp(46px, 12vw, 68px);
  }

  .blog-hero > p:not(.eyebrow) {
    margin-top: 26px;
    font-size: 19px;
  }

  .blog-featured {
    min-height: auto;
  }

  .blog-featured-image {
    min-height: 360px;
  }

  .blog-featured-copy {
    padding: 54px 22px 62px;
  }

  .blog-featured-copy h2 {
    font-size: clamp(36px, 10vw, 56px);
  }

  .blog-grid-section {
    padding: 78px 22px 88px;
  }

  .blog-section-head {
    gap: 26px;
    margin-bottom: 46px;
  }

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

  .blog-card {
    min-height: auto;
  }

  .blog-card img {
    height: 240px;
  }

  .blog-card-content {
    padding: 30px 24px 36px;
  }

  .blog-newsletter {
    min-height: 470px;
    padding: 86px 22px;
  }

  .blog-newsletter h2 {
    font-size: clamp(42px, 12vw, 64px);
  }

  .blog-newsletter .light-button {
    width: 100%;
  }

  .journal-landing {
    padding: 104px 22px 82px;
  }

  .journal-landing h1 {
    font-size: clamp(44px, 12vw, 68px);
  }

  .journal-filters {
    gap: 8px;
    margin-top: 34px;
  }

  .journal-filters a {
    min-height: 34px;
    padding: 0 12px;
    font-size: 9px;
  }

  .journal-list {
    gap: 62px;
    margin-top: 28px;
  }

  .journal-entry {
    gap: 30px;
  }

  .journal-image {
    height: 300px;
  }

  .journal-copy {
    padding: 0;
  }

  .journal-copy h2 {
    margin-top: 18px;
    font-size: clamp(34px, 9vw, 48px);
  }

  .article-hero {
    padding: 92px 22px 50px;
  }

  .back-to-journal {
    gap: 10px;
    font-size: 10px;
    letter-spacing: 0.26em;
  }

  .article-category {
    margin-top: 46px;
    font-size: 11px;
    letter-spacing: 0.28em;
  }

  .article-author {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
    font-size: 10px;
    letter-spacing: 0.24em;
  }

  .article-hero h1 {
    font-size: clamp(36px, 10vw, 54px);
  }

  .article-cover {
    min-height: 280px;
    height: 58vw;
  }

  .article-body {
    gap: 34px;
    padding: 72px 22px 84px;
  }

  .article-body aside {
    line-height: 1.7;
  }

  .article-content h2 {
    margin-top: 46px;
    font-size: clamp(31px, 8.4vw, 44px);
  }

  .article-cta {
    min-height: 300px;
    padding: 64px 22px;
  }

  .article-cta h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .article-cta .light-button {
    width: 100%;
    min-width: 0;
    min-height: 64px;
    margin-top: 34px;
    padding: 0 24px;
    font-size: 10px;
    letter-spacing: 0.24em;
  }

  .appointment-hero {
    padding: 82px 22px 44px;
  }

  .appointment-hero h1 {
    font-size: clamp(38px, 10.5vw, 58px);
  }

  .appointment-flow {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 34px 22px 82px;
  }

  .appointment-steps {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .appointment-card {
    padding: 30px 22px;
  }

  .date-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .calendar-grid,
  .calendar-weekdays {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .calendar-weekdays {
    gap: 4px;
  }

  .calendar-weekdays span {
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .calendar-grid {
    gap: 4px;
  }

  .calendar-grid button {
    min-height: 54px;
    padding: 8px 6px;
  }

  .calendar-grid strong {
    margin-top: 5px;
    font-size: 20px;
  }

  .calendar-grid span,
  .calendar-grid em {
    font-size: 9px;
    letter-spacing: 0.04em;
  }

  .time-grid,
  .mode-grid,
  .details-grid {
    grid-template-columns: 1fr;
  }

  .mode-grid button {
    min-height: 94px;
  }

  .booking-summary {
    display: grid;
  }

  .booking-summary button {
    width: 100%;
    min-width: 0;
  }

  .final-cta {
    min-height: 460px;
  }

  .whatsapp {
    width: 54px;
    height: 54px;
    right: 18px;
    bottom: 18px;
  }

  .consultation-popup {
    padding: 14px;
  }

  .consultation-popup-card {
    grid-template-columns: 1fr;
    width: min(560px, 100%);
    max-height: calc(100svh - 28px);
    overflow: auto;
  }

  .consultation-popup-image {
    min-height: 220px;
  }

  .consultation-popup-content {
    padding: 34px 24px 30px;
  }

  .consultation-popup-content .eyebrow {
    margin-bottom: 18px;
  }

  .consultation-popup-content h2 {
    font-size: clamp(32px, 10vw, 42px);
  }
}

@media (max-width: 520px) {
  .editorial-section,
  .discipline,
  .projects-section,
  .services-dark,
  .process-section,
  .perspective-section,
  .voices-section,
  .faq-section,
  .contact-section,
  .locations-section {
    padding-inline: 18px;
  }

  .stats-band {
    grid-template-columns: 1fr;
  }

  .commitment-grid article,
  .location-card-grid article {
    padding-inline: 22px;
  }

  .contact-form {
    gap: 20px;
  }

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

  .date-grid {
    gap: 10px;
  }

  .date-grid button {
    min-height: 98px;
  }

  .calendar-grid button {
    min-height: 48px;
  }

  .appointment-label,
  .booking-summary p {
    letter-spacing: 0.26em;
  }

  .booking-summary button {
    padding-inline: 18px;
    letter-spacing: 0.24em;
  }

  .consultation-popup {
    padding: 10px;
  }

  .consultation-popup-image {
    min-height: 185px;
  }

  .consultation-popup-content {
    padding: 30px 20px 24px;
  }

  .consultation-popup-form button {
    letter-spacing: 0.24em;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }

  .location-practice li {
    grid-template-columns: 28px 1fr;
  }

  .location-related a {
    width: 100%;
  }

  .footer-bottom {
    gap: 12px;
    text-align: left;
  }
}

@media (max-width: 980px) {
  .service-overview,
  .service-lists {
    grid-template-columns: 1fr;
  }

  .service-related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .service-detail-hero {
    min-height: 560px;
    padding: 126px 22px 78px;
  }

  .service-detail-hero h1 {
    font-size: clamp(48px, 15vw, 78px);
  }

  .service-detail-hero-content > p:last-child {
    margin-top: 24px;
    font-size: 17px;
  }

  .service-overview,
  .service-lists,
  .service-process-detail,
  .service-related {
    padding-inline: 22px;
  }

  .service-overview {
    min-height: 0;
    padding-top: 82px;
    padding-bottom: 86px;
    gap: 34px;
  }

  .service-overview h2,
  .service-process-detail h2 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .service-lists {
    padding-top: 78px;
    padding-bottom: 86px;
    gap: 64px;
  }

  .service-list-block li {
    min-height: 68px;
    padding: 20px 0;
  }

  .service-list-major strong {
    font-size: clamp(25px, 7.5vw, 34px);
  }

  .service-process-detail {
    padding-top: 84px;
    padding-bottom: 96px;
    overflow: hidden;
  }

  .service-process-line {
    display: flex;
    gap: 52px;
    overflow-x: auto;
    margin-top: 68px;
    padding-bottom: 16px;
  }

  .service-process-line li {
    flex: 0 0 156px;
  }

  .service-process-line strong {
    font-size: 23px;
  }

  .service-talk {
    min-height: 500px;
    padding: 90px 22px;
  }

  .service-talk h2 {
    font-size: clamp(42px, 13vw, 66px);
  }

  .service-related {
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .service-related-grid a {
    min-height: 112px;
    padding: 26px 56px 24px 24px;
  }
}

/* Hostinger final overrides: form, blog, and article repairs */
.contact-form select,
.contact-form select option,
.contact-form select:focus option {
  background: #121212 !important;
  color: #fff !important;
}

.contact-form .form-note[hidden] {
  display: none !important;
}

.contact-form .form-note {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.contact-form .form-note.success {
  color: #dfe8d8;
}

.contact-form .form-note.error {
  color: #ffb4a7;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.blog-page {
  width: 100%;
  max-width: none;
  padding: 0;
  background: var(--off-white);
}

.blog-page .blog-hero {
  max-width: 1180px;
  padding: clamp(96px, 10vw, 150px) clamp(24px, 4vw, 74px) 42px;
}

.blog-page .blog-hero h1 {
  margin: 18px 0 30px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(58px, 6.7vw, 86px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.blog-filters button {
  min-height: 34px;
  padding: 0 18px;
  border: 1px solid var(--stone);
  background: transparent;
  color: #6f746e;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.blog-filters button.active {
  border-color: var(--graphite);
  background: var(--graphite);
  color: #fff;
}

.featured-post {
  display: grid;
  grid-template-columns: minmax(300px, 560px) minmax(280px, 520px);
  align-items: center;
  gap: 56px;
  padding: 0 clamp(24px, 4vw, 74px) 66px;
  border-bottom: 1px solid rgba(224, 217, 204, 0.8);
}

.featured-post > img {
  display: block;
  width: 100%;
  height: 410px;
  object-fit: cover;
}

.featured-post article {
  padding-top: 12px;
}

.featured-post h2,
.blog-page .blog-card > h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
}

.featured-post h2 {
  margin: 16px 0 18px;
  font-size: clamp(34px, 3.6vw, 46px);
  line-height: 0.98;
}

.featured-post article > p:not(.eyebrow):not(.post-meta) {
  max-width: 520px;
  margin-bottom: 26px;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.8;
}

.post-meta {
  color: #858b91;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.blog-page .blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 0 clamp(24px, 4vw, 74px) 90px;
}

.blog-page .blog-card {
  display: block;
  overflow: hidden;
  padding-bottom: 28px;
  border: 1px solid rgba(224, 217, 204, 0.85);
  background: rgba(255, 255, 255, 0.45);
}

.blog-page .blog-card img {
  display: block;
  width: 100%;
  height: 300px;
  margin: 0 0 26px;
  object-fit: cover;
}

.blog-page .blog-card > .eyebrow,
.blog-page .blog-card > h2,
.blog-page .blog-card > p:not(.eyebrow),
.blog-page .blog-card > .post-meta {
  margin-right: 32px;
  margin-left: 32px;
}

.blog-page .blog-card > h2 {
  margin-top: 14px;
  margin-bottom: 14px;
  font-size: clamp(29px, 2.4vw, 36px);
  line-height: 1.04;
}

.blog-page .blog-card > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.75;
}

.article-cta {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 96px 24px;
  background: var(--graphite);
  color: #fff;
  text-align: center;
}

.article-cta h2 {
  max-width: 900px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 4.8vw, 64px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

.article-cta .button.light,
.article-cta .light-button {
  display: inline-flex;
  min-width: 390px;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 34px;
  border: 0;
  background: #fff;
  color: #111;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.34em;
  line-height: 1;
  text-transform: uppercase;
}

.article-page .article-head {
  padding: 74px clamp(24px, 4vw, 74px) 46px;
  border-top: 1px solid rgba(224, 217, 204, 0.75);
}

.article-head .back-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 54px;
  color: #7a8188;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.article-head h1 {
  max-width: 1280px;
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: clamp(42px, 4.9vw, 64px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

.article-page > img.article-cover,
.article-cover img {
  display: block;
  width: 100%;
  height: min(56vw, 680px);
  object-fit: cover;
}

.article-page > article.article-body,
.article-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 58px 120px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 90px 24px 110px;
}

.article-body p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 18px;
  line-height: 1.55;
}

.article-body h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
}

@media (max-width: 900px) {
  .featured-post,
  .blog-page .blog-grid,
  .article-page > article.article-body,
  .article-body {
    grid-template-columns: 1fr;
  }

  .featured-post {
    gap: 28px;
  }

  .article-cta .button.light,
  .article-cta .light-button {
    min-width: 0;
    width: min(100%, 390px);
  }
}

@media (max-width: 620px) {
  .blog-page .blog-hero {
    padding-top: 68px;
  }

  .blog-page .blog-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .featured-post > img,
  .blog-page .blog-card img {
    height: 260px;
  }

  .blog-page .blog-card > .eyebrow,
  .blog-page .blog-card > h2,
  .blog-page .blog-card > p:not(.eyebrow),
  .blog-page .blog-card > .post-meta {
    margin-right: 22px;
    margin-left: 22px;
  }

  .article-cta {
    min-height: 320px;
    padding: 72px 22px;
  }
}

/* =========================================================
   Final UI stabilization — August 2026
   Header, forms, appointment calendar, journal and CTAs
   ========================================================= */
:root { --font-sans: var(--sans); }

/* Global header: requested information architecture with usable desktop width. */
.site-header {
  gap: 22px;
  padding-inline: clamp(22px, 3.2vw, 52px);
}
.site-header .brand { flex: 0 0 auto; }
.desktop-nav {
  flex: 1 1 auto;
  min-width: 0;
  gap: clamp(10px, 1vw, 18px);
  font-size: 10px;
  letter-spacing: .14em;
  white-space: nowrap;
}
.nav-dropdown-menu { min-width: 268px; }
.nav-dropdown-menu a { font-size: 10px; letter-spacing: .11em; }
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-cta {
  flex: 0 0 auto;
  min-width: 210px;
  min-height: 50px;
  padding: 15px 20px;
  font-size: 10px;
  letter-spacing: .16em;
}
.location-header .nav-cta { min-width: 210px; }
.location-header .menu-button { color: var(--ink); }

@media (min-width: 1201px) {
  .desktop-nav { display: flex !important; }
  .menu-button, .mobile-panel { display: none !important; }
}

@media (min-width: 1201px) and (max-width: 1399px) {
  .site-header { padding-inline: 24px; gap: 16px; }
  .desktop-nav { gap: 9px; font-size: 9px; letter-spacing: .1em; }
  .nav-cta { display: none !important; }
}

@media (min-width: 1400px) {
  .nav-cta { display: inline-flex !important; }
}

@media (max-width: 1200px) {
  .site-header { height: 82px; }
  .header-solid { height: 74px; }
  .location-header { height: 82px; }
  .mobile-panel { inset: 82px 0 auto; max-height: calc(100vh - 82px); overflow-y: auto; }
  .header-solid + .mobile-panel { inset: 74px 0 auto; }
}

/* Homepage form: readable native select menus and explicit feedback. */
.contact-form select {
  color: #fff;
  background-color: transparent;
}
.contact-form select option,
.contact-form select optgroup {
  background: #fff !important;
  color: #171717 !important;
}
.contact-form .form-note {
  min-height: 22px;
  margin: 6px 0 0;
  padding: 10px 12px;
  border-left: 2px solid transparent;
  font-size: 11px;
  line-height: 1.55;
}
.contact-form .form-note.success {
  border-left-color: #9fba91;
  background: rgba(159, 186, 145, .10);
  color: #e7f1e1;
}
.contact-form .form-note.error {
  border-left-color: #ff9c8d;
  background: rgba(255, 156, 141, .08);
  color: #ffc8bf;
}
.contact-form .form-note:not(.success):not(.error) { color: rgba(255,255,255,.65); }
.contact-form button:disabled { cursor: wait; opacity: .62; }

/* Homepage contextual interlinks requested between About, Projects and Contact. */
.section-crosslinks,
.center-link-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
}
.section-crosslinks { margin-top: 34px; }
.section-crosslinks a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.center-link-group {
  justify-content: center;
  margin-top: 42px;
}
.center-link-group .center-link { margin: 0; }
.contact-crosslinks { margin-top: 28px; color: var(--soft-ink); }

/* Appointment calendar: full current month, aligned weekdays, visible today marker. */
.calendar-weekdays { display: grid; }
.calendar-spacer { min-height: 94px; }
.date-grid button.is-today {
  border-color: var(--forest);
  box-shadow: inset 0 0 0 1px var(--forest);
}
.date-grid button.is-today:not(.selected) em {
  color: var(--forest);
  font-weight: 600;
}
.date-grid button:disabled {
  background: #f6f3ed;
  color: #aaa49a;
}
.date-grid button:disabled span,
.date-grid button:disabled em { color: #b7b1a7; }
.appointment-form .form-note {
  min-height: 22px;
  padding: 12px 14px;
  border-left: 2px solid var(--forest);
  background: rgba(70, 88, 59, .07);
  color: var(--forest);
  line-height: 1.55;
}
.appointment-form .form-note.error {
  border-left-color: #b42318;
  background: #fff5f3;
  color: #9d2117;
}

/* Journal/blog: consistent category controls, cards and CTA spacing. */
.blog-page { overflow: hidden; }
.blog-page .blog-hero,
.journal-landing { box-sizing: border-box; }
.blog-filters,
.journal-filters {
  align-items: center;
  gap: 10px;
}
.blog-filters button,
.journal-filters a {
  line-height: 1;
  white-space: nowrap;
}
.blog-filters button { border-radius: 0; }
.blog-page .blog-grid { align-items: stretch; }
.blog-page .blog-card { height: 100%; overflow: hidden; }
.blog-page .blog-card[hidden],
.featured-post[hidden],
.journal-entry[hidden] { display: none !important; }
.journal-entry { min-width: 0; }
.journal-copy, .journal-copy h2, .journal-copy p { min-width: 0; }
.article-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  min-height: 360px;
  padding: 82px clamp(24px, 4vw, 72px);
}
.article-cta h2 {
  margin: 0 !important;
  max-width: 820px;
  text-wrap: balance;
}
.article-cta .button.light,
.article-cta .light-button {
  margin-top: 0 !important;
  min-width: 0;
  width: auto;
  max-width: 100%;
  min-height: 62px;
  padding: 18px 30px;
  gap: 18px;
  text-align: center;
}

/* Dynamic article body had conflicting two-column overrides; restore readable flow. */
.article-page > article.article-body,
.article-body {
  display: block;
  max-width: 900px;
  margin: 0 auto;
  padding: 88px 28px 108px;
}
.article-body p {
  margin: 0 0 30px;
  font-size: clamp(17px, 1.15vw, 20px);
  line-height: 1.75;
}
.article-body h2,
.article-body h3 {
  margin: 52px 0 18px;
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.12;
}
.article-body h3 { font-size: clamp(28px, 2.4vw, 42px); }

@media (max-width: 900px) {
  .journal-entry { grid-template-columns: 1fr; gap: 26px; }
  .journal-image { height: min(64vw, 420px); }
  .section-crosslinks, .center-link-group { gap: 12px 20px; }
}

@media (max-width: 620px) {
  .calendar-weekdays { display: grid; gap: 4px; }
  .calendar-weekdays span { font-size: 9px; letter-spacing: .06em; text-align: center; }
  .date-grid { gap: 4px; }
  .calendar-spacer { min-height: 66px; }
  .date-grid button { min-height: 66px; padding: 8px 6px; }
  .date-grid span { display: none; }
  .date-grid strong { margin-top: 0; font-size: 22px; }
  .date-grid em { font-size: 8px; letter-spacing: .04em; }
  .article-cta { gap: 26px; min-height: 300px; padding: 62px 22px; }
  .article-cta .button.light, .article-cta .light-button { width: 100%; }
  .section-crosslinks, .center-link-group { flex-direction: column; align-items: flex-start; }
  .center-link-group { align-items: center; }
}
.calendar-current-date {
  margin: -2px 0 2px;
  color: var(--forest);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.journal-form { flex-wrap: wrap; }
.journal-form .form-note {
  flex: 0 0 100%;
  margin: 0;
  padding: 8px 0 10px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  line-height: 1.45;
}
.journal-form .form-note.success { color: #dfe8d8; }
.journal-form .form-note.error { color: #ffb4a7; }

/* =========================================================
   HOSTINGER HARDENING BUILD 2026-08-20-v3
   Unique asset filename prevents stale LiteSpeed/CDN CSS.
   ========================================================= */

/* Desktop dropdowns must never occupy layout space while closed. */
@media (min-width: 1201px) {
  .site-header .desktop-nav .nav-dropdown { position: relative !important; }
  .site-header .desktop-nav .nav-dropdown > .nav-dropdown-menu {
    display: none !important;
    position: absolute !important;
    top: calc(100% + 18px) !important;
    left: 50% !important;
    width: max-content !important;
    min-width: 270px !important;
    max-width: 360px !important;
    margin: 0 !important;
    padding: 10px 0 !important;
    border: 1px solid #ded8ce !important;
    background: #f8f5ef !important;
    color: #171717 !important;
    box-shadow: 0 20px 50px rgba(0,0,0,.16) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translate(-50%, 8px) !important;
    z-index: 9999 !important;
  }
  .site-header .desktop-nav .nav-dropdown:hover > .nav-dropdown-menu,
  .site-header .desktop-nav .nav-dropdown.is-open > .nav-dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate(-50%, 0) !important;
  }
  .site-header .desktop-nav .nav-dropdown > .nav-dropdown-menu a {
    display: block !important;
    width: 100% !important;
    padding: 12px 18px !important;
    color: #171717 !important;
    background: transparent !important;
    white-space: nowrap !important;
  }
}

/* Stable blog layout for dynamic PHP output. */
body .site-shell.blog-page {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #f8f6f1 !important;
}
body .blog-page .blog-hero {
  min-height: 0 !important;
  max-width: 1500px !important;
  margin: 0 auto !important;
  padding: 158px clamp(28px, 5vw, 86px) 72px !important;
  border-bottom: 0 !important;
  background: #f8f6f1 !important;
}
body .blog-page .blog-hero h1 {
  max-width: 1120px !important;
  margin: 22px 0 0 !important;
  font-size: clamp(56px, 6vw, 96px) !important;
  line-height: .96 !important;
}
body .blog-page .blog-filters {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 34px !important;
}
body .blog-page .blog-filters button {
  appearance: none !important;
  min-height: 38px !important;
  padding: 0 18px !important;
  border: 1px solid #d8d2c7 !important;
  background: transparent !important;
  color: #5f625f !important;
  cursor: pointer !important;
  font-size: 10px !important;
  line-height: 1 !important;
  letter-spacing: .2em !important;
  text-transform: uppercase !important;
}
body .blog-page .blog-filters button.active {
  border-color: #121212 !important;
  background: #121212 !important;
  color: #fff !important;
}
body .blog-page .featured-post {
  display: grid !important;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr) !important;
  align-items: center !important;
  gap: clamp(44px, 5vw, 84px) !important;
  max-width: 1500px !important;
  margin: 0 auto !important;
  padding: 0 clamp(28px, 5vw, 86px) 100px !important;
  border-bottom: 1px solid #ddd6ca !important;
  background: #f8f6f1 !important;
}
body .blog-page .featured-post > img {
  display: block !important;
  width: 100% !important;
  height: 520px !important;
  margin: 0 !important;
  object-fit: cover !important;
}
body .blog-page .featured-post article {
  display: block !important;
  width: 100% !important;
  max-width: 560px !important;
  padding: 0 !important;
}
body .blog-page .featured-post h2 {
  margin: 18px 0 18px !important;
  font-size: clamp(36px, 3.2vw, 54px) !important;
  line-height: 1.02 !important;
}
body .blog-page .featured-post article > p:not(.eyebrow):not(.post-meta) {
  margin: 0 0 22px !important;
  font-size: 15px !important;
  line-height: 1.72 !important;
}
body .blog-page .blog-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  gap: 28px !important;
  max-width: 1500px !important;
  margin: 0 auto !important;
  padding: 82px clamp(28px, 5vw, 86px) 118px !important;
  border: 0 !important;
  background: #f8f6f1 !important;
}
body .blog-page .blog-card {
  display: block !important;
  min-height: 0 !important;
  height: 100% !important;
  padding: 0 0 32px !important;
  border: 1px solid #ddd6ca !important;
  background: #f3efe7 !important;
  overflow: hidden !important;
}
body .blog-page .blog-card img {
  display: block !important;
  width: 100% !important;
  height: 330px !important;
  margin: 0 0 28px !important;
  object-fit: cover !important;
}
body .blog-page .blog-card > .eyebrow,
body .blog-page .blog-card > h2,
body .blog-page .blog-card > p:not(.eyebrow),
body .blog-page .blog-card > .post-meta {
  margin-left: 30px !important;
  margin-right: 30px !important;
}
body .blog-page .blog-card > h2 {
  margin-top: 14px !important;
  margin-bottom: 12px !important;
  font-size: clamp(29px, 2.2vw, 40px) !important;
  line-height: 1.06 !important;
}
body .blog-page .blog-card > p:not(.eyebrow) {
  margin-bottom: 18px !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}
body .article-cta {
  display: flex !important;
  min-height: 390px !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 30px !important;
  padding: 88px 24px !important;
  background: #121212 !important;
  color: #fff !important;
  text-align: center !important;
}
body .article-cta h2 {
  max-width: 860px !important;
  margin: 0 !important;
  color: #fff !important;
  font-size: clamp(38px, 4vw, 62px) !important;
  line-height: 1.04 !important;
}
body .article-cta .button.light,
body .article-cta .light-button {
  width: auto !important;
  min-width: 0 !important;
  min-height: 62px !important;
  margin: 0 !important;
  padding: 18px 30px !important;
}

/* Select menu text must remain readable in browser-native dropdown UI. */
body .contact-form select { color: #fff !important; background-color: transparent !important; }
body .contact-form select option,
body .contact-form select optgroup { color: #161616 !important; background: #fff !important; }
body .contact-form .form-note { display: block !important; min-height: 22px !important; }
body .contact-form .form-note[hidden] { display: none !important; }
body .contact-form .form-note.success { display: block !important; }

@media (max-width: 900px) {
  body .blog-page .featured-post,
  body .blog-page .blog-grid { grid-template-columns: 1fr !important; }
  body .blog-page .featured-post { gap: 28px !important; padding-bottom: 72px !important; }
  body .blog-page .featured-post > img { height: min(68vw, 460px) !important; }
  body .blog-page .blog-grid { padding-top: 64px !important; padding-bottom: 84px !important; }
}
@media (max-width: 620px) {
  body .blog-page .blog-hero { padding: 110px 22px 50px !important; }
  body .blog-page .blog-hero h1 { font-size: 44px !important; }
  body .blog-page .featured-post { padding: 0 22px 64px !important; }
  body .blog-page .featured-post > img { height: 300px !important; }
  body .blog-page .blog-grid { padding: 52px 22px 72px !important; gap: 20px !important; }
  body .blog-page .blog-card img { height: 240px !important; }
  body .article-cta { min-height: 310px !important; padding: 64px 22px !important; }
  body .article-cta .button.light,
  body .article-cta .light-button { width: 100% !important; }
}

/* =========================================================
   RESPONSIVE HEADER TYPOGRAPHY BUILD 2026-08-24-v4
   Improves menu readability on 14-inch laptops, large desktop,
   tablet and mobile without allowing the navigation to wrap.
   ========================================================= */

/* Desktop / laptop navigation: larger, balanced and still single-line. */
@media (min-width: 1201px) {
  .site-header {
    gap: clamp(14px, 1.25vw, 26px) !important;
    padding-inline: clamp(20px, 2.6vw, 50px) !important;
  }

  .site-header .brand {
    flex: 0 0 auto !important;
  }

  .site-header .brand strong {
    font-size: clamp(15px, .86vw, 17px) !important;
    letter-spacing: .22em !important;
  }

  .site-header .brand small {
    font-size: clamp(8px, .48vw, 9px) !important;
    letter-spacing: .42em !important;
  }

  .desktop-nav {
    display: flex !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    gap: clamp(9px, .85vw, 17px) !important;
    font-size: clamp(11.75px, .70vw, 13.5px) !important;
    font-weight: 400 !important;
    letter-spacing: .10em !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }

  .desktop-nav > a,
  .desktop-nav > .nav-dropdown > .nav-dropdown-toggle {
    padding-block: 9px !important;
  }

  .nav-cta {
    display: inline-flex !important;
    min-width: clamp(184px, 11vw, 220px) !important;
    min-height: 54px !important;
    padding: 15px clamp(17px, 1.35vw, 24px) !important;
    font-size: clamp(11.25px, .64vw, 12.5px) !important;
    font-weight: 400 !important;
    letter-spacing: .13em !important;
    line-height: 1.2 !important;
  }

  .site-header .desktop-nav .nav-dropdown > .nav-dropdown-menu a {
    font-size: 12px !important;
    font-weight: 400 !important;
    letter-spacing: .09em !important;
    line-height: 1.35 !important;
  }
}

/* Compact laptop widths: preserve full menu and CTA while reducing gaps, not text. */
@media (min-width: 1201px) and (max-width: 1399px) {
  .site-header {
    gap: 12px !important;
    padding-inline: 18px !important;
  }

  .desktop-nav {
    gap: 8px !important;
    font-size: 11.75px !important;
    letter-spacing: .055em !important;
  }

  .nav-cta {
    display: inline-flex !important;
    min-width: 174px !important;
    min-height: 50px !important;
    padding-inline: 15px !important;
    font-size: 10.75px !important;
    letter-spacing: .09em !important;
  }
}

/* Typical 14-inch Full-HD / medium desktop screens. */
@media (min-width: 1400px) and (max-width: 1699px) {
  .desktop-nav {
    font-size: 12.5px !important;
    gap: clamp(10px, .8vw, 14px) !important;
    letter-spacing: .085em !important;
  }

  .nav-cta {
    font-size: 11.5px !important;
    min-width: 194px !important;
  }
}

/* Larger desktop screens should not retain the tiny laptop typography. */
@media (min-width: 1700px) {
  .desktop-nav {
    font-size: 13.5px !important;
    gap: clamp(13px, .9vw, 18px) !important;
    letter-spacing: .10em !important;
  }

  .nav-cta {
    font-size: 12.5px !important;
    min-width: 218px !important;
  }
}

/* Tablet / mobile navigation uses a comfortably readable menu size. */
@media (max-width: 1200px) {
  .desktop-nav,
  .nav-cta {
    display: none !important;
  }

  .menu-button,
  .mobile-panel {
    display: block !important;
  }

  .mobile-panel > a,
  .mobile-panel summary {
    font-size: 14px !important;
    font-weight: 400 !important;
    letter-spacing: .17em !important;
    line-height: 1.35 !important;
  }

  .mobile-panel details a {
    font-size: 12.75px !important;
    font-weight: 400 !important;
    letter-spacing: .12em !important;
    line-height: 1.4 !important;
  }
}

@media (max-width: 780px) {
  .site-header .brand strong {
    font-size: 14px !important;
  }

  .site-header .brand small {
    font-size: 8px !important;
    letter-spacing: .32em !important;
  }

  .mobile-panel > a,
  .mobile-panel summary {
    font-size: 13.5px !important;
    letter-spacing: .15em !important;
  }

  .mobile-panel details a {
    font-size: 12.5px !important;
    letter-spacing: .10em !important;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-inline: 16px !important;
  }

  .site-header .brand strong {
    font-size: 13.5px !important;
  }

  .mobile-panel {
    padding-inline: 20px !important;
  }

  .mobile-panel > a,
  .mobile-panel summary {
    font-size: 13px !important;
    letter-spacing: .13em !important;
  }

  .mobile-panel details a {
    font-size: 12px !important;
  }
}

/* ===== Service SEO content system: v5 ===== */
.service-seo-section, .service-seo-local, .service-seo-faq, .service-seo-deepdive {
  padding: clamp(64px, 7vw, 120px) clamp(24px, 5vw, 96px);
  border-top: 1px solid rgba(25,25,22,.12);
}
.service-seo-section { background:#f3f0e9; }
.service-seo-deepdive { background:#e9e5dc; }
.service-seo-local { background:#171715; color:#f4f0e7; }
.service-seo-faq { background:#f7f4ee; }
.service-seo-copy { max-width: 1180px; margin:0 auto; display:grid; grid-template-columns:minmax(260px,.72fr) minmax(0,1.28fr); gap:clamp(36px,7vw,120px); align-items:start; }
.service-seo-copy h2, .service-seo-faq h2 { margin:0; font-family:'Playfair Display',serif; font-weight:400; font-size:clamp(34px,4.3vw,68px); line-height:1.02; letter-spacing:-.025em; }
.service-seo-prose { max-width:760px; }
.service-seo-prose p { margin:0 0 1.25em; font-size:clamp(15px,1.12vw,18px); line-height:1.78; color:#383630; }
.service-seo-local .service-seo-prose p { color:rgba(244,240,231,.78); }
.service-seo-prose a, .service-seo-faq a { color:inherit; text-decoration:underline; text-underline-offset:3px; }
.service-seo-priorities { max-width:1180px; margin:clamp(50px,6vw,88px) auto 0; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); border-top:1px solid rgba(25,25,22,.15); border-left:1px solid rgba(25,25,22,.15); }
.service-seo-priority { padding:clamp(26px,3.5vw,52px); border-right:1px solid rgba(25,25,22,.15); border-bottom:1px solid rgba(25,25,22,.15); }
.service-seo-priority span { display:block; margin-bottom:18px; font-size:10px; letter-spacing:.22em; text-transform:uppercase; color:#8d806d; }
.service-seo-priority h3 { margin:0 0 16px; font-family:'Playfair Display',serif; font-size:clamp(24px,2vw,34px); font-weight:400; line-height:1.08; }
.service-seo-priority p { margin:0; font-size:14px; line-height:1.72; color:#57534c; }
.service-seo-local .eyebrow { color:#bcae97; }
.service-seo-local h2 { color:#fff; }
.service-seo-faq-inner { max-width:1180px; margin:0 auto; }
.service-seo-faq-head { display:grid; grid-template-columns:.7fr 1.3fr; gap:clamp(36px,7vw,120px); margin-bottom:clamp(40px,5vw,72px); }
.service-faq-list { border-top:1px solid rgba(25,25,22,.18); }
.service-faq-list details { border-bottom:1px solid rgba(25,25,22,.18); }
.service-faq-list summary { list-style:none; cursor:pointer; padding:26px 46px 26px 0; position:relative; font-family:'Playfair Display',serif; font-size:clamp(21px,1.8vw,29px); line-height:1.2; }
.service-faq-list summary::-webkit-details-marker { display:none; }
.service-faq-list summary::after { content:'+'; position:absolute; right:4px; top:24px; font-family:Inter,sans-serif; font-size:22px; font-weight:300; }
.service-faq-list details[open] summary::after { content:'–'; }
.service-faq-answer { max-width:850px; padding:0 0 28px; font-size:15px; line-height:1.78; color:#4d4942; }
.service-seo-note { max-width:1180px; margin:0 auto; padding-top:clamp(40px,4vw,64px); font-size:13px; line-height:1.7; color:#6b665e; }
@media (max-width:900px){
 .service-seo-copy, .service-seo-faq-head { grid-template-columns:1fr; gap:28px; }
 .service-seo-priorities { grid-template-columns:1fr; }
}
@media (max-width:600px){
 .service-seo-section, .service-seo-local, .service-seo-faq, .service-seo-deepdive { padding:58px 20px; }
 .service-seo-prose p { font-size:15px; line-height:1.72; }
 .service-seo-priority { padding:28px 22px; }
 .service-faq-list summary { padding:22px 38px 22px 0; }
}

/* Service editorial image break */
.service-seo-image-band {
  margin: 0;
  background: #171715;
  overflow: hidden;
}
.service-seo-image-band img {
  display: block;
  width: 100%;
  height: clamp(340px, 48vw, 720px);
  object-fit: cover;
  filter: saturate(.88) contrast(.98);
}
@media (max-width: 600px) {
  .service-seo-image-band img { height: 300px; }
}

/* =========================================================
   UI BALANCE BUILD 2026-08-24-v6
   Refines header spacing and service-page typography so the
   long-form SEO content remains premium rather than bulky.
   ========================================================= */

/* More breathing room between desktop navigation items. */
@media (min-width: 1201px) {
  .site-header {
    column-gap: clamp(14px, 1.4vw, 30px) !important;
  }

  .desktop-nav {
    justify-content: center !important;
    gap: clamp(12px, 1.15vw, 24px) !important;
    letter-spacing: .075em !important;
  }

  .desktop-nav > a,
  .desktop-nav > .nav-dropdown > .nav-dropdown-toggle {
    padding: 10px 1px !important;
  }
}

@media (min-width: 1201px) and (max-width: 1399px) {
  .site-header {
    column-gap: 12px !important;
    padding-inline: 18px !important;
  }

  .desktop-nav {
    gap: 11px !important;
    font-size: 11.5px !important;
    letter-spacing: .035em !important;
  }

  .nav-cta {
    min-width: 172px !important;
    font-size: 10.75px !important;
  }
}

@media (min-width: 1400px) and (max-width: 1699px) {
  .site-header {
    column-gap: clamp(16px, 1.25vw, 22px) !important;
  }

  .desktop-nav {
    gap: clamp(15px, 1.15vw, 20px) !important;
    font-size: 12.5px !important;
    letter-spacing: .06em !important;
  }
}

@media (min-width: 1700px) {
  .site-header {
    column-gap: clamp(20px, 1.55vw, 32px) !important;
  }

  .desktop-nav {
    gap: clamp(20px, 1.35vw, 28px) !important;
    font-size: 13.5px !important;
    letter-spacing: .07em !important;
  }
}

/* Service pages: restrained editorial type scale. */
.service-page .service-detail-hero {
  min-height: clamp(620px, 72vh, 760px) !important;
  padding-top: 145px !important;
  padding-bottom: clamp(82px, 7vw, 118px) !important;
}

.service-page .service-detail-hero h1 {
  max-width: 1080px !important;
  font-size: clamp(68px, 5.8vw, 112px) !important;
  line-height: .96 !important;
  letter-spacing: -.025em !important;
  text-wrap: balance;
}

.service-page .service-detail-hero-content > p:last-child {
  max-width: 760px !important;
  margin-top: 26px !important;
  font-size: clamp(17px, 1.15vw, 20px) !important;
  line-height: 1.45 !important;
}

.service-page .service-overview {
  grid-template-columns: minmax(180px, .38fr) minmax(0, .62fr) !important;
  gap: clamp(46px, 6vw, 104px) !important;
  min-height: 0 !important;
  padding-top: clamp(88px, 6.5vw, 124px) !important;
  padding-bottom: clamp(92px, 6.8vw, 130px) !important;
}

.service-page .service-overview h2 {
  max-width: 920px !important;
  font-size: clamp(34px, 2.35vw, 48px) !important;
  line-height: 1.12 !important;
  letter-spacing: -.018em !important;
  text-wrap: pretty;
}

.service-page .service-lists {
  gap: clamp(52px, 5vw, 88px) !important;
  padding-top: clamp(84px, 6vw, 112px) !important;
  padding-bottom: clamp(94px, 6.6vw, 126px) !important;
}

.service-page .service-list-block li {
  min-height: 68px !important;
  padding: 20px 0 !important;
}

.service-page .service-list-major strong {
  font-size: clamp(24px, 1.65vw, 31px) !important;
  line-height: 1.12 !important;
}

.service-page .service-list-minor li {
  font-size: clamp(15px, .95vw, 18px) !important;
  line-height: 1.5 !important;
}

.service-page .service-seo-section,
.service-page .service-seo-local,
.service-page .service-seo-faq,
.service-page .service-seo-deepdive {
  padding: clamp(72px, 6vw, 104px) clamp(24px, 5vw, 88px) !important;
}

.service-page .service-seo-copy {
  max-width: 1160px !important;
  grid-template-columns: minmax(270px, .78fr) minmax(0, 1.22fr) !important;
  gap: clamp(44px, 6vw, 96px) !important;
}

.service-page .service-seo-copy h2,
.service-page .service-seo-faq h2 {
  font-size: clamp(31px, 2.75vw, 52px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.02em !important;
  text-wrap: balance;
}

.service-page .service-seo-prose {
  max-width: 700px !important;
}

.service-page .service-seo-prose p {
  margin-bottom: 1.2em !important;
  font-size: clamp(15px, .94vw, 17px) !important;
  line-height: 1.72 !important;
}

.service-page .service-seo-priorities {
  max-width: 1160px !important;
  margin-top: clamp(42px, 5vw, 70px) !important;
}

.service-page .service-seo-priority {
  padding: clamp(25px, 2.8vw, 40px) !important;
}

.service-page .service-seo-priority h3 {
  margin-bottom: 12px !important;
  font-size: clamp(22px, 1.55vw, 29px) !important;
  line-height: 1.12 !important;
}

.service-page .service-seo-priority p {
  font-size: 14px !important;
  line-height: 1.68 !important;
}

.service-page .service-process-detail {
  padding-top: clamp(86px, 6.3vw, 116px) !important;
  padding-bottom: clamp(100px, 7vw, 132px) !important;
}

.service-page .service-process-detail h2 {
  max-width: 690px !important;
  margin-top: 22px !important;
  font-size: clamp(40px, 3.2vw, 60px) !important;
  line-height: 1.06 !important;
  letter-spacing: -.02em !important;
}

.service-page .service-process-line {
  margin-top: clamp(64px, 5vw, 84px) !important;
  gap: clamp(20px, 2vw, 30px) !important;
}

.service-page .service-process-line strong {
  font-size: clamp(19px, 1.25vw, 24px) !important;
  line-height: 1.15 !important;
}

.service-page .service-seo-faq-head {
  max-width: 1160px !important;
  grid-template-columns: minmax(270px, .78fr) minmax(0, 1.22fr) !important;
  gap: clamp(44px, 6vw, 96px) !important;
  margin-bottom: clamp(38px, 4.5vw, 60px) !important;
}

.service-page .service-faq-list summary {
  padding-top: 22px !important;
  padding-bottom: 22px !important;
  font-size: clamp(20px, 1.35vw, 25px) !important;
  line-height: 1.25 !important;
}

.service-page .service-faq-list summary::after {
  top: 20px !important;
}

.service-page .service-faq-answer {
  max-width: 780px !important;
  padding-bottom: 24px !important;
  font-size: 14.5px !important;
  line-height: 1.72 !important;
}

.service-page .service-seo-image-band img {
  height: clamp(320px, 40vw, 620px) !important;
}

.service-page .service-talk {
  min-height: clamp(430px, 48vw, 540px) !important;
  padding: clamp(86px, 7vw, 116px) clamp(24px, 3.8vw, 72px) !important;
}

.service-page .service-talk h2 {
  width: min(900px, 100%) !important;
  margin: 24px auto 42px !important;
  font-size: clamp(44px, 3.8vw, 72px) !important;
  line-height: 1.03 !important;
  letter-spacing: -.018em !important;
  text-wrap: balance;
}

.service-page .service-related {
  padding-top: clamp(70px, 5vw, 88px) !important;
  padding-bottom: clamp(76px, 5.5vw, 96px) !important;
}

.service-page .service-related-grid {
  margin-top: 36px !important;
}

.service-page .service-related-grid a {
  min-height: 118px !important;
  padding-top: 26px !important;
  padding-bottom: 24px !important;
}

.service-page .service-related-grid strong {
  font-size: clamp(22px, 1.45vw, 27px) !important;
  line-height: 1.14 !important;
}

.service-page .service-related-grid small {
  font-size: 14px !important;
  line-height: 1.48 !important;
}

/* Tablet: keep hierarchy but remove oversized editorial blocks. */
@media (max-width: 980px) {
  .service-page .service-overview,
  .service-page .service-seo-copy,
  .service-page .service-seo-faq-head {
    grid-template-columns: 1fr !important;
  }

  .service-page .service-overview {
    gap: 26px !important;
  }

  .service-page .service-seo-copy,
  .service-page .service-seo-faq-head {
    gap: 24px !important;
  }

  .service-page .service-overview h2 {
    max-width: 760px !important;
    font-size: clamp(33px, 5vw, 43px) !important;
  }

  .service-page .service-seo-copy h2,
  .service-page .service-seo-faq h2 {
    max-width: 720px !important;
    font-size: clamp(30px, 4.7vw, 42px) !important;
  }

  .service-page .service-process-detail h2 {
    font-size: clamp(36px, 5.5vw, 48px) !important;
  }
}

/* Mobile: compact, readable and intentionally less dramatic. */
@media (max-width: 780px) {
  .service-page .service-detail-hero {
    min-height: 520px !important;
    padding: 118px 22px 68px !important;
  }

  .service-page .service-detail-hero h1 {
    font-size: clamp(46px, 13vw, 66px) !important;
    line-height: .98 !important;
  }

  .service-page .service-detail-hero-content > p:last-child {
    font-size: 16px !important;
    line-height: 1.45 !important;
  }

  .service-page .service-overview,
  .service-page .service-lists,
  .service-page .service-process-detail,
  .service-page .service-related {
    padding-inline: 20px !important;
  }

  .service-page .service-overview {
    padding-top: 64px !important;
    padding-bottom: 68px !important;
    gap: 22px !important;
  }

  .service-page .service-overview h2 {
    font-size: clamp(29px, 8.2vw, 38px) !important;
    line-height: 1.13 !important;
  }

  .service-page .service-lists {
    padding-top: 62px !important;
    padding-bottom: 70px !important;
    gap: 48px !important;
  }

  .service-page .service-list-major strong {
    font-size: clamp(23px, 6.4vw, 29px) !important;
  }

  .service-page .service-list-minor li {
    font-size: 15px !important;
  }

  .service-page .service-seo-section,
  .service-page .service-seo-local,
  .service-page .service-seo-faq,
  .service-page .service-seo-deepdive {
    padding: 58px 20px !important;
  }

  .service-page .service-seo-copy h2,
  .service-page .service-seo-faq h2 {
    font-size: clamp(28px, 7.6vw, 36px) !important;
    line-height: 1.12 !important;
  }

  .service-page .service-seo-prose p {
    font-size: 15px !important;
    line-height: 1.68 !important;
  }

  .service-page .service-seo-priority h3 {
    font-size: 23px !important;
  }

  .service-page .service-process-detail {
    padding-top: 64px !important;
    padding-bottom: 76px !important;
  }

  .service-page .service-process-detail h2 {
    font-size: clamp(32px, 8.8vw, 42px) !important;
  }

  .service-page .service-process-line {
    margin-top: 52px !important;
  }

  .service-page .service-process-line strong {
    font-size: 20px !important;
  }

  .service-page .service-seo-image-band img {
    height: 260px !important;
  }

  .service-page .service-faq-list summary {
    font-size: 19px !important;
  }

  .service-page .service-talk {
    min-height: 390px !important;
    padding: 72px 20px !important;
  }

  .service-page .service-talk h2 {
    margin-bottom: 34px !important;
    font-size: clamp(36px, 10vw, 50px) !important;
  }

  .service-page .service-related-grid strong {
    font-size: 23px !important;
  }
}

@media (max-width: 420px) {
  .service-page .service-detail-hero h1 {
    font-size: clamp(42px, 12vw, 54px) !important;
  }

  .service-page .service-overview h2,
  .service-page .service-seo-copy h2,
  .service-page .service-seo-faq h2 {
    font-size: 30px !important;
  }

  .service-page .service-talk h2 {
    font-size: 38px !important;
  }
}


/* ================================================================
   V7 MOBILE REFINEMENT — 2026-08-24
   Smaller mobile editorial type, compact consultation popup,
   4-second maximum preloader, and new location-page content blocks.
   ================================================================ */

/* A quicker fade once the loader is dismissed by JS. */
.loader {
  transition: opacity 180ms ease, visibility 180ms ease !important;
}
.loader span::after {
  animation-duration: 3.7s !important;
}

/* Location SEO editorial blocks used by Dankaur & Jewar pages. */
.location-seo-section {
  padding: clamp(88px, 7vw, 128px) clamp(24px, 3.8vw, 72px);
  border-bottom: 1px solid var(--stone);
  background: var(--off-white);
}
.location-seo-grid {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: clamp(48px, 7vw, 110px);
  max-width: 1320px;
  margin: 0 auto;
}
.location-seo-grid h2 {
  max-width: 520px;
  margin-top: 24px;
  font-size: clamp(40px, 3.5vw, 64px);
  line-height: 1.04;
}
.location-seo-copy {
  display: grid;
  gap: 24px;
}
.location-seo-copy h3 {
  margin-top: 18px;
  font-size: clamp(26px, 2vw, 36px);
  line-height: 1.12;
}
.location-seo-copy p {
  color: rgba(38, 36, 31, .78);
  font-size: 16px;
  line-height: 1.8;
}
.location-faq-section {
  padding: clamp(84px, 7vw, 122px) clamp(24px, 3.8vw, 72px);
  background: var(--paper);
}
.location-faq-wrap {
  max-width: 1160px;
  margin: 0 auto;
}
.location-faq-wrap h2 {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(40px, 3.6vw, 62px);
  line-height: 1.04;
}
.location-faq-list {
  margin-top: 52px;
  border-top: 1px solid var(--stone);
}
.location-faq-list details {
  border-bottom: 1px solid var(--stone);
}
.location-faq-list summary {
  position: relative;
  padding: 24px 42px 24px 0;
  list-style: none;
  cursor: pointer;
  font-family: var(--display);
  font-size: 23px;
  line-height: 1.3;
}
.location-faq-list summary::-webkit-details-marker { display: none; }
.location-faq-list summary::after {
  content: '+';
  position: absolute;
  top: 22px;
  right: 2px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 300;
}
.location-faq-list details[open] summary::after { content: '−'; }
.location-faq-list p {
  max-width: 820px;
  padding: 0 0 26px;
  color: rgba(38, 36, 31, .72);
  font-size: 15px;
  line-height: 1.75;
}

/* Tablet and phone typography should read like content, not poster type. */
@media (max-width: 780px) {
  .service-page .service-detail-hero {
    min-height: 450px !important;
    padding: 104px 18px 56px !important;
  }
  .service-page .service-detail-hero h1 {
    font-size: clamp(38px, 10.5vw, 48px) !important;
    line-height: 1.02 !important;
  }
  .service-page .service-detail-hero-content > p:last-child {
    font-size: 15px !important;
    line-height: 1.5 !important;
  }
  .service-page .service-overview,
  .service-page .service-lists,
  .service-page .service-process-detail,
  .service-page .service-related {
    padding-inline: 18px !important;
  }
  .service-page .service-overview {
    padding-top: 50px !important;
    padding-bottom: 54px !important;
    gap: 18px !important;
  }
  .service-page .service-overview h2 {
    max-width: 100% !important;
    font-size: 26px !important;
    line-height: 1.2 !important;
    letter-spacing: -.012em !important;
  }
  .service-page .service-seo-section,
  .service-page .service-seo-local,
  .service-page .service-seo-faq,
  .service-page .service-seo-deepdive {
    padding: 48px 18px !important;
  }
  .service-page .service-seo-copy h2,
  .service-page .service-seo-faq h2 {
    font-size: 25px !important;
    line-height: 1.18 !important;
  }
  .service-page .service-seo-prose p,
  .service-page .service-seo-copy p {
    font-size: 14.5px !important;
    line-height: 1.7 !important;
  }
  .service-page .service-seo-priority h3 {
    font-size: 21px !important;
    line-height: 1.2 !important;
  }
  .service-page .service-list-major strong {
    font-size: 22px !important;
    line-height: 1.18 !important;
  }
  .service-page .service-process-detail h2 {
    font-size: 28px !important;
    line-height: 1.12 !important;
  }
  .service-page .service-process-line strong {
    font-size: 18px !important;
  }
  .service-page .service-faq-list summary {
    font-size: 17px !important;
    line-height: 1.35 !important;
  }
  .service-page .service-talk {
    min-height: 330px !important;
    padding: 58px 18px !important;
  }
  .service-page .service-talk h2 {
    margin: 18px auto 28px !important;
    font-size: 30px !important;
    line-height: 1.08 !important;
  }
  .service-page .service-related-grid strong {
    font-size: 20px !important;
  }

  /* Location pages receive the same calmer mobile hierarchy. */
  .location-hero {
    padding: 104px 18px 58px !important;
  }
  .location-hero h1 {
    margin-top: 24px !important;
    font-size: clamp(38px, 10.5vw, 48px) !important;
    line-height: 1.02 !important;
  }
  .location-hero > p:not(.eyebrow) {
    margin-top: 22px !important;
    font-size: 18px !important;
  }
  .location-practice,
  .location-card-section,
  .location-related {
    padding-inline: 18px !important;
  }
  .location-practice article > p:not(.eyebrow) {
    font-size: 16px !important;
    line-height: 1.72 !important;
  }
  .location-practice li strong {
    font-size: 22px !important;
  }
  .location-card-grid h3 {
    font-size: 26px !important;
  }
  .location-card-grid p {
    font-size: 15px !important;
  }
  .location-talk {
    min-height: 390px !important;
    padding: 70px 18px !important;
  }
  .location-talk h2 {
    font-size: 32px !important;
    line-height: 1.08 !important;
  }

  .location-seo-section,
  .location-faq-section {
    padding: 56px 18px !important;
  }
  .location-seo-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .location-seo-grid h2,
  .location-faq-wrap h2 {
    font-size: 27px;
    line-height: 1.15;
  }
  .location-seo-copy {
    gap: 18px;
  }
  .location-seo-copy h3 {
    font-size: 22px;
  }
  .location-seo-copy p,
  .location-faq-list p {
    font-size: 14.5px;
    line-height: 1.7;
  }
  .location-faq-list {
    margin-top: 34px;
  }
  .location-faq-list summary {
    padding-block: 19px;
    font-size: 17px;
  }
  .location-faq-list summary::after { top: 18px; }

  /* Compact consultation popup: form-first on mobile. */
  .consultation-popup {
    padding: 10px !important;
    align-items: center !important;
  }
  .consultation-popup-card {
    grid-template-columns: 1fr !important;
    width: min(390px, calc(100vw - 20px)) !important;
    max-height: calc(100svh - 20px) !important;
    overflow: auto !important;
  }
  .consultation-popup-image {
    display: none !important;
  }
  .consultation-popup-content {
    padding: 24px 18px 20px !important;
  }
  .consultation-popup-close {
    top: 10px !important;
    right: 12px !important;
    font-size: 28px !important;
  }
  .consultation-popup-content .eyebrow {
    margin-bottom: 12px !important;
    padding-right: 32px !important;
    font-size: 9px !important;
    letter-spacing: .28em !important;
  }
  .consultation-popup-content h2 {
    max-width: 290px !important;
    font-size: 25px !important;
    line-height: 1.12 !important;
  }
  .consultation-popup-content p:not(.eyebrow):not(.popup-note) {
    margin-top: 10px !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
  }
  .consultation-popup-form {
    gap: 9px !important;
    margin-top: 16px !important;
  }
  .consultation-popup-form input,
  .consultation-popup-form select,
  .consultation-popup-form textarea {
    min-height: 44px !important;
    padding-inline: 13px !important;
    font-size: 14px !important;
  }
  .consultation-popup-form button {
    min-height: 46px !important;
    font-size: 9px !important;
    letter-spacing: .22em !important;
  }
  .popup-note {
    min-height: 14px !important;
    font-size: 11px !important;
  }
}

@media (max-width: 520px) {
  .service-page .service-overview h2 {
    font-size: 24px !important;
    line-height: 1.22 !important;
  }
  .service-page .service-seo-copy h2,
  .service-page .service-seo-faq h2 {
    font-size: 24px !important;
  }
  .service-page .service-talk h2,
  .location-talk h2 {
    font-size: 29px !important;
  }
  .location-hero h1 {
    font-size: 36px !important;
  }
}

@media (max-width: 420px) {
  .service-page .service-detail-hero h1,
  .location-hero h1 {
    font-size: 38px !important;
  }
  .service-page .service-overview h2 {
    font-size: 23px !important;
    line-height: 1.22 !important;
  }
  .service-page .service-seo-copy h2,
  .service-page .service-seo-faq h2 {
    font-size: 23px !important;
  }
  .service-page .service-process-detail h2 {
    font-size: 26px !important;
  }
  .service-page .service-talk h2,
  .location-talk h2 {
    font-size: 28px !important;
  }
  .location-seo-grid h2,
  .location-faq-wrap h2 {
    font-size: 24px !important;
  }
  .consultation-popup-card {
    width: calc(100vw - 16px) !important;
  }
  .consultation-popup-content {
    padding: 22px 16px 18px !important;
  }
  .consultation-popup-content h2 {
    font-size: 23px !important;
  }
}


/* ================================================================
   V8 AWARDS + SOCIAL + LOADER REFINEMENT — 2026-08-28
   ================================================================ */

/* Balanced loader logo size: visible and premium without overpowering the screen. */
.loader img {
  width: min(190px, 48vw) !important;
  height: auto;
  object-fit: contain;
}
@media (max-width: 780px) {
  .loader {
    gap: 20px;
  }
  .loader img {
    width: min(150px, 42vw) !important;
  }
  .loader span {
    width: min(180px, 46vw);
  }
  .loader p {
    font-size: 9px;
    letter-spacing: .3em;
  }
}
@media (max-width: 420px) {
  .loader img {
    width: min(135px, 40vw) !important;
  }
}

/* Social links */
.footer-socials {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-socials a,
.social-row a {
  color: inherit;
}
.footer-socials a:hover,
.social-row a:hover {
  opacity: .65;
}

/* Homepage recognition link */
.awards-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 32px;
  align-items: center;
  padding: 34px clamp(24px, 4vw, 72px);
  background: var(--off-white);
  border-bottom: 1px solid var(--stone);
}
.awards-teaser p {
  max-width: 820px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(26px, 2.2vw, 38px);
  line-height: 1.12;
}
.awards-teaser a {
  white-space: nowrap;
}
@media (max-width: 780px) {
  .awards-teaser {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 20px 34px;
  }
  .awards-teaser p {
    font-size: 24px;
  }
}

/* Awards page */
.awards-page {
  background: var(--off-white);
}
.awards-hero {
  position: relative;
  min-height: min(78vh, 820px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--graphite);
}
.awards-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
}
.awards-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,12,12,.18) 0%, rgba(12,12,12,.18) 28%, rgba(12,12,12,.78) 100%),
    linear-gradient(90deg, rgba(12,12,12,.35), transparent 60%);
}
.awards-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 980px;
  padding: 210px clamp(24px, 4vw, 76px) 80px;
  color: #fff;
}
.awards-hero-copy .eyebrow {
  margin-bottom: 24px;
}
.awards-hero-copy h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(56px, 6vw, 104px);
  line-height: .92;
  font-weight: 400;
}
.awards-hero-copy > p:last-child {
  max-width: 680px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.65;
}
.awards-intro {
  display: grid;
  grid-template-columns: minmax(180px, .42fr) minmax(0, 1.58fr);
  gap: clamp(36px, 7vw, 110px);
  padding: clamp(76px, 8vw, 132px) clamp(24px, 4vw, 76px);
  border-bottom: 1px solid var(--stone);
}
.awards-intro h2 {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(42px, 4.6vw, 78px);
  line-height: 1.02;
  font-weight: 400;
}
.awards-intro-copy p {
  max-width: 850px;
  margin: 32px 0 0;
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
}
.awards-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.awards-pill-row span {
  padding: 10px 14px;
  border: 1px solid var(--stone);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.awards-gallery-section {
  padding: clamp(76px, 8vw, 126px) clamp(18px, 3.2vw, 58px);
}
.awards-gallery-section .section-heading {
  margin-bottom: clamp(42px, 5vw, 74px);
}
.awards-masonry {
  columns: 3 330px;
  column-gap: 18px;
}
.award-card {
  break-inside: avoid;
  margin: 0 0 18px;
  background: #fff;
  border: 1px solid rgba(35,34,31,.10);
}
.award-card img {
  display: block;
  width: 100%;
  height: auto;
  background: #eee9df;
}
.award-card figcaption {
  padding: 18px 18px 20px;
}
.award-card figcaption span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.35;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.award-card figcaption p {
  margin: 0;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.12;
}
.awards-statement {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: clamp(42px, 8vw, 130px);
  padding: clamp(82px, 8vw, 132px) clamp(24px, 4vw, 76px);
  background: var(--graphite);
  color: #fff;
}
.awards-statement h2 {
  margin: 0;
  font-size: clamp(42px, 4.6vw, 76px);
  line-height: 1.02;
  font-weight: 400;
}
.awards-statement-copy {
  align-self: end;
}
.awards-statement-copy p {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(255,255,255,.72);
  font-size: 17px;
  line-height: 1.75;
}
.awards-statement .center-link {
  color: #fff;
  border-color: rgba(255,255,255,.45);
}
@media (max-width: 900px) {
  .awards-intro,
  .awards-statement {
    grid-template-columns: 1fr;
  }
  .awards-hero {
    min-height: 650px;
  }
}
@media (max-width: 620px) {
  .awards-hero {
    min-height: 600px;
  }
  .awards-hero-copy {
    padding: 170px 20px 52px;
  }
  .awards-hero-copy h1 {
    font-size: clamp(42px, 12vw, 58px);
    line-height: .98;
  }
  .awards-hero-copy > p:last-child {
    margin-top: 22px;
    font-size: 15px;
  }
  .awards-intro {
    padding: 64px 20px;
  }
  .awards-intro h2 {
    font-size: 36px;
  }
  .awards-intro-copy p {
    font-size: 15px;
  }
  .awards-gallery-section {
    padding: 64px 14px;
  }
  .awards-masonry {
    columns: 1;
  }
  .award-card {
    margin-bottom: 14px;
  }
  .award-card figcaption p {
    font-size: 20px;
  }
  .awards-statement {
    padding: 64px 20px;
  }
  .awards-statement h2 {
    font-size: 36px;
  }
  .awards-statement-copy p {
    font-size: 15px;
  }
}

/* ==========================================================================\n   v9 — Real project portfolio\n   ========================================================================== */

.work-grid article {
  cursor: pointer;
}

.work-card-link {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.work-grid article:focus-within {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.projects-page-main,
.project-detail-main {
  background: var(--paper);
  color: var(--ink);
}

.projects-page-hero {
  min-height: 68vh;
  padding: 190px clamp(28px, 6vw, 110px) 96px;
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
  gap: clamp(34px, 7vw, 120px);
  align-items: end;
  background: var(--paper);
}

.projects-page-hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(52px, 6.6vw, 118px);
  line-height: .91;
  font-weight: 400;
  letter-spacing: -.045em;
}

.projects-page-hero .project-hero-copy {
  max-width: 540px;
  padding-bottom: 12px;
}

.projects-page-hero .project-hero-copy p:not(.eyebrow) {
  margin-top: 28px;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.65;
  color: var(--soft-ink);
}

.real-project-list {
  padding: 0 clamp(24px, 5vw, 88px) 120px;
}

.real-project-card {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(290px, .7fr);
  gap: clamp(34px, 6vw, 100px);
  align-items: center;
  padding: clamp(52px, 7vw, 110px) 0;
  border-top: 1px solid var(--stone);
}

.real-project-card:nth-child(even) {
  grid-template-columns: minmax(290px, .7fr) minmax(0, 1.55fr);
}

.real-project-card:nth-child(even) .real-project-media {
  order: 2;
}

.real-project-media {
  display: block;
  overflow: hidden;
  background: var(--graphite);
}

.real-project-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 700ms ease;
}

.real-project-media:hover img {
  transform: scale(1.025);
}

.real-project-card h2 {
  margin: 18px 0 0;
  font-size: clamp(38px, 4.5vw, 74px);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -.035em;
}

.real-project-card p:not(.eyebrow) {
  margin: 22px 0 0;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--soft-ink);
}

.real-project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 28px;
  color: var(--soft-ink);
  font-size: 13px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.real-project-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.project-detail-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}

.project-detail-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08) 22%, rgba(0,0,0,.72) 100%);
}

.project-detail-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 180px clamp(24px, 5vw, 90px) clamp(48px, 6vw, 92px);
}

.project-detail-hero h1 {
  margin: 16px 0 0;
  max-width: 1100px;
  font-size: clamp(54px, 7.2vw, 126px);
  line-height: .9;
  font-weight: 400;
  letter-spacing: -.045em;
}

.project-detail-hero .eyebrow {
  color: rgba(255,255,255,.75);
}

.project-intro {
  display: grid;
  grid-template-columns: minmax(250px, .65fr) minmax(0, 1.35fr);
  gap: clamp(38px, 8vw, 140px);
  padding: clamp(64px, 9vw, 140px) clamp(24px, 6vw, 110px);
}

.project-facts {
  display: grid;
  gap: 24px;
  align-content: start;
}

.project-fact {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--stone);
}

.project-fact span {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--soft-ink);
}

.project-fact strong {
  font-size: 18px;
  font-weight: 400;
}

.project-intro-copy h2 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(38px, 5vw, 82px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.035em;
}

.project-intro-copy p {
  max-width: 780px;
  margin: 30px 0 0;
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.72;
  color: var(--soft-ink);
}

.project-gallery-section {
  padding: 0 clamp(18px, 3vw, 54px) clamp(80px, 9vw, 150px);
}

.project-gallery-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin: 0 clamp(6px, 3vw, 54px) 38px;
  padding-top: 42px;
  border-top: 1px solid var(--stone);
}

.project-gallery-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(36px, 4vw, 66px);
  line-height: 1;
  font-weight: 400;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 28px);
}

.project-gallery figure {
  grid-column: span 6;
  margin: 0;
  overflow: hidden;
  background: #e7e3da;
}

.project-gallery figure:nth-child(5n + 1) {
  grid-column: span 7;
}

.project-gallery figure:nth-child(5n + 2) {
  grid-column: span 5;
}

.project-gallery img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
}

.project-next {
  padding: clamp(68px, 8vw, 120px) clamp(24px, 6vw, 110px);
  background: #111;
  color: #fff;
}

.project-next .section-heading {
  margin-bottom: 42px;
}

.project-next .section-heading h2,
.project-next .section-heading p,
.project-next .eyebrow {
  color: inherit;
}

.project-next-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.project-next-card {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}

.project-next-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .76;
  transition: transform 600ms ease, opacity 600ms ease;
}

.project-next-card:hover img {
  transform: scale(1.035);
  opacity: .9;
}

.project-next-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.78));
}

.project-next-card div {
  position: relative;
  z-index: 2;
  padding: 32px;
}

.project-next-card h3 {
  margin: 8px 0 0;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1;
  font-weight: 400;
}

@media (max-width: 900px) {
  .projects-page-hero,
  .project-intro {
    grid-template-columns: 1fr;
  }

  .projects-page-hero {
    min-height: auto;
    padding-top: 150px;
  }

  .real-project-card,
  .real-project-card:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .real-project-card:nth-child(even) .real-project-media {
    order: 0;
  }

  .project-detail-hero {
    min-height: 76vh;
  }

  .project-gallery figure,
  .project-gallery figure:nth-child(5n + 1),
  .project-gallery figure:nth-child(5n + 2) {
    grid-column: span 12;
  }

  .project-next-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .projects-page-hero {
    padding: 128px 20px 64px;
  }

  .projects-page-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: .96;
  }

  .real-project-list {
    padding: 0 20px 72px;
  }

  .real-project-card {
    padding: 54px 0;
  }

  .real-project-card h2 {
    font-size: 36px;
  }

  .project-detail-hero {
    min-height: 68vh;
  }

  .project-detail-hero-content {
    padding: 132px 20px 38px;
  }

  .project-detail-hero h1 {
    font-size: clamp(40px, 12vw, 56px);
    line-height: .95;
  }

  .project-intro {
    padding: 58px 20px;
    gap: 42px;
  }

  .project-intro-copy h2 {
    font-size: 34px;
  }

  .project-intro-copy p {
    font-size: 16px;
    line-height: 1.65;
  }

  .project-gallery-section {
    padding: 0 12px 72px;
  }

  .project-gallery-heading {
    margin: 0 8px 24px;
    align-items: start;
    flex-direction: column;
  }

  .project-gallery-heading h2 {
    font-size: 34px;
  }

  .project-gallery {
    gap: 12px;
  }

  .project-next {
    padding: 58px 20px;
  }

  .project-next-card {
    min-height: 340px;
  }
}


/* =========================================================
   V10 — balanced typography + local SEO landing pages
   ========================================================= */

/* Keep the editorial character, but reduce oversized display type on desktop. */
@media (min-width: 1201px) {
  .hero h1 { font-size: clamp(42px, 5.2vw, 82px); max-width: 840px; }
  .stats-band strong { font-size: clamp(46px, 4.8vw, 68px); }
  .split-section h2,
  .section-heading h2,
  .contact-section h2,
  .final-cta h2 { font-size: clamp(34px, 4vw, 58px); }
  .discipline .section-heading h2 { font-size: clamp(40px, 3.6vw, 58px); }
  .commitment-grid h3 { font-size: clamp(30px, 2.25vw, 40px); }
  .commitment-grid p { font-size: 17px; }
  .service-detail-hero h1 { font-size: clamp(58px, 5.4vw, 104px); }
  .service-overview h2 { font-size: clamp(34px, 2.55vw, 50px); line-height: 1.12; }
  .service-list-major strong { font-size: clamp(25px, 1.65vw, 32px); }
  .service-process-detail h2 { font-size: clamp(42px, 3.5vw, 64px); }
  .service-process-line strong { font-size: clamp(20px, 1.2vw, 25px); }
  .service-talk h2 { font-size: clamp(44px, 4vw, 72px); }
  .location-hero h1 { font-size: clamp(56px, 5vw, 96px); }
  .location-hero > p:not(.eyebrow) { font-size: clamp(20px, 1.55vw, 28px); }
  .location-practice article > p:not(.eyebrow) { font-size: clamp(18px, 1.25vw, 23px); }
  .location-practice li strong { font-size: clamp(22px, 1.45vw, 30px); }
  .location-card-grid h3 { font-size: clamp(28px, 2vw, 40px); }
  .location-talk h2 { font-size: clamp(44px, 4vw, 72px); }
  .blog-page .blog-hero h1,
  .blog-hero h1 { font-size: clamp(52px, 5vw, 86px); }
  .blog-featured-copy h2 { font-size: clamp(38px, 3.35vw, 60px); }
  .blog-newsletter h2,
  .journal-landing h1 { font-size: clamp(44px, 4vw, 72px); }
  .appointment-hero h1 { font-size: clamp(46px, 4vw, 74px); }
  .projects-page-hero h1 { font-size: clamp(54px, 5vw, 88px); }
  .project-detail-hero h1 { font-size: clamp(52px, 5vw, 90px); }
  .project-gallery-heading h2 { font-size: clamp(32px, 3vw, 52px); }
}

/* Tablet: strong hierarchy without display text dominating the viewport. */
@media (min-width: 781px) and (max-width: 1200px) {
  .hero h1 { font-size: clamp(44px, 6vw, 68px); }
  .split-section h2,
  .section-heading h2,
  .contact-section h2,
  .final-cta h2 { font-size: clamp(34px, 4.6vw, 48px); }
  .stats-band strong { font-size: clamp(44px, 5vw, 62px); }
  .service-detail-hero h1 { font-size: clamp(50px, 7vw, 78px); }
  .service-overview h2 { font-size: clamp(30px, 4vw, 42px); }
  .service-process-detail h2 { font-size: clamp(38px, 5vw, 54px); }
  .service-talk h2 { font-size: clamp(40px, 5.5vw, 60px); }
  .location-hero h1 { font-size: clamp(48px, 6vw, 72px); }
  .location-talk h2 { font-size: clamp(40px, 5.5vw, 58px); }
  .blog-hero h1,
  .blog-page .blog-hero h1,
  .journal-landing h1 { font-size: clamp(44px, 6vw, 66px); }
  .projects-page-hero h1,
  .project-detail-hero h1 { font-size: clamp(46px, 6vw, 68px); }
}

/* Mobile: reading-size editorial typography, especially long SEO headings. */
@media (max-width: 780px) {
  .hero h1 { font-size: clamp(36px, 10vw, 48px); line-height: 1.03; }
  .split-section h2,
  .section-heading h2,
  .contact-section h2,
  .final-cta h2 { font-size: clamp(29px, 8vw, 39px); line-height: 1.08; }
  .stats-band strong { font-size: clamp(38px, 10vw, 50px); }
  .service-detail-hero { min-height: 560px; padding-top: 128px; padding-bottom: 72px; }
  .service-detail-hero h1 { font-size: clamp(40px, 11vw, 54px); line-height: .98; }
  .service-detail-hero-content > p:last-child { font-size: 17px; }
  .service-overview { padding-top: 68px; padding-bottom: 72px; }
  .service-overview h2 { font-size: clamp(22px, 6.2vw, 27px); line-height: 1.22; }
  .service-list-major strong { font-size: clamp(22px, 6vw, 27px); }
  .service-process-detail h2 { font-size: clamp(31px, 8.5vw, 40px); }
  .service-process-line strong { font-size: 20px; }
  .service-talk { min-height: 450px; }
  .service-talk h2 { font-size: clamp(34px, 9vw, 46px); line-height: 1.03; }
  .location-hero h1 { font-size: clamp(38px, 10vw, 52px); line-height: 1; }
  .location-hero > p:not(.eyebrow) { font-size: 18px; }
  .location-practice article > p:not(.eyebrow) { font-size: 16px; line-height: 1.72; }
  .location-practice li strong { font-size: 24px; }
  .location-card-grid h3 { font-size: 28px; }
  .location-talk h2 { font-size: clamp(34px, 9vw, 46px); }
  .blog-page .blog-hero h1,
  .blog-hero h1,
  .journal-landing h1 { font-size: clamp(38px, 10vw, 52px); }
  .blog-featured-copy h2 { font-size: clamp(31px, 8vw, 42px); }
  .blog-newsletter h2 { font-size: clamp(34px, 9vw, 46px); }
  .appointment-hero h1 { font-size: clamp(34px, 9vw, 46px); }
  .projects-page-hero h1,
  .project-detail-hero h1 { font-size: clamp(38px, 10vw, 50px); }
  .project-gallery-heading h2 { font-size: 30px; }
  .mobile-panel { max-height: calc(100dvh - 78px); overflow-y: auto; overscroll-behavior: contain; }
}

@media (max-width: 480px) {
  .service-overview h2 { font-size: clamp(21px, 5.8vw, 24px); }
  .service-seo-prose p,
  .seo-local-prose p { font-size: 15px; line-height: 1.72; }
  .service-seo-copy h2,
  .seo-local-section h2 { font-size: clamp(27px, 7.5vw, 34px); line-height: 1.08; }
  .location-hero h1 { font-size: clamp(36px, 9.5vw, 46px); }
}

/* Local service + location SEO pages */
.seo-local-page { background: var(--off-white); color: var(--ink); }
.seo-local-intro,
.seo-local-section,
.seo-local-projects,
.seo-local-links { padding: clamp(76px, 8vw, 118px) clamp(24px, 4.2vw, 82px); }
.seo-local-intro {
  display: grid;
  grid-template-columns: minmax(220px,.3fr) minmax(0,.7fr);
  gap: clamp(48px, 8vw, 140px);
  border-bottom: 1px solid var(--stone);
  background: var(--paper);
}
.seo-local-intro h2,
.seo-local-section h2,
.seo-local-projects h2,
.seo-local-links h2 {
  margin: 0;
  font-size: clamp(34px, 3.2vw, 54px);
  line-height: 1.06;
  font-weight: 400;
}
.seo-local-prose { max-width: 860px; }
.seo-local-prose p { margin: 0 0 24px; color: var(--soft-ink); font-size: 16px; line-height: 1.8; }
.seo-local-prose p:last-child { margin-bottom: 0; }
.seo-local-prose a { text-decoration: underline; text-underline-offset: 4px; }
.seo-local-section { border-bottom: 1px solid var(--stone); }
.seo-local-section:nth-of-type(even) { background: var(--paper); }
.seo-local-section-grid {
  display: grid;
  grid-template-columns: minmax(250px,.34fr) minmax(0,.66fr);
  gap: clamp(48px, 8vw, 140px);
  max-width: 1500px;
  margin: 0 auto;
}
.seo-local-feature-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
  max-width: 1500px;
  margin: 50px auto 0;
}
.seo-local-feature-grid article { min-height: 230px; padding: 36px; border: 1px solid var(--stone); background: rgba(255,255,255,.35); }
.seo-local-feature-grid span { font-family: var(--display); font-style: italic; color: rgba(38,36,31,.45); }
.seo-local-feature-grid h3 { margin-top: 40px; font-size: clamp(24px,1.8vw,31px); line-height: 1.1; }
.seo-local-feature-grid p { margin-top: 18px; color: var(--soft-ink); font-size: 15px; line-height: 1.7; }
.seo-local-projects { background: var(--graphite); color: #fff; }
.seo-local-projects .eyebrow,
.seo-local-projects h2 { color: #fff; }
.seo-local-project-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; max-width:1500px; margin:52px auto 0; }
.seo-local-project-card { position:relative; min-height:420px; overflow:hidden; color:#fff; }
.seo-local-project-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.78; transition:transform .55s ease,opacity .55s ease; }
.seo-local-project-card::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 35%,rgba(0,0,0,.8)); }
.seo-local-project-card:hover img { transform:scale(1.035); opacity:.9; }
.seo-local-project-card div { position:absolute; z-index:2; left:0; right:0; bottom:0; padding:28px; }
.seo-local-project-card h3 { margin:8px 0 0; color:#fff; font-size:clamp(26px,2vw,36px); line-height:1.05; }
.seo-local-project-card p { margin-top:10px; color:rgba(255,255,255,.75); font-size:13px; letter-spacing:.08em; }
.seo-local-links { background: var(--off-white); }
.seo-local-link-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; max-width:1500px; margin:46px auto 0; }
.seo-local-link-grid a { padding:26px 28px; border:1px solid var(--stone); background:rgba(255,255,255,.22); }
.seo-local-link-grid strong { display:block; font-family:var(--display); font-size:24px; font-weight:400; line-height:1.1; }
.seo-local-link-grid small { display:block; margin-top:10px; color:var(--soft-ink); font-size:13px; line-height:1.55; }
.seo-local-faq { padding: clamp(76px,8vw,118px) clamp(24px,4.2vw,82px); background:var(--paper); }
.seo-local-faq-inner { max-width:1200px; margin:0 auto; }
.seo-local-faq h2 { max-width:760px; margin:18px 0 44px; font-size:clamp(34px,3.2vw,54px); line-height:1.06; }
.seo-local-faq details { border-top:1px solid var(--stone); }
.seo-local-faq details:last-child { border-bottom:1px solid var(--stone); }
.seo-local-faq summary { padding:24px 0; cursor:pointer; font-family:var(--display); font-size:clamp(21px,1.45vw,27px); }
.seo-local-faq details p { max-width:900px; margin:0 0 28px; color:var(--soft-ink); font-size:15px; line-height:1.75; }
.seo-area-link-section { padding:76px clamp(28px,3.8vw,72px); border-top:1px solid var(--stone); background:var(--paper); }
.seo-area-link-section h2 { margin-top:18px; font-size:clamp(32px,2.8vw,48px); }
.seo-area-link-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:14px; margin-top:38px; }
.seo-area-link-grid a { padding:24px; border:1px solid var(--stone); background:rgba(255,255,255,.3); }
.seo-area-link-grid strong { display:block; font-family:var(--display); font-size:22px; font-weight:400; }
.seo-area-link-grid small { display:block; margin-top:8px; color:var(--soft-ink); font-size:12px; line-height:1.5; }

@media (max-width: 900px) {
  .seo-local-intro,
  .seo-local-section-grid { grid-template-columns:1fr; gap:34px; }
  .seo-local-feature-grid,
  .seo-local-project-grid { grid-template-columns:1fr; }
  .seo-local-project-card { min-height:380px; }
  .seo-local-link-grid,
  .seo-area-link-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 560px) {
  .seo-local-intro,
  .seo-local-section,
  .seo-local-projects,
  .seo-local-links,
  .seo-local-faq { padding:62px 20px; }
  .seo-local-intro h2,
  .seo-local-section h2,
  .seo-local-projects h2,
  .seo-local-links h2,
  .seo-local-faq h2 { font-size:clamp(28px,8vw,36px); }
  .seo-local-feature-grid { margin-top:34px; }
  .seo-local-feature-grid article { min-height:auto; padding:28px 24px; }
  .seo-local-feature-grid h3 { margin-top:28px; font-size:26px; }
  .seo-local-project-card { min-height:330px; }
  .seo-local-link-grid,
  .seo-area-link-grid { grid-template-columns:1fr; }
  .seo-area-link-section { padding:58px 20px; }
}


/* V10 final mobile scale — intentionally calmer than V7/V8 overrides. */
@media (max-width: 780px) {
  .service-page .service-overview h2 { font-size: 23px !important; line-height: 1.24 !important; }
  .service-page .service-seo-copy h2, .service-page .service-seo-faq h2 { font-size: 23px !important; }
  .service-page .service-talk h2, .location-talk h2 { font-size: 28px !important; }
  .seo-local-intro h2, .seo-local-section h2, .seo-local-projects h2, .seo-local-links h2, .seo-local-faq h2 { font-size: clamp(27px, 7.6vw, 34px) !important; }
}
@media (max-width: 520px) {
  .service-page .service-overview h2 { font-size: 22px !important; }
  .service-page .service-seo-copy h2, .service-page .service-seo-faq h2 { font-size: 22px !important; }
  .service-page .service-talk h2, .location-talk h2 { font-size: 27px !important; }
}
@media (max-width: 420px) {
  .service-page .service-overview h2 { font-size: 21px !important; }
  .service-page .service-seo-copy h2, .service-page .service-seo-faq h2 { font-size: 21px !important; }
  .service-page .service-talk h2, .location-talk h2 { font-size: 26px !important; }
}

/* V10 editorial page balancing: awards + long-form article pages */
@media (min-width: 1201px) {
  .awards-hero-copy h1 { font-size: clamp(48px, 4.8vw, 82px); line-height: .96; }
  .awards-intro h2,
  .awards-statement h2 { font-size: clamp(36px, 3.6vw, 58px); line-height: 1.06; }
  .article-hero h1 { font-size: clamp(42px, 3.7vw, 66px); line-height: 1.04; }
  .article-content h2 { font-size: clamp(30px, 2.5vw, 44px); }
  .article-cta h2 { font-size: clamp(34px, 3vw, 50px); }
}
@media (min-width: 781px) and (max-width: 1200px) {
  .awards-hero-copy h1 { font-size: clamp(44px, 5.5vw, 66px); }
  .awards-intro h2,
  .awards-statement h2 { font-size: clamp(34px, 4.4vw, 48px); }
  .article-hero h1 { font-size: clamp(38px, 5vw, 54px); }
  .article-content h2 { font-size: clamp(30px, 4vw, 40px); }
}
@media (max-width: 780px) {
  .awards-hero-copy h1 { font-size: clamp(36px, 9.5vw, 48px); line-height: 1; }
  .awards-intro h2,
  .awards-statement h2 { font-size: clamp(29px, 8vw, 36px); }
  .article-hero h1 { font-size: clamp(32px, 8.5vw, 44px); }
  .article-content h2 { font-size: clamp(27px, 7.2vw, 36px); }
  .article-cta h2 { font-size: clamp(29px, 8vw, 38px); }
}


/* =========================================================
   V10 LOCATION HEADER FIX — 2026-08-29
   Exposes all location/service landing pages in the header.
   Keeps v10 typography/content intact.
   ========================================================= */
@media (min-width: 1201px) {
  .site-header .desktop-nav .nav-dropdown.location-dropdown > .location-mega-menu {
    display: none !important;
    position: fixed !important;
    top: 96px !important;
    left: 50vw !important;
    right: auto !important;
    width: min(1080px, calc(100vw - 48px)) !important;
    min-width: 0 !important;
    max-width: 1080px !important;
    max-height: calc(100vh - 118px) !important;
    overflow-y: auto !important;
    margin: 0 !important;
    padding: 24px 20px !important;
    transform: translate(-50%, 8px) !important;
    border: 1px solid #ded8ce !important;
    background: #f8f5ef !important;
    box-shadow: 0 24px 54px rgba(0,0,0,.18) !important;
  }

  .site-header.header-solid .desktop-nav .nav-dropdown.location-dropdown > .location-mega-menu {
    top: 78px !important;
  }

  .site-header .desktop-nav .nav-dropdown.location-dropdown:hover > .location-mega-menu,
  .site-header .desktop-nav .nav-dropdown.location-dropdown:focus-within > .location-mega-menu,
  .site-header .desktop-nav .nav-dropdown.location-dropdown.is-open > .location-mega-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate(-50%, 0) !important;
  }

  .location-mega-menu::before {
    height: 24px !important;
  }

  .location-mega-grid {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    align-items: start !important;
  }

  .location-mega-group {
    min-width: 0;
    padding: 2px 18px 4px;
    border-left: 1px solid rgba(23,23,23,.12);
  }

  .location-mega-group:first-child {
    border-left: 0;
  }

  .location-mega-title {
    display: block;
    margin: 0 0 10px;
    color: #171717;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .2em;
    line-height: 1.3;
    text-transform: uppercase;
  }

  .site-header .desktop-nav .nav-dropdown.location-dropdown > .location-mega-menu .location-mega-group a {
    width: 100% !important;
    min-height: 0 !important;
    padding: 8px 0 !important;
    color: #171717 !important;
    font-size: 10.75px !important;
    font-weight: 400 !important;
    letter-spacing: .045em !important;
    line-height: 1.35 !important;
    white-space: normal !important;
    text-transform: none !important;
  }

  .site-header .desktop-nav .nav-dropdown.location-dropdown > .location-mega-menu .location-mega-group a:hover {
    background: transparent !important;
    color: var(--forest) !important;
  }
}

@media (min-width: 1201px) and (max-width: 1320px) {
  .site-header .desktop-nav .nav-dropdown.location-dropdown > .location-mega-menu {
    width: calc(100vw - 28px) !important;
    padding: 20px 12px !important;
  }
  .location-mega-group { padding-inline: 13px; }
  .site-header .desktop-nav .nav-dropdown.location-dropdown > .location-mega-menu .location-mega-group a {
    font-size: 10.25px !important;
  }
}

@media (max-width: 1200px) {
  .mobile-location-grid {
    padding: 10px 0 2px;
  }
  .mobile-location-group {
    padding: 8px 0 10px;
    border-top: 1px solid rgba(255,255,255,.10);
  }
  .mobile-location-group:first-child { border-top: 0; }
  .mobile-location-title {
    display: block;
    padding: 0 18px 6px;
    color: rgba(255,255,255,.58);
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .20em;
    line-height: 1.35;
    text-transform: uppercase;
  }
  .mobile-panel details .mobile-location-group a {
    min-height: 34px !important;
    padding: 5px 18px !important;
    font-size: 12px !important;
    letter-spacing: .06em !important;
    line-height: 1.35 !important;
    text-transform: none !important;
  }
}

@media (max-width: 520px) {
  .mobile-location-title { font-size: 9.5px; }
  .mobile-panel details .mobile-location-group a {
    min-height: 32px !important;
    font-size: 11.5px !important;
  }
}


/* =========================================================
   V10 FINAL HEADER + FOOTER CONSISTENCY FIX — 2026-08-29
   - Removes the hover dead-zone between Locations and its mega menu.
   - Adds a hover-intent class used by the companion JS for robust pointer travel.
   ========================================================= */
@media (min-width: 1201px) {
  /* Slightly overlap the bottom of the header so there is never a dead hover gap. */
  .site-header .desktop-nav .nav-dropdown.location-dropdown > .location-mega-menu {
    top: 94px !important;
  }
  .site-header.header-solid .desktop-nav .nav-dropdown.location-dropdown > .location-mega-menu {
    top: 76px !important;
  }

  .site-header .desktop-nav .nav-dropdown.location-dropdown.is-hovering > .location-mega-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate(-50%, 0) !important;
  }

  .site-header .desktop-nav .nav-dropdown.location-dropdown > .location-mega-menu::before {
    height: 4px !important;
  }
}


/* v10 WhatsApp brand icon update */
.whatsapp svg {
  display: block;
  width: 30px;
  height: 30px;
  fill: currentColor;
}
@media (max-width: 780px) {
  .whatsapp svg {
    width: 27px;
    height: 27px;
  }
}
@media (max-width: 420px) {
  .whatsapp svg {
    width: 25px;
    height: 25px;
  }
}


/* ===== V10 Footer partner credit ===== */
.footer-bottom {
  display: grid;
  grid-template-columns: max-content max-content minmax(280px, 1fr) max-content;
  align-items: center;
  column-gap: clamp(18px, 3vw, 46px);
  row-gap: 12px;
}

.footer-credit {
  justify-self: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: 0.055em;
  white-space: normal;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.footer-credit a:hover {
  color: #fff;
}

.footer-credit-dot {
  display: inline-block;
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.28);
}

@media (max-width: 1120px) {
  .footer-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom > span:nth-child(2) {
    justify-self: end;
  }

  .footer-credit {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    text-align: left;
  }

  .footer-bottom > span:last-child {
    justify-self: end;
  }
}

@media (max-width: 640px) {
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 20px;
    padding-bottom: 24px;
  }

  .footer-bottom > span,
  .footer-bottom > span:nth-child(2),
  .footer-bottom > span:last-child,
  .footer-credit {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    text-align: left;
  }

  .footer-credit {
    max-width: 100%;
    margin-top: 2px;
    font-size: 10.5px;
  }

  .footer-credit-dot {
    margin: 0 5px;
  }
}
