/* ==========================================================================
   Legal Help DK — Main Stylesheet
   Converted from static HTML source. Organized by section.
   ========================================================================== */

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #f4f2ed;
  color: #1a1713;
  font-family: "Jost", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #1a1713;
  text-decoration: none;
}
a:hover {
  color: #b08a4f;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus {
  background: #f4f2ed;
  color: #1a1713;
  display: block;
  height: auto;
  width: auto;
  padding: 12px 18px;
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999999;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid #b08a4f;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.site-wrap {
  width: 100%;
  overflow-x: hidden;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #f4f2ed;
  border-bottom: 1px solid rgba(20, 18, 15, 0.09);
  transition: box-shadow 0.4s ease, background-color 0.4s ease, height 0.35s ease;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transition: height 0.35s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(20, 18, 15, 0.06);
}
.site-header.is-scrolled .header-inner {
  height: 64px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 1;
}
.site-logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.site-logo-name {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  letter-spacing: 0.14em;
  line-height: 1;
  white-space: nowrap;
}
.site-logo-tagline {
  font-size: 8px;
  letter-spacing: 0.24em;
  color: #7a736a;
  line-height: 1;
  white-space: nowrap;
}
.site-logo img {
  height: 40px;
  width: auto;
  max-width: 100%;
  transition: height 0.35s ease;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 400;
}
.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-navigation a {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}
.main-navigation .current-menu-item > a,
.main-navigation a.active {
  border-bottom: 1px solid #b08a4f;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #14120f;
  color: #f4f2ed;
  font-size: 13px;
  padding: 12px 20px;
  border-radius: 999px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  white-space: nowrap;
}
.nav-cta:hover {
  color: #f4f2ed;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(20, 18, 15, 0.22);
}
.nav-cta svg {
  transition: transform 0.35s ease;
}
.nav-cta:hover svg {
  transform: translateX(4px);
}
.nav-cta-mobile {
  display: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1713;
  margin: 4px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.main-navigation-head {
  display: none;
}
.menu-close {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  position: relative;
  width: 38px;
  height: 38px;
}
.menu-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #1a1713;
}
.menu-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.menu-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 15, 0.45);
  z-index: 54;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.nav-overlay.is-open {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* ---------- Offcanvas navigation (tablet & mobile) ---------- */
@media (max-width: 900px) {
  .nav-cta-desktop {
    display: none;
  }
  .nav-cta-mobile {
    display: inline-flex;
    margin-top: 32px;
  }
  .main-navigation {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 84vw);
    height: 100vh;
    height: 100dvh;
    background: #f4f2ed;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 28px 40px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 56;
    overflow-y: auto;
    box-shadow: -12px 0 32px rgba(20, 18, 15, 0.18);
  }
  .main-navigation-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 18px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(20, 18, 15, 0.09);
  }
  .main-navigation-title {
    font-family: "Playfair Display", serif;
    font-size: 15px;
    letter-spacing: 0.1em;
  }
  .main-navigation ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
  }
  .main-navigation ul li {
    width: 100%;
  }
  .main-navigation a {
    display: block;
    width: 100%;
    padding: 12px 0;
  }
  .main-navigation.is-open {
    transform: translateX(0);
  }
  .menu-toggle {
    display: block;
  }
}

@media (max-width: 480px) {
  .site-header .header-inner { height: 66px; }
  .site-header.is-scrolled .header-inner { height: 58px; }
  .site-logo img { height: 30px; }
  .site-logo-name { font-size: 13px; letter-spacing: 0.1em; }
  .site-logo-tagline { display: none; }
  .header-actions { gap: 12px; }
  .main-navigation { width: 100%; max-width: 100%; }
}

/* ---------- Hero ---------- */
.hero-in {
  opacity: 0;
  transform: translateY(22px);
  animation: heroRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-in.d1 { animation-delay: 0.15s; }
.hero-in.d2 { animation-delay: 0.32s; }
.hero-in.d3 { animation-delay: 0.5s; }
.hero-in.d4 { animation-delay: 0.68s; }
.hero-in.d5 { animation-delay: 0.86s; }
@keyframes heroRise {
  to { opacity: 1; transform: translateY(0); }
}
.hero-bg-img {
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-section {
  position: relative;
  min-height: clamp(560px, 45vw, 660px);
  display: flex;
  background: #14120f;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-color: #14120f;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 11, 9, 0.94) 0%, rgba(12, 11, 9, 0.78) 32%, rgba(12, 11, 9, 0.25) 62%, rgba(12, 11, 9, 0.1) 100%);
}
.hero-content {
  position: relative;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 88px 40px 44px;
  display: flex;
  flex-direction: column;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}
.hero-eyebrow span {
  font-size: 11px;
  letter-spacing: 0.26em;
  color: #d8c7a8;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.1;
  color: #f7f4ee;
  margin: 0 0 24px;
  max-width: 14ch;
  text-wrap: pretty;
}
.hero-description {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(240, 235, 226, 0.72);
  margin: 0 0 36px;
  max-width: 44ch;
  font-weight: 300;
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 38px;
  background: #e3c89c;
  color: #14120f;
  font-size: 14px;
  padding: 16px 22px;
  width: fit-content;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, background-color 0.35s ease;
}
.cta-primary:hover {
  color: #14120f;
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(227, 200, 156, 0.35);
  background: #ecd6ac;
}
.cta-primary svg {
  transition: transform 0.35s ease;
}
.cta-primary:hover svg {
  transform: translateX(5px);
}
.hero-footer-row {
  margin-top: auto;
  padding-top: 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(240, 235, 226, 0.8);
}
.hero-award {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e8dcc6;
}
.hero-award .paren {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  line-height: 0.7;
  color: #b08a4f;
}
.hero-award .award-text {
  font-size: 10px;
  letter-spacing: 0.14em;
  line-height: 1.7;
  text-align: center;
}

/* ---------- Scroll reveals ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-stagger.in-view > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.14s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.23s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.32s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.41s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.5s; }

/* ---------- Hover: media zoom ---------- */
.media-zoom { overflow: hidden; }
.media-zoom img { transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.media-zoom:hover img { transform: scale(1.07); }

/* ---------- Link arrow ---------- */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(26, 23, 19, 0.2);
  padding-bottom: 8px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.link-arrow.on-dark {
  color: #f7f4ee;
  border-bottom: 1px solid rgba(247, 244, 238, 0.3);
}
.link-arrow svg { transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
.link-arrow:hover svg { transform: translateX(5px); }
.link-arrow:hover { border-color: rgba(176, 138, 79, 0.6); }

/* ---------- Section shell ---------- */
.section {
  background: #f4f2ed;
  padding: clamp(72px, 7vw, 112px) 0;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(40px, 6vw, 88px);
}
.section-intro {
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 420px;
}
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.section-eyebrow span:first-child {
  font-size: 11px;
  letter-spacing: 0.24em;
  color: #3a342c;
}
.section-eyebrow .rule {
  width: 48px;
  height: 1px;
  background: rgba(26, 23, 19, 0.28);
}
.section-title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(30px, 3.1vw, 42px);
  line-height: 1.16;
  margin: 0 0 24px;
  text-wrap: pretty;
}
.section-desc {
  font-size: 14px;
  line-height: 1.85;
  color: #6b655c;
  margin: 0 0 32px;
  font-weight: 300;
  max-width: 38ch;
}

/* ---------- Services grid ---------- */
.services-grid {
  flex: 2 1 520px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(28px, 3.5vw, 48px) 32px;
}
.lift-card { transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.lift-card:hover { transform: translateY(-6px); }
.lift-card svg { transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.lift-card:hover svg { transform: translateY(-3px) scale(1.06); }
.lift-card h3 { font-size: 15px; font-weight: 500; margin: 16px 0 10px; }
.lift-card p { font-size: 13px; line-height: 1.75; color: #7a736a; margin: 0; font-weight: 300; }

/* ---------- About / split sections ---------- */
.split-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  background: #edeae3;
}
.split-media {
  position: relative;
  min-height: clamp(400px, 34vw, 470px);
  background-color: #14120f;
  overflow: hidden;
}
.split-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 11, 9, 0.35) 0%, rgba(12, 11, 9, 0.82) 100%);
}
.split-media-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(36px, 4vw, 60px);
}
.split-media-content .section-eyebrow span:first-child { color: #d8c7a8; }
.split-media-content .rule { background: rgba(216, 199, 168, 0.45); }
.split-media-title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.18;
  color: #f7f4ee;
  margin: 0 0 22px;
  max-width: 16ch;
}
.split-media-desc {
  font-size: 13.5px;
  line-height: 1.85;
  color: rgba(240, 235, 226, 0.7);
  margin: 0 0 34px;
  max-width: 48ch;
  font-weight: 300;
}
.story-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #f7f4ee;
}
.story-btn .circle {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(216, 199, 168, 0.6);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.story-btn:hover .circle {
  transform: scale(1.08);
  border-color: rgba(227, 200, 156, 0.95);
}
.story-btn .label { font-size: 13px; letter-spacing: 0.06em; }

.split-copy {
  padding: clamp(48px, 5vw, 76px) clamp(36px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 460px;
}
.feature-item { display: flex; gap: 22px; }
.feature-item svg { flex: none; }
.feature-item h3 { font-size: 15px; font-weight: 500; margin: 0 0 8px; }
.feature-item p { font-size: 13px; line-height: 1.75; color: #7a736a; margin: 0; font-weight: 300; }

/* ---------- Practice area tiles ---------- */
.practice-grid {
  flex: 2 1 560px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  align-items: end;
}
.practice-tile {
  position: relative;
  aspect-ratio: 0.68;
  background-color: #22201c;
  overflow: hidden;
  display: block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}
.practice-tile:hover { transform: translateY(-8px); box-shadow: 0 22px 40px rgba(20, 18, 15, 0.22); }
.practice-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 11, 9, 0) 40%, rgba(12, 11, 9, 0.85) 100%);
}
.practice-tile-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: #f7f4ee;
  font-size: 13px;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.practice-tile svg { transition: transform 0.35s ease; }
.practice-tile:hover svg { transform: translateX(4px); }

/* ---------- Team / stats ---------- */
.team-copy {
  padding: clamp(48px, 5vw, 72px) clamp(36px, 4vw, 64px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}
.stats-col {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #7a736a;
  margin-top: 6px;
}
.testimonial-card {
  flex: 1.4 1 260px;
  border: 1px solid rgba(26, 23, 19, 0.12);
  background: #f8f6f2;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.testimonial-quote-mark {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  line-height: 0.6;
  color: #c9b48c;
}
.testimonial-text { font-size: 13.5px; line-height: 1.9; color: #3a342c; margin: 0; font-weight: 300; }
.testimonial-attribution { font-size: 13px; line-height: 1.6; }
.testimonial-attribution .role { color: #7a736a; }

/* ---------- Insights ---------- */
.insights-grid {
  flex: 2 1 560px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 26px;
}
.insight-card { display: flex; flex-direction: column; transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.insight-card:hover { transform: translateY(-5px); }
.insight-card svg { transition: transform 0.35s ease; }
.insight-card:hover svg { transform: translateX(4px); }
.insight-thumb {
  position: relative;
  display: block;
  aspect-ratio: 1.62;
  background-color: #ddd8ce;
  overflow: hidden;
}
.insight-category {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #8a8278;
  margin: 18px 0 10px;
  display: block;
}
.insight-title { font-size: 14.5px; line-height: 1.5; margin-bottom: 16px; display: block; }
.insight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #8a8278;
  border-top: 1px solid rgba(26, 23, 19, 0.1);
  padding-top: 12px;
  margin-top: auto;
}

/* ---------- Contact / CTA band ---------- */
.contact-section { position: relative; background: #14120f; overflow: hidden; }
.contact-media { position: absolute; inset: 0; background-color: #14120f; }
.contact-media img { opacity: 0.5; }
.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 11, 9, 0.95) 0%, rgba(12, 11, 9, 0.8) 60%, rgba(12, 11, 9, 0.7) 100%);
}
.contact-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(48px, 5vw, 72px) 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.contact-copy { flex: 1 1 420px; }
.contact-title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(26px, 2.9vw, 40px);
  line-height: 1.2;
  color: #f7f4ee;
  margin: 0 0 16px;
  text-wrap: pretty;
}
.contact-desc { font-size: 13.5px; line-height: 1.8; color: rgba(240, 235, 226, 0.65); margin: 0; max-width: 56ch; font-weight: 300; }
.contact-inner .cta-primary { flex: none; gap: 34px; }

/* ---------- Footer ---------- */
.site-footer { background: #0d0c0a; color: #f4f2ed; padding: 48px 0 28px; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 34px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; color: #f4f2ed; }
.footer-logo-badge {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  line-height: 1;
  border: 1px solid rgba(244, 242, 237, 0.3);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-text { display: flex; flex-direction: column; gap: 3px; }
.footer-logo-name { font-family: "Playfair Display", serif; font-size: 15px; letter-spacing: 0.14em; line-height: 1; }
.footer-logo-tagline { font-size: 8px; letter-spacing: 0.24em; color: rgba(244, 242, 237, 0.5); line-height: 1; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 26px; font-size: 13px; list-style: none; margin: 0; padding: 0; }
.footer-nav a { color: rgba(244, 242, 237, 0.8); }
.footer-meta { display: flex; align-items: center; gap: 22px; }
.footer-location { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(244, 242, 237, 0.75); }
.footer-social { display: flex; align-items: center; gap: 16px; color: rgba(244, 242, 237, 0.8); font-size: 13px; list-style: none; margin: 0; padding: 0; }
.footer-social a { color: inherit; }
.footer-bottom {
  border-top: 1px solid rgba(244, 242, 237, 0.12);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  color: rgba(244, 242, 237, 0.5);
}
.footer-legal { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; }
.footer-legal a { color: inherit; }

/* ---------- Blog / page fallback templates ---------- */
.page-content-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 96px) 40px;
}
.page-content-wrap h1 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 28px;
}
.page-content-wrap .entry-content,
.page-content-wrap .entry-content p {
  font-size: 15px;
  line-height: 1.85;
  color: #3a342c;
  font-weight: 300;
}
.blog-index-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 96px) 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
.pagination-row {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 80px;
  display: flex;
  gap: 20px;
  font-size: 13px;
}
.no-results {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 96px) 40px;
  font-size: 15px;
  line-height: 1.85;
  color: #6b655c;
  font-weight: 300;
}

@media (max-width: 640px) {
  .header-inner { padding: 0 20px; }
  .hero-content { padding: 72px 20px 32px; }
  .section-inner { padding: 0 20px; }
  .split-copy, .team-copy { padding: 40px 20px; }
  .contact-inner { padding: 48px 20px; }
  .footer-inner { padding: 0 20px; }
}

/* ==========================================================================
   Coming Soon page — additive only, reuses the existing hero/cta/token
   styles above so it matches the rest of the site. Nothing above this
   block was changed.
   ========================================================================== */
.coming-soon-section {
  min-height: 100vh;
  align-items: center;
  justify-content: center;
}
.coming-soon-content {
  align-items: center;
  text-align: center;
  justify-content: center;
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 0;
}
.coming-soon-content .hero-title,
.coming-soon-content .hero-description {
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
}
.coming-soon-content .hero-eyebrow,
.coming-soon-content .cta-primary {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.coming-soon-content .hero-footer-row {
  margin-top: 56px;
  padding-top: 0;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.coming-soon-logo {
  display: inline-flex;
  margin-bottom: 34px;
}
.coming-soon-logo img {
  height: 44px;
  width: auto;
}
.coming-soon-social {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #e8dcc6;
  font-size: 13px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.coming-soon-social a {
  color: inherit;
}
